add app argocd kustomization
This commit is contained in:
10
apps/argocd/base/kustomization.yaml
Normal file
10
apps/argocd/base/kustomization.yaml
Normal file
@@ -0,0 +1,10 @@
|
||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||
kind: Kustomization
|
||||
helmCharts:
|
||||
- name: argo-cd
|
||||
repo: oci://ghcr.io/argoproj/argo-helm
|
||||
version: 7.3.6
|
||||
releaseName: argocd
|
||||
# apiVersions:
|
||||
# - monitoring.coreos.com/v1
|
||||
valuesFile: values.yaml
|
||||
49
apps/argocd/base/values.yaml
Normal file
49
apps/argocd/base/values.yaml
Normal file
@@ -0,0 +1,49 @@
|
||||
global:
|
||||
domain: argocd.cluster.edward.sydney
|
||||
|
||||
configs:
|
||||
params:
|
||||
server.insecure: true
|
||||
|
||||
controller:
|
||||
replicas: 1
|
||||
|
||||
redis-ha:
|
||||
enabled: true
|
||||
|
||||
server:
|
||||
serviceType: NodePort
|
||||
httpNodePort: 30080
|
||||
httpsNodePort: 30443
|
||||
autoscaling:
|
||||
enabled: true
|
||||
minReplicas: 2
|
||||
ingress:
|
||||
enabled: true
|
||||
annotations:
|
||||
nginx.ingress.kubernetes.io/force-ssl-redirect: "true"
|
||||
nginx.ingress.kubernetes.io/ssl-passthrough: "true"
|
||||
# nginx.ingress.kubernetes.io/ssl-redirect: "false"
|
||||
# nginx.ingress.kubernetes.io/use-regex: "true"
|
||||
ingressClassName: nginx
|
||||
hostname: argocd.cluster.edward.sydney
|
||||
extraTls:
|
||||
- hosts:
|
||||
- argocd.cluster.edward.sydney
|
||||
# Based on the ingress controller used secret might be optional
|
||||
secretName: wildcard-tls
|
||||
ingressGrpc:
|
||||
enabled: true
|
||||
ingressClassName: contour-internal
|
||||
extraTls:
|
||||
- hosts:
|
||||
- grpc.argocd.cluster.edward.sydney
|
||||
secretName: wildcard-tls
|
||||
|
||||
repoServer:
|
||||
autoscaling:
|
||||
enabled: true
|
||||
minReplicas: 2
|
||||
|
||||
applicationSet:
|
||||
replicas: 2
|
||||
5
apps/argocd/env/k3s-cluster/kustomization.yaml
vendored
Normal file
5
apps/argocd/env/k3s-cluster/kustomization.yaml
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||
kind: Kustomization
|
||||
|
||||
resources:
|
||||
- ../../base
|
||||
49
apps/argocd/env/k3s-cluster/values.yaml
vendored
Normal file
49
apps/argocd/env/k3s-cluster/values.yaml
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
global:
|
||||
domain: argocd.cluster.edward.sydney
|
||||
|
||||
configs:
|
||||
params:
|
||||
server.insecure: true
|
||||
|
||||
controller:
|
||||
replicas: 1
|
||||
|
||||
redis-ha:
|
||||
enabled: true
|
||||
|
||||
server:
|
||||
serviceType: NodePort
|
||||
httpNodePort: 30080
|
||||
httpsNodePort: 30443
|
||||
autoscaling:
|
||||
enabled: true
|
||||
minReplicas: 2
|
||||
# ingress:
|
||||
# enabled: true
|
||||
# annotations:
|
||||
# nginx.ingress.kubernetes.io/force-ssl-redirect: "true"
|
||||
# nginx.ingress.kubernetes.io/ssl-passthrough: "true"
|
||||
# nginx.ingress.kubernetes.io/ssl-redirect: "false"
|
||||
# nginx.ingress.kubernetes.io/use-regex: "true"
|
||||
ingressClassName: nginx
|
||||
hostname: argocd.cluster.edward.sydney
|
||||
extraTls:
|
||||
- hosts:
|
||||
- argocd.cluster.edward.sydney
|
||||
# Based on the ingress controller used secret might be optional
|
||||
secretName: wildcard-tls
|
||||
ingressGrpc:
|
||||
enabled: true
|
||||
ingressClassName: contour-internal
|
||||
extraTls:
|
||||
- hosts:
|
||||
- grpc.argocd.cluster.edward.sydney
|
||||
secretName: wildcard-tls
|
||||
|
||||
repoServer:
|
||||
autoscaling:
|
||||
enabled: true
|
||||
minReplicas: 2
|
||||
|
||||
applicationSet:
|
||||
replicas: 2
|
||||
Reference in New Issue
Block a user