Blog: add helm chart

This commit is contained in:
Ruben Hensen
2025-03-25 18:20:05 +01:00
parent 3f51d1447e
commit f582313d7d
+103 -103
View File
@@ -1,104 +1,104 @@
# 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: |
# 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
# smtpHost: smtp.mailgun.org smtpHost: smtp.mailgun.org
# smtpPort: 587 smtpPort: 587
# smtpUser: postmaster@mail.hensen.io smtpUser: postmaster@mail.hensen.io
# smtpPassword: "ignored-but-has-to-exist-else-password-isnt-passed" smtpPassword: "ignored-but-has-to-exist-else-password-isnt-passed"
# smtpProtocol: tls smtpProtocol: tls
# 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: extraHosts:
# - name: blog.hensen.io - name: blog.hensen.io
# extraPaths: [] extraPaths: []
# extraTls: extraTls:
# - secretName: letsencrypt-prod - secretName: letsencrypt-prod
# hosts: hosts:
# - blog.hensen.io - blog.hensen.io
# secrets: [] secrets: []
# extraRules: [] extraRules: []
# persistence: persistence:
# enabled: true enabled: true
# accessModes: accessModes:
# - ReadWriteOnce - ReadWriteOnce
# size: 8Gi size: 8Gi
# mysql: mysql:
# enabled: true enabled: true
# architecture: standalone architecture: standalone
# ## MySQL Authentication parameters ## MySQL Authentication parameters
# ## @param mysql.auth.rootPassword MySQL root password ## @param mysql.auth.rootPassword MySQL root password
# ## @param mysql.auth.database MySQL custom database ## @param mysql.auth.database MySQL custom database
# ## @param mysql.auth.username MySQL custom user name ## @param mysql.auth.username MySQL custom user name
# ## @param mysql.auth.password MySQL custom user password ## @param mysql.auth.password MySQL custom user password
# ## @param mysql.auth.existingSecret Existing secret with MySQL credentials ## @param mysql.auth.existingSecret Existing secret with MySQL credentials
# ## ref: https://github.com/bitnami/containers/tree/main/bitnami/mysql#setting-the-root-password-on-first-run ## ref: https://github.com/bitnami/containers/tree/main/bitnami/mysql#setting-the-root-password-on-first-run
# ## https://github.com/bitnami/containers/tree/main/bitnami/mysql/#creating-a-database-on-first-run ## https://github.com/bitnami/containers/tree/main/bitnami/mysql/#creating-a-database-on-first-run
# ## https://github.com/bitnami/containers/tree/main/bitnami/mysql/#creating-a-database-user-on-first-run ## https://github.com/bitnami/containers/tree/main/bitnami/mysql/#creating-a-database-user-on-first-run
# auth: auth:
# database: bitnami_ghost database: bitnami_ghost
# username: bn_ghost username: bn_ghost
# existingSecret: ghost-es existingSecret: ghost-es
# primary: primary:
# ## MySQL Primary Persistence parameters ## MySQL Primary Persistence parameters
# ## ref: https://kubernetes.io/docs/concepts/storage/persistent-volumes/ ## ref: https://kubernetes.io/docs/concepts/storage/persistent-volumes/
# ## @param mysql.primary.persistence.enabled Enable persistence on MySQL using PVC(s) ## @param mysql.primary.persistence.enabled Enable persistence on MySQL using PVC(s)
# ## @param mysql.primary.persistence.storageClass Persistent Volume storage class ## @param mysql.primary.persistence.storageClass Persistent Volume storage class
# ## @param mysql.primary.persistence.accessModes [array] Persistent Volume access modes ## @param mysql.primary.persistence.accessModes [array] Persistent Volume access modes
# ## @param mysql.primary.persistence.size Persistent Volume size ## @param mysql.primary.persistence.size Persistent Volume size
# ## ##
# persistence: persistence:
# enabled: true enabled: true
# storageClass: "" storageClass: ""
# accessModes: accessModes:
# - ReadWriteOnce - ReadWriteOnce
# size: 8Gi size: 8Gi
# syncPolicy: syncPolicy:
# syncOptions: syncOptions:
# - CreateNamespace=true - CreateNamespace=true
# automated: automated:
# selfHeal: true selfHeal: true