Lets give this a whirl
This commit is contained in:
parent
fda53c3ac1
commit
0902d26581
5 changed files with 78 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
||||||
{{ range .Values.helmApps }}
|
{{ range .Values.helmApps }}
|
||||||
|
---
|
||||||
apiVersion: argoproj.io/v1alpha1
|
apiVersion: argoproj.io/v1alpha1
|
||||||
kind: Application
|
kind: Application
|
||||||
metadata:
|
metadata:
|
||||||
|
@ -19,6 +20,9 @@ spec:
|
||||||
- repoURL: 'https://git.minhas.io/Asara/k8s.git'
|
- repoURL: 'https://git.minhas.io/Asara/k8s.git'
|
||||||
targetRevision: master
|
targetRevision: master
|
||||||
ref: values
|
ref: values
|
||||||
|
- repoURL: 'https://git.minhas.io/Asara/k8s.git'
|
||||||
|
targetRevision: master
|
||||||
|
path: argo/istio-ingress
|
||||||
syncPolicy:
|
syncPolicy:
|
||||||
automated:
|
automated:
|
||||||
prune: true
|
prune: true
|
||||||
|
@ -30,5 +34,5 @@ spec:
|
||||||
{{- if .ignoreDifferences }}
|
{{- if .ignoreDifferences }}
|
||||||
ignoreDifferences: {{- .ignoreDifferences | toYaml | trim | nindent 4 }}
|
ignoreDifferences: {{- .ignoreDifferences | toYaml | trim | nindent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
---
|
...
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
|
@ -5,3 +5,8 @@ helmApps:
|
||||||
repoURL: https://okgolove.github.io/helm-charts
|
repoURL: https://okgolove.github.io/helm-charts
|
||||||
chart: goldpinger
|
chart: goldpinger
|
||||||
revision: 5.5.0
|
revision: 5.5.0
|
||||||
|
istio:
|
||||||
|
commonName: goldpinger.teapot.masked.name
|
||||||
|
ingressSelector: ingressgateway-internal
|
||||||
|
issuer: vault-issuer
|
||||||
|
port: 80
|
||||||
|
|
5
argo/istio-ingress/Chart.yaml
Normal file
5
argo/istio-ingress/Chart.yaml
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
apiVersion: v2
|
||||||
|
name: istio-ingress
|
||||||
|
version: 1.0.0
|
||||||
|
...
|
62
argo/istio-ingress/templates/istio-ingress.yaml
Normal file
62
argo/istio-ingress/templates/istio-ingress.yaml
Normal file
|
@ -0,0 +1,62 @@
|
||||||
|
{{ if .Values.istio }}
|
||||||
|
---
|
||||||
|
apiVersion: cert-manager.io/v1
|
||||||
|
kind: Certificate
|
||||||
|
metadata:
|
||||||
|
name: {{ .Values.name }}-cert
|
||||||
|
namespace: istio-system
|
||||||
|
spec:
|
||||||
|
secretName: {{ .Values.name }}-cert
|
||||||
|
commonName: {{ .Values.istio.commonName }}
|
||||||
|
dnsNames:
|
||||||
|
- {{ .Values.istio.commonName }}
|
||||||
|
{{- range .Values.sans }}
|
||||||
|
- {{ . }}
|
||||||
|
{{- end }}
|
||||||
|
issuerRef:
|
||||||
|
name: {{ .Values.istio.issuer }}
|
||||||
|
kind: ClusterIssuer
|
||||||
|
group: cert-manager.io
|
||||||
|
...
|
||||||
|
---
|
||||||
|
apiVersion: networking.istio.io/v1beta1
|
||||||
|
kind: Gateway
|
||||||
|
metadata:
|
||||||
|
name: {{ .Values.name }}-gateway
|
||||||
|
namespace: {{ .Values.namespace }}
|
||||||
|
spec:
|
||||||
|
selector:
|
||||||
|
istio: {{ .Values.istio.ingressSelector }}
|
||||||
|
servers:
|
||||||
|
- port:
|
||||||
|
number: 443
|
||||||
|
name: https
|
||||||
|
protocol: HTTPS
|
||||||
|
tls:
|
||||||
|
mode: SIMPLE
|
||||||
|
credentialName: {{ .Values.name }}-cert
|
||||||
|
hosts:
|
||||||
|
- {{ .Values.istio.commonName }}
|
||||||
|
...
|
||||||
|
---
|
||||||
|
apiVersion: networking.istio.io/v1beta1
|
||||||
|
kind: VirtualService
|
||||||
|
metadata:
|
||||||
|
name: {{ .Values.name }}-gateway
|
||||||
|
namespace: {{ .Values.namespace }}
|
||||||
|
spec:
|
||||||
|
hosts:
|
||||||
|
- {{ .Values.istio.commonName }}
|
||||||
|
gateways:
|
||||||
|
- {{ .Values.name }}-gateway
|
||||||
|
http:
|
||||||
|
- match:
|
||||||
|
- uri:
|
||||||
|
prefix: /
|
||||||
|
route:
|
||||||
|
- destination:
|
||||||
|
port:
|
||||||
|
number: {{ .Values.istio.port }}
|
||||||
|
host: {{ .Values.name }}
|
||||||
|
...
|
||||||
|
{{ end }}
|
1
argo/istio-ingress/values.yaml
Normal file
1
argo/istio-ingress/values.yaml
Normal file
|
@ -0,0 +1 @@
|
||||||
|
---
|
Loading…
Reference in a new issue