Add enablehttps

This commit is contained in:
Ruben Hensen
2025-03-26 02:40:23 +01:00
parent 4f09c4481d
commit 63ba7332e7
+117 -116
View File
@@ -1,117 +1,118 @@
# 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: /
# ## SMTP mail delivery configuration ghostEnableHttps: true
# ## ref: https://github.com/bitnami/containers/tree/main/bitnami/ghost/#smtp-configuration ## SMTP mail delivery configuration
# ## @param smtpHost SMTP server host ## ref: https://github.com/bitnami/containers/tree/main/bitnami/ghost/#smtp-configuration
# ## @param smtpPort SMTP server port ## @param smtpHost SMTP server host
# ## @param smtpUser SMTP username ## @param smtpPort SMTP server port
# ## @param smtpPassword SMTP user password ## @param smtpUser SMTP username
# ## @param smtpService SMTP service ## @param smtpPassword SMTP user password
# ## @param smtpProtocol SMTP protocol (ssl or tls) ## @param smtpService SMTP service
# ## ## @param smtpProtocol SMTP protocol (ssl or tls)
# smtpHost: smtp.hostinger.com ##
# smtpPort: 465 smtpHost: smtp.hostinger.com
# smtpUser: ruben@hensen.io smtpPort: 465
# smtpPassword: "ignored-but-hast-to-exist-else-password-isnt-passed" smtpUser: ruben@hensen.io
# smtpProtocol: tls smtpPassword: "ignored-but-hast-to-exist-else-password-isnt-passed"
# ## @param smtpExistingSecret The name of an existing secret with SMTP credentials smtpProtocol: tls
# ## NOTE: Must contain key `smtp-password` ## @param smtpExistingSecret The name of an existing secret with SMTP credentials
# ## NOTE: When it's set, the `smtpPassword` parameter is ignored ## NOTE: Must contain key `smtp-password`
# ## ## NOTE: When it's set, the `smtpPassword` parameter is ignored
# smtpExistingSecret: hensenio-smtp ##
# ## @param allowEmptyPassword Allow the container to be started with blank passwords smtpExistingSecret: hensenio-smtp
# allowEmptyPassword: false ## @param allowEmptyPassword Allow the container to be started with blank passwords
# resourcesPreset: "micro" allowEmptyPassword: false
# containerPorts: resourcesPreset: "micro"
# http: 2368 containerPorts:
# https: 2368 http: 2368
# service: https: 2368
# type: ClusterIP service:
# ports: type: ClusterIP
# http: 80 ports:
# https: 443 http: 80
# ingress: https: 443
# enabled: true ingress:
# ingressClassName: nginx enabled: true
# hostname: blog.hensen.io ingressClassName: nginx
# path: / hostname: blog.hensen.io
# annotations: path: /
# cert-manager.io/cluster-issuer: prod-cluster-issuer annotations:
# nginx.ingress.kubernetes.io/proxy-body-size: 1G cert-manager.io/cluster-issuer: prod-cluster-issuer
# tls: true nginx.ingress.kubernetes.io/proxy-body-size: 1G
# tlsWwwPrefix: false tls: true
# selfSigned: false tlsWwwPrefix: false
# persistence: selfSigned: false
# enabled: true persistence:
# accessModes: enabled: true
# - ReadWriteOnce accessModes:
# size: 8Gi - ReadWriteOnce
# mysql: size: 8Gi
# enabled: true mysql:
# architecture: standalone enabled: true
# ## MySQL Authentication parameters architecture: standalone
# ## @param mysql.auth.rootPassword MySQL root password ## MySQL Authentication parameters
# ## @param mysql.auth.database MySQL custom database ## @param mysql.auth.rootPassword MySQL root password
# ## @param mysql.auth.username MySQL custom user name ## @param mysql.auth.database MySQL custom database
# ## @param mysql.auth.password MySQL custom user password ## @param mysql.auth.username MySQL custom user name
# ## @param mysql.auth.existingSecret Existing secret with MySQL credentials ## @param mysql.auth.password MySQL custom user password
# ## ref: https://github.com/bitnami/containers/tree/main/bitnami/mysql#setting-the-root-password-on-first-run ## @param mysql.auth.existingSecret Existing secret with MySQL credentials
# ## https://github.com/bitnami/containers/tree/main/bitnami/mysql/#creating-a-database-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-user-on-first-run ## https://github.com/bitnami/containers/tree/main/bitnami/mysql/#creating-a-database-on-first-run
# auth: ## https://github.com/bitnami/containers/tree/main/bitnami/mysql/#creating-a-database-user-on-first-run
# database: bitnami_ghost auth:
# username: bn_ghost database: bitnami_ghost
# existingSecret: ghost-es username: bn_ghost
# primary: existingSecret: ghost-es
# ## MySQL Primary Persistence parameters primary:
# ## ref: https://kubernetes.io/docs/concepts/storage/persistent-volumes/ ## MySQL Primary Persistence parameters
# ## @param mysql.primary.persistence.enabled Enable persistence on MySQL using PVC(s) ## ref: https://kubernetes.io/docs/concepts/storage/persistent-volumes/
# ## @param mysql.primary.persistence.storageClass Persistent Volume storage class ## @param mysql.primary.persistence.enabled Enable persistence on MySQL using PVC(s)
# ## @param mysql.primary.persistence.accessModes [array] Persistent Volume access modes ## @param mysql.primary.persistence.storageClass Persistent Volume storage class
# ## @param mysql.primary.persistence.size Persistent Volume size ## @param mysql.primary.persistence.accessModes [array] Persistent Volume access modes
# ## ## @param mysql.primary.persistence.size Persistent Volume size
# persistence: ##
# enabled: true persistence:
# storageClass: "" enabled: true
# accessModes: storageClass: ""
# - ReadWriteOnce accessModes:
# size: 8Gi - ReadWriteOnce
# ## MySQL primary container's resource requests and limits size: 8Gi
# ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ ## MySQL primary container's resource requests and limits
# ## We usually recommend not to specify default resources and to leave this as a conscious ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
# ## choice for the user. This also increases chances charts run on environments with little ## We usually recommend not to specify default resources and to leave this as a conscious
# ## resources, such as Minikube. If you do want to specify resources, uncomment the following ## choice for the user. This also increases chances charts run on environments with little
# ## lines, adjust them as necessary, and remove the curly braces after 'resources:'. ## resources, such as Minikube. If you do want to specify resources, uncomment the following
# ## @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) ## lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# resourcesPreset: "small" ## @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