Compare commits
8 Commits
2eb94cc12a
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 4d4736b2ce | |||
| f52de455af | |||
| de38e6a7a2 | |||
| 1e3dc07044 | |||
| 60b4496ec8 | |||
| d45774dfe6 | |||
| c61ab676e0 | |||
| 99d655620b |
36
README.md
@@ -1,3 +1,39 @@
|
|||||||
# html-nginx-deployemnt
|
# html-nginx-deployemnt
|
||||||
|
|
||||||
A template repo for deploying basic HTML inside an NGINX pod in a Kubernetes Cluster, with Jenkins CI/CD integration.
|
A template repo for deploying basic HTML inside an NGINX pod in a Kubernetes Cluster, with Jenkins CI/CD integration.
|
||||||
|
|
||||||
|
> NOTE: The steps below are not for this repo, but for those using it as a template.
|
||||||
|
|
||||||
|
## Bootstrapping
|
||||||
|
> If needed, steps starting with `[sudo]` require elevated permissions.
|
||||||
|
|
||||||
|
1. Create a new repository by clicking the "Use this template" button on the template repo page.
|
||||||
|
1. Configure the new repo settings. At the bottom, select `Template Items` -> `Git Content`.
|
||||||
|
1. Create the new repo.
|
||||||
|
1. Pull new repo to local PC.
|
||||||
|
1. [sudo] Give the setup script permission to execute:
|
||||||
|
```bash
|
||||||
|
chmod +x template/setup.sh
|
||||||
|
```
|
||||||
|
1. [sudo] Run the start script and fill in the prompts:
|
||||||
|
```bash
|
||||||
|
./template/setup.sh
|
||||||
|
```
|
||||||
|
|
||||||
|
## Running Locally
|
||||||
|
> This works only if the required files have been made during the bootstrap process.
|
||||||
|
1. You need to have Docker locally installed, as this will be using an NGINX
|
||||||
|
container to host the files locally.
|
||||||
|
1. From the repository root directory:
|
||||||
|
```bash
|
||||||
|
./start.sh
|
||||||
|
```
|
||||||
|
|
||||||
|
## Deploying
|
||||||
|
If you configured the Sciocatti Jenkins pipeline during bootstrap, deployment happens automatically on branches `stage`, `main`, `prod`.
|
||||||
|
|
||||||
|
These will be deployed to node ports on the cluster with ports as per the `deployment.yaml` specs in the `cicd` folder.
|
||||||
|
|
||||||
|
> Due note that branches eligible for deployments are configured on the Jenkins server, as deployments happen transparently to developers.
|
||||||
|
|
||||||
|
> Note that the bootstrapped repo has to be in a organization where the Jenkins user has visibility, and the organization must be configured and linked to the Jenkins server.
|
||||||
32
html/index.html
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Template</title>
|
||||||
|
<!-- Favicon -->
|
||||||
|
<link rel="apple-touch-icon" sizes="180x180" href="/static/fav/apple-touch-icon.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="32x32" href="/static/fav/favicon-32x32.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="16x16" href="/static/fav/favicon-16x16.png">
|
||||||
|
<link rel="shortcut icon" href="/static/fav/favicon.ico" type="image/x-icon">
|
||||||
|
<!-- CSS -->
|
||||||
|
<link rel="stylesheet" href="/static/css/fonts.css">
|
||||||
|
<link rel="stylesheet" href="/static/css/main.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<img src="/static/img/logo.png" alt="">
|
||||||
|
<h1>Hey, this template is hosted at <a href="http://192.168.195.195:30001">this</a> repo.</h1>
|
||||||
|
<p>You have had this page open for <span id="counter">1</span> seconds.</p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
<!-- JS -->
|
||||||
|
<script src="/static/js/main.js"></script>
|
||||||
|
<script>
|
||||||
|
// Actions get called from here. This makes it easy to see what starts where.
|
||||||
|
setInterval(function () {
|
||||||
|
incrementCounter();
|
||||||
|
}, 1000);
|
||||||
|
</script>
|
||||||
|
</html>
|
||||||
117
html/static/css/fonts.css
Normal file
@@ -0,0 +1,117 @@
|
|||||||
|
@font-face {
|
||||||
|
font-family: Roboto;
|
||||||
|
src: url(../fonts/Roboto-Thin.ttf);
|
||||||
|
font-weight: 100;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: Roboto;
|
||||||
|
src: url(../fonts/Roboto-ThinItalic.ttf);
|
||||||
|
font-weight: 100;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: Roboto;
|
||||||
|
src: url(../fonts/Roboto-Light.ttf);
|
||||||
|
font-weight: 300;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: Roboto;
|
||||||
|
src: url(../fonts/Roboto-LightItalic.ttf);
|
||||||
|
font-weight: 300;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: Roboto;
|
||||||
|
src: url(../fonts/Roboto-Regular.ttf);
|
||||||
|
font-weight: 400;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: Roboto;
|
||||||
|
src: url(../fonts/Roboto-Italic.ttf);
|
||||||
|
font-weight: 400;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: Roboto;
|
||||||
|
src: url(../fonts/Roboto-Medium.ttf);
|
||||||
|
font-weight: 500;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: Roboto;
|
||||||
|
src: url(../fonts/Roboto-MediumItalic.ttf);
|
||||||
|
font-weight: 500;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: Roboto;
|
||||||
|
src: url(../fonts/Roboto-Bold.ttf);
|
||||||
|
font-weight: 700;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: Roboto;
|
||||||
|
src: url(../fonts/Roboto-BoldItalic.ttf);
|
||||||
|
font-weight: 700;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: Roboto;
|
||||||
|
src: url(../fonts/Roboto-Black.ttf);
|
||||||
|
font-weight: 900;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: Roboto;
|
||||||
|
src: url(../fonts/Roboto-BlackItalic.ttf);
|
||||||
|
font-weight: 900;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
.font-italic {
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
.font-thin {
|
||||||
|
font-family: Roboto;
|
||||||
|
font-weight: 100;
|
||||||
|
}
|
||||||
|
|
||||||
|
.font-light {
|
||||||
|
font-family: Roboto;
|
||||||
|
font-weight: 300;
|
||||||
|
}
|
||||||
|
|
||||||
|
.font-regular {
|
||||||
|
font-family: Roboto;
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
|
|
||||||
|
.font-medium {
|
||||||
|
font-family: Roboto;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
|
||||||
|
.font-bold {
|
||||||
|
font-family: Roboto;
|
||||||
|
font-weight: 700;
|
||||||
|
}
|
||||||
|
|
||||||
|
.font-black {
|
||||||
|
font-family: Roboto;
|
||||||
|
font-weight: 900;
|
||||||
|
}
|
||||||
47
html/static/css/main.css
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
/* VARIABLES */
|
||||||
|
:root {
|
||||||
|
--color-primary: #c9cacf;
|
||||||
|
--color-secondary: #f2f2f3;
|
||||||
|
--color-tertiary: #5260ff;
|
||||||
|
--color-success: #2dd36f;
|
||||||
|
--color-warning: #ffc409;
|
||||||
|
--color-danger: #eb445a;
|
||||||
|
--color-dark: #3d3e43;
|
||||||
|
--color-medium: #92949c;
|
||||||
|
--color-light: #f4f5f8;
|
||||||
|
--base-rem-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* BASE ELEMENTS */
|
||||||
|
html {
|
||||||
|
font-size: var(--base-rem-size);
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
text-align: center;
|
||||||
|
background-color: var(--color-dark);
|
||||||
|
color: var(--color-primary);
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
transition: color 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
width: 80%;
|
||||||
|
margin: 5rem auto;
|
||||||
|
padding: 3rem;
|
||||||
|
border-radius: 1rem;
|
||||||
|
box-shadow: 16px 16px 36px #626369,
|
||||||
|
-16px -16px 36px #c2c5cf;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container a {
|
||||||
|
color: var(--color-tertiary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.container a:hover {
|
||||||
|
color: var(--color-secondary);
|
||||||
|
}
|
||||||
BIN
html/static/fav/android-chrome-192x192.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
html/static/fav/android-chrome-512x512.png
Normal file
|
After Width: | Height: | Size: 69 KiB |
BIN
html/static/fav/apple-touch-icon.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
html/static/fav/favicon-16x16.png
Normal file
|
After Width: | Height: | Size: 614 B |
BIN
html/static/fav/favicon-32x32.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
html/static/fav/favicon.ico
Normal file
|
After Width: | Height: | Size: 15 KiB |
0
html/static/fav/site.webmanifest
Normal file
202
html/static/fonts/LICENSE.txt
Normal file
@@ -0,0 +1,202 @@
|
|||||||
|
|
||||||
|
Apache License
|
||||||
|
Version 2.0, January 2004
|
||||||
|
http://www.apache.org/licenses/
|
||||||
|
|
||||||
|
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||||
|
|
||||||
|
1. Definitions.
|
||||||
|
|
||||||
|
"License" shall mean the terms and conditions for use, reproduction,
|
||||||
|
and distribution as defined by Sections 1 through 9 of this document.
|
||||||
|
|
||||||
|
"Licensor" shall mean the copyright owner or entity authorized by
|
||||||
|
the copyright owner that is granting the License.
|
||||||
|
|
||||||
|
"Legal Entity" shall mean the union of the acting entity and all
|
||||||
|
other entities that control, are controlled by, or are under common
|
||||||
|
control with that entity. For the purposes of this definition,
|
||||||
|
"control" means (i) the power, direct or indirect, to cause the
|
||||||
|
direction or management of such entity, whether by contract or
|
||||||
|
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||||
|
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||||
|
|
||||||
|
"You" (or "Your") shall mean an individual or Legal Entity
|
||||||
|
exercising permissions granted by this License.
|
||||||
|
|
||||||
|
"Source" form shall mean the preferred form for making modifications,
|
||||||
|
including but not limited to software source code, documentation
|
||||||
|
source, and configuration files.
|
||||||
|
|
||||||
|
"Object" form shall mean any form resulting from mechanical
|
||||||
|
transformation or translation of a Source form, including but
|
||||||
|
not limited to compiled object code, generated documentation,
|
||||||
|
and conversions to other media types.
|
||||||
|
|
||||||
|
"Work" shall mean the work of authorship, whether in Source or
|
||||||
|
Object form, made available under the License, as indicated by a
|
||||||
|
copyright notice that is included in or attached to the work
|
||||||
|
(an example is provided in the Appendix below).
|
||||||
|
|
||||||
|
"Derivative Works" shall mean any work, whether in Source or Object
|
||||||
|
form, that is based on (or derived from) the Work and for which the
|
||||||
|
editorial revisions, annotations, elaborations, or other modifications
|
||||||
|
represent, as a whole, an original work of authorship. For the purposes
|
||||||
|
of this License, Derivative Works shall not include works that remain
|
||||||
|
separable from, or merely link (or bind by name) to the interfaces of,
|
||||||
|
the Work and Derivative Works thereof.
|
||||||
|
|
||||||
|
"Contribution" shall mean any work of authorship, including
|
||||||
|
the original version of the Work and any modifications or additions
|
||||||
|
to that Work or Derivative Works thereof, that is intentionally
|
||||||
|
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||||
|
or by an individual or Legal Entity authorized to submit on behalf of
|
||||||
|
the copyright owner. For the purposes of this definition, "submitted"
|
||||||
|
means any form of electronic, verbal, or written communication sent
|
||||||
|
to the Licensor or its representatives, including but not limited to
|
||||||
|
communication on electronic mailing lists, source code control systems,
|
||||||
|
and issue tracking systems that are managed by, or on behalf of, the
|
||||||
|
Licensor for the purpose of discussing and improving the Work, but
|
||||||
|
excluding communication that is conspicuously marked or otherwise
|
||||||
|
designated in writing by the copyright owner as "Not a Contribution."
|
||||||
|
|
||||||
|
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||||
|
on behalf of whom a Contribution has been received by Licensor and
|
||||||
|
subsequently incorporated within the Work.
|
||||||
|
|
||||||
|
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||||
|
this License, each Contributor hereby grants to You a perpetual,
|
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||||
|
copyright license to reproduce, prepare Derivative Works of,
|
||||||
|
publicly display, publicly perform, sublicense, and distribute the
|
||||||
|
Work and such Derivative Works in Source or Object form.
|
||||||
|
|
||||||
|
3. Grant of Patent License. Subject to the terms and conditions of
|
||||||
|
this License, each Contributor hereby grants to You a perpetual,
|
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||||
|
(except as stated in this section) patent license to make, have made,
|
||||||
|
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||||
|
where such license applies only to those patent claims licensable
|
||||||
|
by such Contributor that are necessarily infringed by their
|
||||||
|
Contribution(s) alone or by combination of their Contribution(s)
|
||||||
|
with the Work to which such Contribution(s) was submitted. If You
|
||||||
|
institute patent litigation against any entity (including a
|
||||||
|
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||||
|
or a Contribution incorporated within the Work constitutes direct
|
||||||
|
or contributory patent infringement, then any patent licenses
|
||||||
|
granted to You under this License for that Work shall terminate
|
||||||
|
as of the date such litigation is filed.
|
||||||
|
|
||||||
|
4. Redistribution. You may reproduce and distribute copies of the
|
||||||
|
Work or Derivative Works thereof in any medium, with or without
|
||||||
|
modifications, and in Source or Object form, provided that You
|
||||||
|
meet the following conditions:
|
||||||
|
|
||||||
|
(a) You must give any other recipients of the Work or
|
||||||
|
Derivative Works a copy of this License; and
|
||||||
|
|
||||||
|
(b) You must cause any modified files to carry prominent notices
|
||||||
|
stating that You changed the files; and
|
||||||
|
|
||||||
|
(c) You must retain, in the Source form of any Derivative Works
|
||||||
|
that You distribute, all copyright, patent, trademark, and
|
||||||
|
attribution notices from the Source form of the Work,
|
||||||
|
excluding those notices that do not pertain to any part of
|
||||||
|
the Derivative Works; and
|
||||||
|
|
||||||
|
(d) If the Work includes a "NOTICE" text file as part of its
|
||||||
|
distribution, then any Derivative Works that You distribute must
|
||||||
|
include a readable copy of the attribution notices contained
|
||||||
|
within such NOTICE file, excluding those notices that do not
|
||||||
|
pertain to any part of the Derivative Works, in at least one
|
||||||
|
of the following places: within a NOTICE text file distributed
|
||||||
|
as part of the Derivative Works; within the Source form or
|
||||||
|
documentation, if provided along with the Derivative Works; or,
|
||||||
|
within a display generated by the Derivative Works, if and
|
||||||
|
wherever such third-party notices normally appear. The contents
|
||||||
|
of the NOTICE file are for informational purposes only and
|
||||||
|
do not modify the License. You may add Your own attribution
|
||||||
|
notices within Derivative Works that You distribute, alongside
|
||||||
|
or as an addendum to the NOTICE text from the Work, provided
|
||||||
|
that such additional attribution notices cannot be construed
|
||||||
|
as modifying the License.
|
||||||
|
|
||||||
|
You may add Your own copyright statement to Your modifications and
|
||||||
|
may provide additional or different license terms and conditions
|
||||||
|
for use, reproduction, or distribution of Your modifications, or
|
||||||
|
for any such Derivative Works as a whole, provided Your use,
|
||||||
|
reproduction, and distribution of the Work otherwise complies with
|
||||||
|
the conditions stated in this License.
|
||||||
|
|
||||||
|
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||||
|
any Contribution intentionally submitted for inclusion in the Work
|
||||||
|
by You to the Licensor shall be under the terms and conditions of
|
||||||
|
this License, without any additional terms or conditions.
|
||||||
|
Notwithstanding the above, nothing herein shall supersede or modify
|
||||||
|
the terms of any separate license agreement you may have executed
|
||||||
|
with Licensor regarding such Contributions.
|
||||||
|
|
||||||
|
6. Trademarks. This License does not grant permission to use the trade
|
||||||
|
names, trademarks, service marks, or product names of the Licensor,
|
||||||
|
except as required for reasonable and customary use in describing the
|
||||||
|
origin of the Work and reproducing the content of the NOTICE file.
|
||||||
|
|
||||||
|
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||||
|
agreed to in writing, Licensor provides the Work (and each
|
||||||
|
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||||
|
implied, including, without limitation, any warranties or conditions
|
||||||
|
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||||
|
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||||
|
appropriateness of using or redistributing the Work and assume any
|
||||||
|
risks associated with Your exercise of permissions under this License.
|
||||||
|
|
||||||
|
8. Limitation of Liability. In no event and under no legal theory,
|
||||||
|
whether in tort (including negligence), contract, or otherwise,
|
||||||
|
unless required by applicable law (such as deliberate and grossly
|
||||||
|
negligent acts) or agreed to in writing, shall any Contributor be
|
||||||
|
liable to You for damages, including any direct, indirect, special,
|
||||||
|
incidental, or consequential damages of any character arising as a
|
||||||
|
result of this License or out of the use or inability to use the
|
||||||
|
Work (including but not limited to damages for loss of goodwill,
|
||||||
|
work stoppage, computer failure or malfunction, or any and all
|
||||||
|
other commercial damages or losses), even if such Contributor
|
||||||
|
has been advised of the possibility of such damages.
|
||||||
|
|
||||||
|
9. Accepting Warranty or Additional Liability. While redistributing
|
||||||
|
the Work or Derivative Works thereof, You may choose to offer,
|
||||||
|
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||||
|
or other liability obligations and/or rights consistent with this
|
||||||
|
License. However, in accepting such obligations, You may act only
|
||||||
|
on Your own behalf and on Your sole responsibility, not on behalf
|
||||||
|
of any other Contributor, and only if You agree to indemnify,
|
||||||
|
defend, and hold each Contributor harmless for any liability
|
||||||
|
incurred by, or claims asserted against, such Contributor by reason
|
||||||
|
of your accepting any such warranty or additional liability.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
APPENDIX: How to apply the Apache License to your work.
|
||||||
|
|
||||||
|
To apply the Apache License to your work, attach the following
|
||||||
|
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||||
|
replaced with your own identifying information. (Don't include
|
||||||
|
the brackets!) The text should be enclosed in the appropriate
|
||||||
|
comment syntax for the file format. We also recommend that a
|
||||||
|
file or class name and description of purpose be included on the
|
||||||
|
same "printed page" as the copyright notice for easier
|
||||||
|
identification within third-party archives.
|
||||||
|
|
||||||
|
Copyright [yyyy] [name of copyright owner]
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
BIN
html/static/fonts/Roboto-Black.ttf
Normal file
BIN
html/static/fonts/Roboto-BlackItalic.ttf
Normal file
BIN
html/static/fonts/Roboto-Bold.ttf
Normal file
BIN
html/static/fonts/Roboto-BoldItalic.ttf
Normal file
BIN
html/static/fonts/Roboto-Italic.ttf
Normal file
BIN
html/static/fonts/Roboto-Light.ttf
Normal file
BIN
html/static/fonts/Roboto-LightItalic.ttf
Normal file
BIN
html/static/fonts/Roboto-Medium.ttf
Normal file
BIN
html/static/fonts/Roboto-MediumItalic.ttf
Normal file
BIN
html/static/fonts/Roboto-Regular.ttf
Normal file
BIN
html/static/fonts/Roboto-Thin.ttf
Normal file
BIN
html/static/fonts/Roboto-ThinItalic.ttf
Normal file
BIN
html/static/img/logo.png
Normal file
|
After Width: | Height: | Size: 10 KiB |
4
html/static/js/main.js
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
function incrementCounter() {
|
||||||
|
let elem = document.querySelector("#counter");
|
||||||
|
elem.innerHTML = Number(elem.innerHTML) + 1;
|
||||||
|
}
|
||||||
3
template/Dockerfile
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
FROM {{k3sContainerBase}}
|
||||||
|
|
||||||
|
COPY html /usr/share/nginx/html
|
||||||
68
template/Jenkinsfile
vendored
Normal file
@@ -0,0 +1,68 @@
|
|||||||
|
#!groovy
|
||||||
|
|
||||||
|
pipeline {
|
||||||
|
agent {
|
||||||
|
kubernetes {
|
||||||
|
defaultContainer 'jnlp'
|
||||||
|
yaml """
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Pod
|
||||||
|
metadata:
|
||||||
|
name: {{k3sApp}}-env.BRANCH_NAME-build
|
||||||
|
spec:
|
||||||
|
serviceAccountName: jenkins-admin
|
||||||
|
containers:
|
||||||
|
- name: kaniko
|
||||||
|
image: gcr.io/kaniko-project/executor:debug
|
||||||
|
command: ["tail"]
|
||||||
|
args: ["-f", "/dev/null"]
|
||||||
|
volumeMounts:
|
||||||
|
- name: kaniko-secret
|
||||||
|
mountPath: /kaniko/.docker
|
||||||
|
- name: deploy
|
||||||
|
image: 192.168.195.195:30000/nginx:latest
|
||||||
|
command: ["tail"]
|
||||||
|
args: ["-f", "/dev/null"]
|
||||||
|
restartPolicy: Never
|
||||||
|
volumes:
|
||||||
|
- name: kaniko-secret
|
||||||
|
secret:
|
||||||
|
secretName: dockercred
|
||||||
|
items:
|
||||||
|
- key: .dockerconfigjson
|
||||||
|
path: config.json
|
||||||
|
"""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stages {
|
||||||
|
stage('Build') {
|
||||||
|
steps {
|
||||||
|
sh 'echo "No build steps configured."'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('Test') {
|
||||||
|
steps {
|
||||||
|
sh 'echo "No test steps configured."'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('Docker Build and Push') {
|
||||||
|
steps {
|
||||||
|
container("kaniko") {
|
||||||
|
sh '''
|
||||||
|
/kaniko/executor --dockerfile `pwd`/cicd/env.BRANCH_NAME/Dockerfile --context `pwd` --destination 192.168.195.195:30000/{{k3sApp}}:env.BRANCH_NAME
|
||||||
|
'''
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('Kubernetes Deploy') {
|
||||||
|
steps {
|
||||||
|
container("deploy") {
|
||||||
|
sh 'curl -LO "https://storage.googleapis.com/kubernetes-release/release/v1.24.3/bin/linux/arm64/kubectl"'
|
||||||
|
sh 'chmod u+x ./kubectl'
|
||||||
|
sh 'sed -ie "s/{{replaceMe}}/`date +%s`/g" `pwd`/cicd/env.BRANCH_NAME/deployment.yaml'
|
||||||
|
sh './kubectl replace -f `pwd`/cicd/`env.BRANCH_NAME`/deployment.yaml'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
51
template/deployment.yaml
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: {{k3sApp}}-{{k3sEnv}}-svc
|
||||||
|
namespace: {{k3sNamespace}}
|
||||||
|
spec:
|
||||||
|
type: NodePort
|
||||||
|
selector:
|
||||||
|
app: {{k3sApp}}-{{k3sEnv}}
|
||||||
|
ports:
|
||||||
|
- name: http
|
||||||
|
nodePort: {{k3sport}}
|
||||||
|
port: 80
|
||||||
|
targetPort: 80
|
||||||
|
|
||||||
|
---
|
||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: {{k3sApp}}-{{k3sEnv}}
|
||||||
|
namespace: {{k3sNamespace}}
|
||||||
|
spec:
|
||||||
|
replicas: 2
|
||||||
|
strategy:
|
||||||
|
rollingUpdate:
|
||||||
|
maxSurge: 1
|
||||||
|
maxUnavailable: 1
|
||||||
|
type: RollingUpdate
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: {{k3sApp}}-{{k3sEnv}}
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: {{k3sApp}}-{{k3sEnv}}
|
||||||
|
delpoymentDate: "{{replaceMe}}"
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- name: {{k3sApp}}-{{k3sEnv}}
|
||||||
|
image: 192.168.195.195:30000/{{k3sApp}}:{{k3sEnv}}
|
||||||
|
imagePullPolicy: Always
|
||||||
|
ports:
|
||||||
|
- name: http
|
||||||
|
containerPort: 80
|
||||||
|
readinessProbe:
|
||||||
|
httpGet:
|
||||||
|
path: /
|
||||||
|
port: 80
|
||||||
|
initialDelaySeconds: 5
|
||||||
|
periodSeconds: 5
|
||||||
|
successThreshold: 1
|
||||||
105
template/setup.sh
Executable file
@@ -0,0 +1,105 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
#./setup.sh 3000 192.168.195.195:30000/nginx:latest cicd/Jenkinsfile
|
||||||
|
|
||||||
|
folderName=${PWD##*/}
|
||||||
|
folderName=${folderName:-/}
|
||||||
|
|
||||||
|
echo "Hello, lets get your project set up. Please follow the prompts attentively."
|
||||||
|
|
||||||
|
read -p "Do you want to run this project locally? [Yn] " localProject
|
||||||
|
|
||||||
|
if [ $localProject == 'Y' ] || [ $localProject == 'y' ]
|
||||||
|
then
|
||||||
|
echo "Configuring local settings"
|
||||||
|
read -p " Local port to expose server on? [eg 3000] " localPort
|
||||||
|
read -p " NGINX container to use? [eg nginx/nginx:latest] " localContainer
|
||||||
|
|
||||||
|
echo " Creating start script"
|
||||||
|
cp template/start.sh start.sh
|
||||||
|
sed -ie "s|{{localPort}}|$localPort|g" start.sh
|
||||||
|
sed -ie "s|{{localContainer}}|$localContainer|g" start.sh
|
||||||
|
chmod +x start.sh
|
||||||
|
rm start.she
|
||||||
|
fi
|
||||||
|
|
||||||
|
read -p "Are you deploying this with the Sciocatti Jenkins pipeline? [Yn] " useJenkins
|
||||||
|
|
||||||
|
if [ $useJenkins == 'Y' ] || [ $useJenkins == 'y' ]
|
||||||
|
then
|
||||||
|
echo "Configuring deployment settings. See the Readme for info on deployable branches."
|
||||||
|
read -p " K3S App name: " k3sApp
|
||||||
|
read -p " K3S namespace: [eg apps] " k3sNamespace
|
||||||
|
read -p " K3S base container: [eg nginx:nginx:latest] " k3sContainerBase
|
||||||
|
read -p " K3S prod NodePort: " k3sport
|
||||||
|
|
||||||
|
k3sportMain=$((k3sport+1))
|
||||||
|
k3sportStage=$((k3sport+2))
|
||||||
|
|
||||||
|
echo "Creating Folders"
|
||||||
|
echo " Creating cicd/"
|
||||||
|
mkdir cicd
|
||||||
|
echo " Creating cicd/prod"
|
||||||
|
mkdir cicd/prod
|
||||||
|
echo " Creating cicd/main"
|
||||||
|
mkdir cicd/main
|
||||||
|
echo " Creating cicd/stage"
|
||||||
|
mkdir cicd/stage
|
||||||
|
|
||||||
|
echo "Loading files"
|
||||||
|
echo " Loading cicd/Jenkinsfile"
|
||||||
|
cp template/Jenkinsfile cicd/Jenkinsfile
|
||||||
|
sed -ie "s|{{k3sApp}}|$k3sApp|g" cicd/Jenkinsfile
|
||||||
|
rm cicd/Jenkinsfilee
|
||||||
|
|
||||||
|
echo " Loading main"
|
||||||
|
k3sEnv=main
|
||||||
|
echo " Loading cicd/main/Dockerfile"
|
||||||
|
cp template/Dockerfile cicd/main/Dockerfile
|
||||||
|
sed -ie "s|{{k3sContainerBase}}|$k3sContainerBase|g" cicd/main/Dockerfile
|
||||||
|
rm cicd/main/Dockerfilee
|
||||||
|
|
||||||
|
echo " Loading cicd/main/deployment.yaml"
|
||||||
|
cp template/deployment.yaml cicd/main/deployment.yaml
|
||||||
|
sed -ie "s|{{k3sApp}}|$k3sApp|g" cicd/main/deployment.yaml
|
||||||
|
sed -ie "s|{{k3sport}}|$k3sportMain|g" cicd/main/deployment.yaml
|
||||||
|
sed -ie "s|{{k3sNamespace}}|$k3sNamespace|g" cicd/main/deployment.yaml
|
||||||
|
sed -ie "s|{{k3sEnv}}|$k3sEnv|g" cicd/main/deployment.yaml
|
||||||
|
rm cicd/main/deployment.yamle
|
||||||
|
|
||||||
|
echo " Loading stage"
|
||||||
|
k3sEnv=stage
|
||||||
|
echo " Loading cicd/stage/Dockerfile"
|
||||||
|
cp template/Dockerfile cicd/stage/Dockerfile
|
||||||
|
sed -ie "s|{{k3sContainerBase}}|$k3sContainerBase|g" cicd/stage/Dockerfile
|
||||||
|
rm cicd/stage/Dockerfilee
|
||||||
|
|
||||||
|
echo " Loading cicd/stage/deployment.yaml"
|
||||||
|
cp template/deployment.yaml cicd/stage/deployment.yaml
|
||||||
|
sed -ie "s|{{k3sApp}}|$k3sApp|g" cicd/stage/deployment.yaml
|
||||||
|
sed -ie "s|{{k3sport}}|$k3sportStage|g" cicd/stage/deployment.yaml
|
||||||
|
sed -ie "s|{{k3sNamespace}}|$k3sNamespace|g" cicd/stage/deployment.yaml
|
||||||
|
sed -ie "s|{{k3sEnv}}|$k3sEnv|g" cicd/stage/deployment.yaml
|
||||||
|
rm cicd/stage/deployment.yamle
|
||||||
|
|
||||||
|
echo " Loading prod"
|
||||||
|
k3sEnv=prod
|
||||||
|
echo " Loading cicd/prod/Dockerfile"
|
||||||
|
cp template/Dockerfile cicd/prod/Dockerfile
|
||||||
|
sed -ie "s|{{k3sContainerBase}}|$k3sContainerBase|g" cicd/prod/Dockerfile
|
||||||
|
rm cicd/prod/Dockerfilee
|
||||||
|
|
||||||
|
echo " Loading cicd/prod/deployment.yaml"
|
||||||
|
cp template/deployment.yaml cicd/prod/deployment.yaml
|
||||||
|
sed -ie "s|{{k3sApp}}|$k3sApp|g" cicd/prod/deployment.yaml
|
||||||
|
sed -ie "s|{{k3sport}}|$k3sport|g" cicd/prod/deployment.yaml
|
||||||
|
sed -ie "s|{{k3sNamespace}}|$k3sNamespace|g" cicd/prod/deployment.yaml
|
||||||
|
sed -ie "s|{{k3sEnv}}|$k3sEnv|g" cicd/prod/deployment.yaml
|
||||||
|
rm cicd/prod/deployment.yamle
|
||||||
|
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "Removing template folder"
|
||||||
|
rm -rf template
|
||||||
|
|
||||||
|
echo "Thank you! Happy building..."
|
||||||
6
template/start.sh
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
echo ""
|
||||||
|
echo "Starting an Nginx container listening on http://localhost:3000"
|
||||||
|
echo ""
|
||||||
|
echo ""
|
||||||
|
docker run --rm -v $(pwd)/html/:/usr/share/nginx/html/ -p {{localPort}}:80 {{localContainer}}
|
||||||