28 lines
637 B
YAML
28 lines
637 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: code-server
|
|
namespace: argocd
|
|
spec:
|
|
destination:
|
|
namespace: code-server
|
|
server: https://kubernetes.default.svc
|
|
project: infra
|
|
source:
|
|
helm:
|
|
parameters:
|
|
- name: persistence.storageClass
|
|
value: local-path-fast
|
|
- name: image.pullPolicy
|
|
value: Always
|
|
- name: service.type
|
|
value: LoadBalancer
|
|
- name: service.port
|
|
value: "80"
|
|
path: apps-helm/code-server
|
|
repoURL: https://git.martyn.berlin/martyn/infra4talos
|
|
targetRevision: HEAD
|
|
syncPolicy:
|
|
automated:
|
|
selfHeal: true
|