Skip to content

Commit fc0826b

Browse files
committed
[ADD] new version
1 parent 70728a4 commit fc0826b

17 files changed

+772
-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,24 @@
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.7
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+
- name: azacchino
22+
email: az@adhoc.com.ar
23+
24+
icon: "https://github.com/adhoc-dev/helm-charts/raw/master/img/nginx.png"
Loading
1.65 KB
Loading

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

+204
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,205 @@
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+
html {
14+
height: 100%;
15+
}
16+
17+
body {
18+
height: 100vh; /* Cambiado a vh en lugar de % */
19+
color: #1a1919;
20+
background-color: #b5a9b2;
21+
overflow-x: hidden;
22+
display: flex;
23+
flex-direction: column;
24+
margin: 0;
25+
padding: 0;
26+
}
27+
28+
.bloque_texto {
29+
line-height: 150%;
30+
}
31+
32+
.bloque_texto_line {
33+
font-style: italic;
34+
}
35+
36+
a {
37+
color: #044824;
38+
text-decoration: none;
39+
}
40+
41+
a:hover {
42+
color: #5faee3;
43+
text-decoration: none;
44+
}
45+
46+
/*--------------------------------------------------------------
47+
# Hero Section
48+
--------------------------------------------------------------*/
49+
#hero {
50+
width: 100%;
51+
flex: 1;
52+
display: flex;
53+
align-items: flex-start;
54+
justify-content: center;
55+
padding: 20px 0;
56+
}
57+
58+
@media (min-width: 1024px) {
59+
#hero {
60+
background-attachment: fixed;
61+
min-height: 0; /* Eliminamos min-height en pantallas grandes */
62+
height: auto; /* Dejamos que se ajuste al contenido */
63+
}
64+
65+
body {
66+
overflow-y: hidden; /* Prevenimos scroll en pantallas grandes */
67+
}
68+
}
69+
70+
#hero h1, #hero h2 {
71+
margin: 0;
72+
padding: 0;
73+
}
74+
75+
#hero h1 {
76+
font-size: 48px;
77+
font-weight: 700;
78+
line-height: 56px;
79+
color: black;
80+
}
81+
82+
#hero h2 {
83+
color: #484848;
84+
margin-bottom: 50px;
85+
font-size: 24px;
86+
}
87+
88+
#hero .animated {
89+
animation: up-down 2s ease-in-out infinite alternate-reverse both;
90+
}
91+
92+
@media (max-width: 991px) {
93+
#hero {
94+
min-height: auto;
95+
}
96+
97+
#hero .animated {
98+
-webkit-animation: none;
99+
animation: none;
100+
}
101+
102+
#hero .hero-img {
103+
text-align: center;
104+
}
105+
106+
#hero .hero-img img {
107+
width: 100%;
108+
}
109+
110+
body {
111+
overflow-y: auto; /* Permitimos scroll en pantallas pequeñas */
112+
}
113+
}
114+
115+
/*--------------------------------------------------------------
116+
# Footer
117+
--------------------------------------------------------------*/
118+
footer {
119+
width: 100%;
120+
background-color: rgb(43, 40, 63);
121+
padding: 20px 30px;
122+
display: flex;
123+
flex-wrap: wrap;
124+
justify-content: space-between;
125+
}
126+
127+
/* Nuevo contenedor para el logo */
128+
.footer__logo {
129+
order: 3; /* Mueve el logo al final */
130+
flex: 1;
131+
display: flex;
132+
justify-content: flex-end;
133+
align-items: flex-start;
134+
}
135+
136+
.footer__logo img {
137+
max-width: 150px; /* Ajusta según el tamaño de tu logo */
138+
height: auto;
139+
}
140+
141+
.footer__addr {
142+
order: 1;
143+
margin-right: 1.25em;
144+
margin-bottom: 1em;
145+
flex: 1;
146+
}
147+
148+
.footer__nav {
149+
order: 2;
150+
display: flex;
151+
flex-wrap: wrap;
152+
gap: 20px;
153+
flex: 2;
154+
}
155+
156+
.footer__nav > * {
157+
flex: 1;
158+
min-width: 200px;
159+
}
160+
161+
.nav__title {
162+
font-weight: 800;
163+
font-size: 16px;
164+
color: azure;
165+
text-transform: uppercase;
166+
}
167+
168+
.nav__ul {
169+
list-style: none;
170+
padding: 0;
171+
}
172+
173+
.nav__ul li a {
174+
color: azure;
175+
font-weight: lighter;
176+
line-height: 2;
177+
}
178+
179+
.legal {
180+
color: rgb(213, 212, 212);
181+
text-align: right;
182+
margin-top: 1em;
183+
width: 100%;
184+
order: 4; /* Asegura que el texto legal esté al final */
185+
}
186+
187+
@media screen and (max-width: 768px) {
188+
footer {
189+
flex-direction: column;
190+
}
191+
192+
.footer__logo {
193+
order: 1; /* En móvil, ponemos el logo primero */
194+
justify-content: center;
195+
margin-bottom: 1em;
196+
}
197+
198+
.footer__addr {
199+
order: 2;
200+
}
201+
202+
.footer__nav {
203+
order: 3;
204+
}
205+
}

charts/adhoc-defaultbackend/v0.1.8/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)