Cleanup repo

This commit is contained in:
Ruben Hensen
2025-03-30 17:36:57 +02:00
parent add0ae662d
commit f7f99c3df5
6 changed files with 108 additions and 0 deletions
+131
View File
@@ -0,0 +1,131 @@
# apiVersion: argoproj.io/v1alpha1
# kind: Application
# metadata:
# name: blog-helm
# namespace: argocd
# finalizers:
# - resources-finalizer.argocd.argoproj.io
# spec:
# destination:
# namespace: blog
# server: https://kubernetes.default.svc
# project: default
# source:
# repoURL: registry-1.docker.io/bitnamicharts
# targetRevision: 19.9.0
# chart: ghost
# helm:
# values: |
# image:
# # repository: ghost
# # tag: 5.114.1
# debug: true
# ghostUsername: Ruben
# ## @param existingSecret Name of existing secret containing Ghost credentials
# ## NOTE: Must contain key `ghost-password`
# ## NOTE: When it's set, the `ghostPassword` parameter is ignored
# existingSecret: ghost-es
# ghostEmail: ruben@hensen.io
# ghostBlogTitle: Catch && Compile
# ghostHost: "blog.hensen.io"
# ghostPath: /
# ghostEnableHttps: true
# ## SMTP mail delivery configuration
# ## ref: https://github.com/bitnami/containers/tree/main/bitnami/ghost/#smtp-configuration
# ## @param smtpHost SMTP server host
# ## @param smtpPort SMTP server port
# ## @param smtpUser SMTP username
# ## @param smtpPassword SMTP user password
# ## @param smtpService SMTP service
# ## @param smtpProtocol SMTP protocol (ssl or tls)
# ##
# smtpHost: smtp.hostinger.com
# smtpPort: 587
# smtpUser: ruben@hensen.io
# smtpPassword: "ignored-but-hast-to-exist-else-password-isnt-passed"
# smtpProtocol: tls
# smtpService: hostinger
# ## @param smtpExistingSecret The name of an existing secret with SMTP credentials
# ## NOTE: Must contain key `smtp-password`
# ## NOTE: When it's set, the `smtpPassword` parameter is ignored
# ##
# ## @param extraEnvVars Array with extra environment variables to add to the Ghost container
# ## e.g:
# ## extraEnvVars:
# ## - name: FOO
# ## value: "bar"
# ##
# # extraEnvVars:
# # - name: mail__options__secure
# # value: "false"
# ## @param allowEmptyPassword Allow the container to be started with blank passwords
# allowEmptyPassword: false
# resourcesPreset: "micro"
# containerPorts:
# http: 2368
# https: 2368
# service:
# type: ClusterIP
# ports:
# http: 80
# https: 443
# ingress:
# enabled: true
# ingressClassName: nginx
# hostname: blog.hensen.io
# path: /
# annotations:
# cert-manager.io/cluster-issuer: prod-cluster-issuer
# nginx.ingress.kubernetes.io/proxy-body-size: 1G
# tls: true
# tlsWwwPrefix: false
# selfSigned: false
# persistence:
# enabled: true
# accessModes:
# - ReadWriteOnce
# size: 8Gi
# mysql:
# enabled: true
# architecture: standalone
# ## MySQL Authentication parameters
# ## @param mysql.auth.rootPassword MySQL root password
# ## @param mysql.auth.database MySQL custom database
# ## @param mysql.auth.username MySQL custom user name
# ## @param mysql.auth.password MySQL custom user password
# ## @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
# ## 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
# auth:
# database: bitnami_ghost
# username: bn_ghost
# existingSecret: ghost-es
# primary:
# ## MySQL Primary Persistence parameters
# ## 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.storageClass Persistent Volume storage class
# ## @param mysql.primary.persistence.accessModes [array] Persistent Volume access modes
# ## @param mysql.primary.persistence.size Persistent Volume size
# ##
# 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:
# syncOptions:
# - CreateNamespace=true
# automated:
# selfHeal: true
+108
View File
@@ -0,0 +1,108 @@
# apiVersion: argoproj.io/v1alpha1
# kind: Application
# metadata:
# name: nextcloud-helm
# namespace: argocd
# finalizers:
# - resources-finalizer.argocd.argoproj.io
# spec:
# destination:
# namespace: nextcloud
# server: https://kubernetes.default.svc
# project: default
# source:
# repoURL: https://nextcloud.github.io/helm/
# targetRevision: 6.6.3
# chart: nextcloud
# helm:
# values: |
# persistence:
# # Nextcloud Data (/var/www/html)
# enabled: true
# accessMode: ReadWriteOnce
# size: 100Gi
# resources: {}
# # 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:'.
# # limits:
# # cpu: 100m
# # memory: 128Mi
# # requests:
# # cpu: 100m
# # memory: 128Mi
# nextcloud:
# host: drive.hensen.io
# configs:
# proxy.config.php: |
# <?php
# $CONFIG = array (
# 'trusted_proxies' => ['10.0.0.0/8', '192.168.1.1/32'],
# );
# phone.config.php: |
# <?php
# $CONFIG = array (
# 'default_phone_region' => 'NL',
# );
# phpConfigs:
# user.ini: |-
# upload_max_filesize=16G
# post_max_size=16G
# livenessProbe:
# enabled: false
# readinessProbe:
# enabled: false
# phpClientHttpsFix:
# enabled: true
# protocol: https
# ingress:
# enabled: true
# className: nginx
# annotations:
# nginx.ingress.kubernetes.io/proxy-body-size: 100G
# nginx.ingress.kubernetes.io/configuration-snippet: |
# more_set_headers "Strict-Transport-Security: max-age=15768000; includeSubDomains";
# # kubernetes.io/tls-acme: "true"
# cert-manager.io/cluster-issuer: prod-cluster-issuer
# # # Keep this in sync with the README.md:
# # nginx.ingress.kubernetes.io/server-snippet: |
# # server_tokens off
# # proxy_hide_header X-Powered-By;
# # rewrite ^/.well-known/webfinger /index.php/.well-known/webfinger last;
# # rewrite ^/.well-known/nodeinfo /index.php/.well-known/nodeinfo last;
# # rewrite ^/.well-known/host-meta /public.php?service=host-meta last;
# # rewrite ^/.well-known/host-meta.json /public.php?service=host-meta-json;
# # location = /.well-known/carddav {
# # return 301 $scheme://$host/remote.php/dav;
# # }
# # location = /.well-known/caldav {
# # return 301 $scheme://$host/remote.php/dav;
# # }
# # location = /robots.txt {
# # allow all;
# # log_not_found off;
# # access_log off;
# # }
# # location ~ ^/(?:build|tests|config|lib|3rdparty|templates|data)/ {
# # deny all;
# # }
# # location ~ ^/(?:autotest|occ|issue|indie|db_|console) {
# # deny all;
# # }
# tls:
# - secretName: nextcloud-tls
# hosts:
# - drive.hensen.io
# labels: {}
# path: /
# pathType: Prefix
# syncPolicy:
# syncOptions:
# - CreateNamespace=true
# automated:
# selfHeal: true