Skip to content

Commit 8c67a70

Browse files
committed
[ADD] new version
1 parent 0857ab6 commit 8c67a70

17 files changed

+795
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Patterns to ignore when building packages.
2+
# This supports shell glob matching, relative path matching, and
3+
# negation (prefixed with !). Only one pattern per line.
4+
.DS_Store
5+
# Common VCS dirs
6+
.git/
7+
.gitignore
8+
.bzr/
9+
.bzrignore
10+
.hg/
11+
.hgignore
12+
.svn/
13+
# Common backup files
14+
*.swp
15+
*.bak
16+
*.tmp
17+
*.orig
18+
*~
19+
# Various IDEs
20+
.project
21+
.idea/
22+
*.tmproj
23+
.vscode/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
annotations:
2+
category: DevOps
3+
apiVersion: v2
4+
name: adhoc-defaultbackend
5+
description: El "backend predeterminado" es un servicio que maneja todas las rutas URL y aloja el controlador Ingress-NGINX que no comprende (es decir, todas las solicitudes que no están asignadas con un Ingress).
6+
7+
type: application
8+
9+
version: 0.1.6
10+
11+
appVersion: "stable-alpine"
12+
13+
home: "https://github.com/adhoc-dev/helm-charts"
14+
sources:
15+
- "https://github.com/adhoc-dev/"
16+
maintainers:
17+
- name: dbollini
18+
email: dib@adhoc.com.ar
19+
- name: jjscarafia
20+
email: jjs@adhoc.com.ar
21+
22+
icon: "https://github.com/adhoc-dev/helm-charts/raw/master/img/nginx.png"
Loading
1.65 KB
Loading

charts/adhoc-defaultbackend/v0.1.7/index.html

+197
Large diffs are not rendered by default.
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
questions:
2+
# NodeTag - Affinity
3+
- variable: nodeTag
4+
group: "Resources"
5+
label: "Node tag for node affinity (nodeTag)"
6+
description: "Tag to schedule pods in nodes"
7+
type: "string"
8+
required: true
9+
default: "Prod"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,237 @@
1+
* {
2+
margin: 0;
3+
padding: 0;
4+
-webkit-box-sizing: border-box;
5+
box-sizing: border-box;
6+
text-rendering: optimizeLegibility;
7+
font-family: 'Poppins', sans-serif;
8+
}
9+
10+
/*--------------------------------------------------------------
11+
# General
12+
--------------------------------------------------------------*/
13+
body {
14+
color: #1a1919;
15+
background-color: #b5a9b2;
16+
}
17+
18+
.bloque_texto {
19+
line-height: 150%;
20+
}
21+
22+
.bloque_texto_line {
23+
font-style: italic;
24+
}
25+
26+
a {
27+
color: #044824;
28+
text-decoration: none;
29+
}
30+
31+
a:hover {
32+
color: #5faee3;
33+
text-decoration: none;
34+
}
35+
36+
37+
/*--------------------------------------------------------------
38+
# Hero Section
39+
--------------------------------------------------------------*/
40+
#hero {
41+
width: 100%;
42+
height: 70vh;
43+
margin-top: 30px;
44+
}
45+
46+
#hero h1 {
47+
margin: 0 0 10px 0;
48+
font-size: 48px;
49+
font-weight: 700;
50+
line-height: 56px;
51+
color: black;
52+
}
53+
54+
#hero h2 {
55+
color: #484848;
56+
margin-bottom: 50px;
57+
font-size: 24px;
58+
}
59+
60+
#hero .animated {
61+
animation: up-down 2s ease-in-out infinite alternate-reverse both;
62+
}
63+
64+
@media (min-width: 1024px) {
65+
#hero {
66+
background-attachment: fixed;
67+
}
68+
}
69+
70+
@media (max-width: 991px) {
71+
#hero {
72+
height: 100vh;
73+
}
74+
75+
#hero .animated {
76+
-webkit-animation: none;
77+
animation: none;
78+
}
79+
80+
#hero .hero-img {
81+
text-align: center;
82+
}
83+
84+
#hero .hero-img img {
85+
width: 120%;
86+
}
87+
}
88+
89+
@media (max-width: 768px) {
90+
#hero {
91+
margin-top: 20px;
92+
}
93+
94+
#hero h1 {
95+
font-size: 28px;
96+
line-height: 36px;
97+
}
98+
99+
#hero h2 {
100+
font-size: 18px;
101+
line-height: 24px;
102+
margin-bottom: 30px;
103+
}
104+
105+
#hero .hero-img img {
106+
width: 70%;
107+
}
108+
}
109+
110+
@media (max-width: 575px) {
111+
#hero .hero-img img {
112+
width: 80%;
113+
}
114+
}
115+
116+
@-webkit-keyframes up-down {
117+
0% {
118+
transform: translateY(10px);
119+
}
120+
121+
100% {
122+
transform: translateY(-10px);
123+
}
124+
}
125+
126+
@keyframes up-down {
127+
0% {
128+
transform: translateY(10px);
129+
}
130+
131+
100% {
132+
transform: translateY(-10px);
133+
}
134+
}
135+
136+
137+
/*--------------------------------------------------------------
138+
# Footer
139+
--------------------------------------------------------------*/
140+
footer {
141+
bottom: 0;
142+
left: 0;
143+
right: 0;
144+
width: 100vw;
145+
display: flex;
146+
flex-flow: row wrap;
147+
padding: 30px 30px 27px 30px;
148+
background-color: rgb(43, 40, 63);
149+
margin-bottom: 0;
150+
151+
}
152+
153+
footer > * {
154+
flex: 1 100%;
155+
}
156+
157+
.footer__addr {
158+
margin-right: 1.25em;
159+
margin-bottom: 10.25em;
160+
}
161+
162+
.nav__title {
163+
font-weight: 800;
164+
font-size: 16px;
165+
color: azure;
166+
text-transform: uppercase;
167+
}
168+
169+
.footer__btn {
170+
display: flex;
171+
align-items: center;
172+
justify-content: center;
173+
height: 36px;
174+
max-width: max-content;
175+
background-color: rgb(33, 33, 33, 0.07);
176+
border-radius: 100px;
177+
color: #2f2f2f;
178+
line-height: 0;
179+
margin: 0.6em 0;
180+
font-size: 1rem;
181+
padding: 0 0em;
182+
}
183+
184+
footer ul {
185+
list-style: none;
186+
padding-left: 0;
187+
}
188+
189+
footer li {
190+
line-height: 2em;
191+
}
192+
193+
footer a {
194+
text-decoration: none;
195+
}
196+
197+
.footer__nav {
198+
display: flex;
199+
flex-flow: row wrap;
200+
}
201+
202+
.footer__nav > * {
203+
flex: 1 50%;
204+
margin-right: 1.25em;
205+
}
206+
207+
.nav__ul li a {
208+
color: azure;
209+
font-weight: lighter;
210+
}
211+
212+
.legal {
213+
display: inline;
214+
flex-wrap: wrap;
215+
color: rgb(213, 212, 212);
216+
text-align: right;
217+
}
218+
219+
@media screen and (min-width: 24.375em) {
220+
.legal {
221+
margin-left: auto;
222+
}
223+
}
224+
225+
@media screen and (min-width: 40.375em) {
226+
.footer__nav > * {
227+
flex: 1;
228+
}
229+
230+
.footer__addr {
231+
flex: 1 0px;
232+
}
233+
234+
.footer__nav {
235+
flex: 2 0px;
236+
}
237+
}

charts/adhoc-defaultbackend/v0.1.7/templates/NOTES.txt

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
{{/*
2+
Expand the name of the chart.
3+
*/}}
4+
{{- define "adhoc-defaultbackend.name" -}}
5+
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }}
6+
{{- end }}
7+
8+
{{/*
9+
Create a default fully qualified app name.
10+
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
11+
If release name contains chart name it will be used as a full name.
12+
*/}}
13+
{{- define "adhoc-defaultbackend.fullname" -}}
14+
{{- if .Values.fullnameOverride }}
15+
{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }}
16+
{{- else }}
17+
{{- $name := default .Chart.Name .Values.nameOverride }}
18+
{{- if contains $name .Release.Name }}
19+
{{- .Release.Name | trunc 63 | trimSuffix "-" }}
20+
{{- else }}
21+
{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }}
22+
{{- end }}
23+
{{- end }}
24+
{{- end }}
25+
26+
{{/*
27+
Create chart name and version as used by the chart label.
28+
*/}}
29+
{{- define "adhoc-defaultbackend.chart" -}}
30+
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }}
31+
{{- end }}
32+
33+
{{/*
34+
Common labels
35+
*/}}
36+
{{- define "adhoc-defaultbackend.labels" -}}
37+
helm.sh/chart: {{ include "adhoc-defaultbackend.chart" . }}
38+
{{ include "adhoc-defaultbackend.selectorLabels" . }}
39+
{{- if .Chart.AppVersion }}
40+
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
41+
{{- end }}
42+
app.kubernetes.io/managed-by: {{ .Release.Service }}
43+
{{- end }}
44+
45+
{{/*
46+
Selector labels
47+
*/}}
48+
{{- define "adhoc-defaultbackend.selectorLabels" -}}
49+
app.kubernetes.io/name: {{ include "adhoc-defaultbackend.name" . }}
50+
app.kubernetes.io/instance: {{ .Release.Name }}
51+
{{- end }}
52+
53+
{{/*
54+
Create the name of the service account to use
55+
*/}}
56+
{{- define "adhoc-defaultbackend.serviceAccountName" -}}
57+
{{- if .Values.serviceAccount.create }}
58+
{{- default (include "adhoc-defaultbackend.fullname" .) .Values.serviceAccount.name }}
59+
{{- else }}
60+
{{- default "default" .Values.serviceAccount.name }}
61+
{{- end }}
62+
{{- end }}

0 commit comments

Comments
 (0)