Blog: remove blog

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