Disable helm

This commit is contained in:
Ruben Hensen
2025-03-13 11:19:14 +01:00
parent 0cdcdd2337
commit 34673353c4
+93 -93
View File
@@ -1,94 +1,94 @@
apiVersion: argoproj.io/v1alpha1 # apiVersion: argoproj.io/v1alpha1
kind: Application # kind: Application
metadata: # metadata:
name: mbgwp-helm # name: mbgwp-helm
namespace: argocd # namespace: argocd
finalizers: # finalizers:
- resources-finalizer.argocd.argoproj.io # - resources-finalizer.argocd.argoproj.io
spec: # spec:
destination: # destination:
namespace: mbgwp # namespace: mbgwp
server: https://kubernetes.default.svc # server: https://kubernetes.default.svc
project: default # project: default
source: # source:
repoURL: registry-1.docker.io/bitnamicharts # repoURL: registry-1.docker.io/bitnamicharts
targetRevision: 24.1.13 # targetRevision: 24.1.13
chart: wordpress # chart: wordpress
helm: # helm:
values: | # values: |
service: # service:
## @param service.type WordPress service type # ## @param service.type WordPress service type
## # ##
type: ClusterIP # type: ClusterIP
ingress: # ingress:
enabled: true # enabled: true
ingressClassName: nginx # ingressClassName: nginx
hostname: mbgwp.hensen.io # hostname: mbgwp.hensen.io
path: / # path: /
annotations: # annotations:
cert-manager.io/cluster-issuer: prod-cluster-issuer # cert-manager.io/cluster-issuer: prod-cluster-issuer
tls: true # tls: true
tlsWwwPrefix: false # tlsWwwPrefix: false
selfSigned: false # selfSigned: false
extraHosts: [] # extraHosts: []
extraPaths: [] # extraPaths: []
extraTls: # extraTls:
- secretName: letsencrypt-prod # - secretName: letsencrypt-prod
hosts: # hosts:
- mbgwp.hensen.io # - mbgwp.hensen.io
secrets: [] # secrets: []
extraRules: [] # extraRules: []
persistence: # persistence:
## @param persistence.enabled Enable persistence using Persistent Volume Claims # ## @param persistence.enabled Enable persistence using Persistent Volume Claims
## # ##
enabled: true # enabled: true
## @param persistence.storageClass Persistent Volume storage class # ## @param persistence.storageClass Persistent Volume storage class
## If defined, storageClassName: <storageClass> # ## If defined, storageClassName: <storageClass>
## If set to "-", storageClassName: "", which disables dynamic provisioning # ## If set to "-", storageClassName: "", which disables dynamic provisioning
## If undefined (the default) or set to null, no storageClassName spec is set, choosing the default provisioner # ## If undefined (the default) or set to null, no storageClassName spec is set, choosing the default provisioner
## # ##
storageClass: "" # storageClass: ""
## @param persistence.accessModes [array] Persistent Volume access modes # ## @param persistence.accessModes [array] Persistent Volume access modes
## # ##
accessModes: # accessModes:
- ReadWriteOnce # - ReadWriteOnce
## @param persistence.accessMode Persistent Volume access mode (DEPRECATED: use `persistence.accessModes` instead) # ## @param persistence.accessMode Persistent Volume access mode (DEPRECATED: use `persistence.accessModes` instead)
## # ##
accessMode: ReadWriteOnce # accessMode: ReadWriteOnce
## @param persistence.size Persistent Volume size # ## @param persistence.size Persistent Volume size
## # ##
size: 10Gi # size: 10Gi
## @param persistence.dataSource Custom PVC data source # ## @param persistence.dataSource Custom PVC data source
## # ##
dataSource: {} # dataSource: {}
## @param persistence.existingClaim The name of an existing PVC to use for persistence # ## @param persistence.existingClaim The name of an existing PVC to use for persistence
## # ##
existingClaim: "" # existingClaim: ""
## @param persistence.selector Selector to match an existing Persistent Volume for WordPress data PVC # ## @param persistence.selector Selector to match an existing Persistent Volume for WordPress data PVC
## If set, the PVC can't have a PV dynamically provisioned for it # ## If set, the PVC can't have a PV dynamically provisioned for it
## E.g. # ## E.g.
## selector: # ## selector:
## matchLabels: # ## matchLabels:
## app: my-app # ## app: my-app
## # ##
selector: {} # selector: {}
## @param persistence.annotations Persistent Volume Claim annotations # ## @param persistence.annotations Persistent Volume Claim annotations
## # ##
annotations: {} # annotations: {}
allowEmptyPassword: false # allowEmptyPassword: false
wordpressPassword: wordpress-credentials # wordpressPassword: wordpress-credentials
wordpressUsername: rubenhensen # wordpressUsername: rubenhensen
smtpExistingSecret: wordpress-credentials # smtpExistingSecret: wordpress-credentials
lifecycleHooks: # lifecycleHooks:
postStart: # postStart:
exec: # exec:
command: # command:
- /bin/bash # - /bin/bash
- -c # - -c
- "sleep 30 && touch /opt/bitnami/apache/conf/httpd.conf" # - "sleep 30 && touch /opt/bitnami/apache/conf/httpd.conf"
syncPolicy: # syncPolicy:
syncOptions: # syncOptions:
- CreateNamespace=true # - CreateNamespace=true
automated: # automated:
selfHeal: true # selfHeal: true