This commit is contained in:
Ruben Hensen
2025-03-26 02:13:08 +01:00
parent 95998498ef
commit 5f31deb8b1
+119 -128
View File
@@ -1,129 +1,120 @@
# apiVersion: argoproj.io/v1alpha1 apiVersion: argoproj.io/v1alpha1
# kind: Application kind: Application
# metadata: metadata:
# name: blog-helm name: blog-helm
# namespace: argocd namespace: argocd
# finalizers: finalizers:
# - resources-finalizer.argocd.argoproj.io - resources-finalizer.argocd.argoproj.io
# spec: spec:
# destination: destination:
# namespace: blog namespace: blog
# 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: 22.2.4 targetRevision: 22.2.4
# chart: ghost chart: ghost
# helm: helm:
# values: | values: |
# image: image:
# debug: true debug: true
# ghostUsername: ruben ghostUsername: ruben
# ## @param existingSecret Name of existing secret containing Ghost credentials ## @param existingSecret Name of existing secret containing Ghost credentials
# ## NOTE: Must contain key `ghost-password` ## NOTE: Must contain key `ghost-password`
# ## NOTE: When it's set, the `ghostPassword` parameter is ignored ## NOTE: When it's set, the `ghostPassword` parameter is ignored
# existingSecret: ghost-es existingSecret: ghost-es
# ghostEmail: ruben.hensen@protonmail.com ghostEmail: ruben.hensen@protonmail.com
# ghostBlogTitle: Catch && Compile ghostBlogTitle: Catch && Compile
# ghostHost: "blog.hensen.io" ghostHost: "blog.hensen.io"
# ghostPath: / ghostPath: /
# ghostEnableHttps: true ghostEnableHttps: true
# ## SMTP mail delivery configuration ## SMTP mail delivery configuration
# ## ref: https://github.com/bitnami/containers/tree/main/bitnami/ghost/#smtp-configuration ## ref: https://github.com/bitnami/containers/tree/main/bitnami/ghost/#smtp-configuration
# ## @param smtpHost SMTP server host ## @param smtpHost SMTP server host
# ## @param smtpPort SMTP server port ## @param smtpPort SMTP server port
# ## @param smtpUser SMTP username ## @param smtpUser SMTP username
# ## @param smtpPassword SMTP user password ## @param smtpPassword SMTP user password
# ## @param smtpService SMTP service ## @param smtpService SMTP service
# ## @param smtpProtocol SMTP protocol (ssl or tls) ## @param smtpProtocol SMTP protocol (ssl or tls)
# ## ##
# smtpHost: smtp.hostinger.com smtpHost: smtp.hostinger.com
# smtpPort: 465 smtpPort: 465
# smtpUser: ruben@hensen.io smtpUser: ruben@hensen.io
# smtpPassword: "ignored-but-hast-to-exist-else-password-isnt-passed" smtpPassword: "ignored-but-hast-to-exist-else-password-isnt-passed"
# smtpProtocol: tls smtpProtocol: tls
# ## @param smtpExistingSecret The name of an existing secret with SMTP credentials ## @param smtpExistingSecret The name of an existing secret with SMTP credentials
# ## NOTE: Must contain key `smtp-password` ## NOTE: Must contain key `smtp-password`
# ## NOTE: When it's set, the `smtpPassword` parameter is ignored ## NOTE: When it's set, the `smtpPassword` parameter is ignored
# ## ##
# smtpExistingSecret: hensenio-smtp smtpExistingSecret: hensenio-smtp
# ## @param allowEmptyPassword Allow the container to be started with blank passwords ## @param allowEmptyPassword Allow the container to be started with blank passwords
# allowEmptyPassword: false allowEmptyPassword: false
# resourcesPreset: "micro" resourcesPreset: "micro"
# containerPorts: containerPorts:
# http: 2368 http: 2368
# https: 2368 https: 2368
# service: service:
# type: ClusterIP type: ClusterIP
# ports: ports:
# http: 80 http: 80
# https: 443 https: 443
# ingress: ingress:
# enabled: true enabled: true
# ingressClassName: nginx ingressClassName: nginx
# hostname: blog.hensen.io hostname: blog.hensen.io
# path: / path: /
# annotations: annotations:
# cert-manager.io/cluster-issuer: prod-cluster-issuer cert-manager.io/cluster-issuer: prod-cluster-issuer
# nginx.ingress.kubernetes.io/proxy-body-size: 1G nginx.ingress.kubernetes.io/proxy-body-size: 1G
# tls: true tls: true
# tlsWwwPrefix: false tlsWwwPrefix: false
# selfSigned: false selfSigned: false
# extraHosts: persistence:
# - name: blog.hensen.io enabled: true
# extraPaths: [] accessModes:
# extraTls: - ReadWriteOnce
# - secretName: letsencrypt-prod size: 8Gi
# hosts: mysql:
# - blog.hensen.io enabled: true
# secrets: [] architecture: standalone
# extraRules: [] ## MySQL Authentication parameters
# persistence: ## @param mysql.auth.rootPassword MySQL root password
# enabled: true ## @param mysql.auth.database MySQL custom database
# accessModes: ## @param mysql.auth.username MySQL custom user name
# - ReadWriteOnce ## @param mysql.auth.password MySQL custom user password
# size: 8Gi ## @param mysql.auth.existingSecret Existing secret with MySQL credentials
# mysql: ## ref: https://github.com/bitnami/containers/tree/main/bitnami/mysql#setting-the-root-password-on-first-run
# enabled: true ## https://github.com/bitnami/containers/tree/main/bitnami/mysql/#creating-a-database-on-first-run
# architecture: standalone ## https://github.com/bitnami/containers/tree/main/bitnami/mysql/#creating-a-database-user-on-first-run
# ## MySQL Authentication parameters auth:
# ## @param mysql.auth.rootPassword MySQL root password database: bitnami_ghost
# ## @param mysql.auth.database MySQL custom database username: bn_ghost
# ## @param mysql.auth.username MySQL custom user name existingSecret: ghost-es
# ## @param mysql.auth.password MySQL custom user password primary:
# ## @param mysql.auth.existingSecret Existing secret with MySQL credentials ## MySQL Primary Persistence parameters
# ## ref: https://github.com/bitnami/containers/tree/main/bitnami/mysql#setting-the-root-password-on-first-run ## ref: https://kubernetes.io/docs/concepts/storage/persistent-volumes/
# ## https://github.com/bitnami/containers/tree/main/bitnami/mysql/#creating-a-database-on-first-run ## @param mysql.primary.persistence.enabled Enable persistence on MySQL using PVC(s)
# ## https://github.com/bitnami/containers/tree/main/bitnami/mysql/#creating-a-database-user-on-first-run ## @param mysql.primary.persistence.storageClass Persistent Volume storage class
# auth: ## @param mysql.primary.persistence.accessModes [array] Persistent Volume access modes
# database: bitnami_ghost ## @param mysql.primary.persistence.size Persistent Volume size
# username: bn_ghost ##
# existingSecret: ghost-es persistence:
# primary: enabled: true
# ## MySQL Primary Persistence parameters storageClass: ""
# ## ref: https://kubernetes.io/docs/concepts/storage/persistent-volumes/ accessModes:
# ## @param mysql.primary.persistence.enabled Enable persistence on MySQL using PVC(s) - ReadWriteOnce
# ## @param mysql.primary.persistence.storageClass Persistent Volume storage class size: 8Gi
# ## @param mysql.primary.persistence.accessModes [array] Persistent Volume access modes ## MySQL primary container's resource requests and limits
# ## @param mysql.primary.persistence.size Persistent Volume size ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
# ## ## We usually recommend not to specify default resources and to leave this as a conscious
# persistence: ## choice for the user. This also increases chances charts run on environments with little
# enabled: true ## resources, such as Minikube. If you do want to specify resources, uncomment the following
# storageClass: "" ## lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# accessModes: ## @param mysql.primary.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, small, medium, large, xlarge, 2xlarge). This is ignored if primary.resources is set (primary.resources is recommended for production)
# - ReadWriteOnce resourcesPreset: "small"
# size: 8Gi
# ## MySQL primary container's resource requests and limits
# ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
# ## We usually recommend not to specify default resources and to leave this as a conscious
# ## choice for the user. This also increases chances charts run on environments with little
# ## resources, such as Minikube. If you do want to specify resources, uncomment the following
# ## lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# ## @param mysql.primary.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, small, medium, large, xlarge, 2xlarge). This is ignored if primary.resources is set (primary.resources is recommended for production)
# resourcesPreset: "small"
# syncPolicy: syncPolicy:
# syncOptions: syncOptions:
# - CreateNamespace=true - CreateNamespace=true
# automated: automated:
# selfHeal: true selfHeal: true