removed templating

This commit is contained in:
Damien Ostler 2024-02-09 00:21:28 -05:00
parent 4b767eb1bb
commit efa692cb2b

View File

@ -24,9 +24,9 @@ spec:
helm: helm:
values: | values: |
image: image:
repository: "{{.apps.core-api.image}}" repository: ghcr.io/comissions-app/core-api
pullPolicy: Always pullPolicy: Always
tag: "{{.apps.core-api.version}}" tag: "latest"
imagePullSecrets: imagePullSecrets:
- name: comissions-app - name: comissions-app
@ -48,14 +48,14 @@ spec:
annotations: annotations:
nginx.ingress.kubernetes.io/proxy-body-size: 512m nginx.ingress.kubernetes.io/proxy-body-size: 512m
hosts: hosts:
- host: '{{.apps.core-api.ingress.host}}' - host: 'core-api.comissions.dev'
paths: paths:
- path: / - path: /
pathType: ImplementationSpecific pathType: ImplementationSpecific
tls: tls:
- secretName: 'tls-secret' - secretName: 'tls-secret'
hosts: hosts:
- '{{.apps.core-api.ingress.host}}' - 'core-api.comissions.dev'
destination: destination:
server: 'https://kubernetes.default.svc' server: 'https://kubernetes.default.svc'
namespace: 'argo-cd ' namespace: 'argo-cd '