diff --git a/apps/dolibarr/index.yaml b/apps/dolibarr/index.yaml index aaa8b36..ea088bf 100644 --- a/apps/dolibarr/index.yaml +++ b/apps/dolibarr/index.yaml @@ -6,15 +6,80 @@ metadata: name: dolibarr description: null options: + storage: + default: + accessMode: ReadWriteOnce + size: 10Gi + type: Filesystem + examples: + - accessMode: ReadWriteOnce + size: 10Gi + type: Filesystem + properties: + accessMode: + default: ReadWriteOnce + enum: + - ReadWriteOnce + - ReadOnlyMany + - ReadWriteMany + type: string + size: + default: 10Gi + type: string + type: + default: Filesystem + enum: + - Filesystem + - block + type: string + type: object + parameters: + default: + MAIN_LANG_DEFAULT: auto + examples: + - MAIN_LANG_DEFAULT: auto + properties: + MAIN_LANG_DEFAULT: + default: auto + type: string + type: object + domain-name: + default: your_company.com + examples: + - your_company.com + type: string + user-groups: + default: + - admin: true + name: dolibarr-admin + examples: + - - admin: true + name: dolibarr-admin + items: + properties: + admin: + type: boolean + name: + type: string + type: object + type: array + modules: + default: + - societe + examples: + - - societe + items: + type: string + type: array issuer: default: letsencrypt-prod examples: - letsencrypt-prod type: string - domain-name: - default: your_company.com + sub-domain: + default: erp examples: - - your_company.com + - erp type: string resources: default: @@ -57,6 +122,11 @@ options: type: string type: object type: object + ingress-class: + default: traefik + examples: + - traefik + type: string backups: default: enable: false @@ -76,6 +146,7 @@ options: prune: 20 1 * * 0 secret-key: s3-secret secret-name: backup-settings + use-barman: false examples: - enable: false endpoint: '' @@ -94,6 +165,7 @@ options: prune: 20 1 * * 0 secret-key: s3-secret secret-name: backup-settings + use-barman: false properties: enable: default: false @@ -157,92 +229,15 @@ options: secret-name: default: backup-settings type: string + use-barman: + default: false + type: boolean type: object - storage: - default: - accessMode: ReadWriteOnce - size: 10Gi - type: Filesystem + log-level: + default: 5 examples: - - accessMode: ReadWriteOnce - size: 10Gi - type: Filesystem - properties: - accessMode: - default: ReadWriteOnce - enum: - - ReadWriteOnce - - ReadOnlyMany - - ReadWriteMany - type: string - size: - default: 10Gi - type: string - type: - default: Filesystem - enum: - - Filesystem - - block - type: string - type: object - hpa: - default: - avg-cpu: 50 - max-replicas: 5 - min-replicas: 1 - examples: - - avg-cpu: 50 - max-replicas: 5 - min-replicas: 1 - properties: - avg-cpu: - default: 50 - type: integer - max-replicas: - default: 5 - type: integer - min-replicas: - default: 1 - type: integer - type: object - domain: - default: your-company - examples: - - your-company - type: string - postgres: - default: - replicas: 1 - storage: 5Gi - version: '14' - examples: - - replicas: 1 - storage: 5Gi - version: '14' - properties: - replicas: - default: 1 - type: integer - storage: - default: 5Gi - type: string - version: - default: '14' - type: string - type: object - modules: - default: - - societe - examples: - - - societe - items: - type: string - type: array - sub-domain: - default: erp - examples: - - erp - type: string + - 5 + type: integer redis: default: exporter: @@ -276,6 +271,46 @@ options: default: 2Gi type: string type: object + hpa: + default: + avg-cpu: 50 + max-replicas: 5 + min-replicas: 1 + examples: + - avg-cpu: 50 + max-replicas: 5 + min-replicas: 1 + properties: + avg-cpu: + default: 50 + type: integer + max-replicas: + default: 5 + type: integer + min-replicas: + default: 1 + type: integer + type: object + postgres: + default: + replicas: 1 + storage: 5Gi + version: '14' + examples: + - replicas: 1 + storage: 5Gi + version: '14' + properties: + replicas: + default: 1 + type: integer + storage: + default: 5Gi + type: string + version: + default: '14' + type: string + type: object images: default: dolibarr: @@ -341,40 +376,10 @@ options: type: string type: object type: object - parameters: - default: - MAIN_LANG_DEFAULT: auto + domain: + default: your-company examples: - - MAIN_LANG_DEFAULT: auto - properties: - MAIN_LANG_DEFAULT: - default: auto - type: string - type: object - log-level: - default: 5 - examples: - - 5 - type: integer - user-groups: - default: - - admin: true - name: dolibarr-admin - examples: - - - admin: true - name: dolibarr-admin - items: - properties: - admin: - type: boolean - name: - type: string - type: object - type: array - ingress-class: - default: traefik - examples: - - traefik + - your-company type: string dependencies: - dist: null diff --git a/apps/dolibarr/postgresql.tf b/apps/dolibarr/postgresql.tf index 0582e60..07376bd 100644 --- a/apps/dolibarr/postgresql.tf +++ b/apps/dolibarr/postgresql.tf @@ -5,13 +5,16 @@ locals { } resource "kubectl_manifest" "prj_pg" { - yaml_body = <<-EOF + yaml_body = join("", concat([<<-EOF apiVersion: postgresql.cnpg.io/v1 kind: Cluster metadata: name: "${var.instance}-${var.component}-pg" namespace: "${var.namespace}" labels: ${jsonencode(local.pg-labels)} + annotations: + "k8up.io/backupcommand": "pg_dump -U postgres -d ${var.component} --clean" + "k8up.io/file-extension": ".sql" spec: instances: ${var.postgres.replicas} storage: @@ -22,6 +25,8 @@ resource "kubectl_manifest" "prj_pg" { owner: "${var.component}" monitoring: enablePodMonitor: true + EOF + ], var.backups.enable&&var.backups.use-barman?[<<-EOF backup: barmanObjectStore: destinationPath: "s3://${var.instance}-${var.namespace}/" @@ -34,6 +39,7 @@ resource "kubectl_manifest" "prj_pg" { name: "${var.backups.secret-name}" key: "${var.backups.secret-key}" EOF + ]:[""])) } resource "kubectl_manifest" "prj_pg_backup" { diff --git a/apps/gitea/index.yaml b/apps/gitea/index.yaml index aa19add..4634fc7 100644 --- a/apps/gitea/index.yaml +++ b/apps/gitea/index.yaml @@ -19,71 +19,36 @@ options: default: 10Gi type: string type: object - ingress-class: - default: traefik - examples: - - traefik - type: string - default-branch: - default: main - examples: - - main - type: string - load-balancer: + postgres: default: - ip: '' + replicas: 1 + storage: 10Gi + version: '14' examples: - - ip: '' + - replicas: 1 + storage: 10Gi + version: '14' properties: - ip: - default: '' + replicas: + default: 1 + type: integer + storage: + default: 10Gi type: string - type: object - theme: - default: gitea-modern - examples: - - gitea-modern - type: string - sub-domain: - default: git - examples: - - git - type: string - issuer: - default: letsencrypt-prod - examples: - - letsencrypt-prod - type: string - replicas: - default: 1 - examples: - - 1 - type: integer - webhook: - default: - allowed-hosts: private - skip-tls-verify: false - examples: - - allowed-hosts: private - skip-tls-verify: false - properties: - allowed-hosts: - default: private + version: + default: '14' type: string - skip-tls-verify: - default: false - type: boolean type: object disable-registration: default: true examples: - true type: boolean - ssh-port: - default: 2222 + domain: + default: your-company examples: - - 2222 - type: integer + - your-company + type: string images: default: gitea: @@ -147,46 +112,16 @@ options: type: string type: object type: object - release: - default: 8.3.0 + sub-domain: + default: git examples: - - 8.3.0 + - git type: string - admin: - default: - email: git-admin@git.your_company.com - name: gitea_admin + ssh-port: + default: 2222 examples: - - email: git-admin@git.your_company.com - name: gitea_admin - properties: - email: - default: git-admin@git.your_company.com - type: string - name: - default: gitea_admin - type: string - type: object - postgres: - default: - replicas: 1 - storage: 10Gi - version: '14' - examples: - - replicas: 1 - storage: 10Gi - version: '14' - properties: - replicas: - default: 1 - type: integer - storage: - default: 10Gi - type: string - version: - default: '14' - type: string - type: object + - 2222 + type: integer backups: default: enable: false @@ -206,6 +141,7 @@ options: prune: 10 1 * * 0 secret-key: s3-secret secret-name: backup-settings + use-barman: false examples: - enable: false endpoint: '' @@ -224,6 +160,7 @@ options: prune: 10 1 * * 0 secret-key: s3-secret secret-name: backup-settings + use-barman: false properties: enable: default: false @@ -287,6 +224,9 @@ options: secret-name: default: backup-settings type: string + use-barman: + default: false + type: boolean type: object push-create: default: @@ -308,20 +248,85 @@ options: default: 'true' type: string type: object - domain-name: - default: your_company.com + load-balancer: + default: + ip: '' examples: - - your_company.com + - ip: '' + properties: + ip: + default: '' + type: string + type: object + admin: + default: + email: git-admin@git.your_company.com + name: gitea_admin + examples: + - email: git-admin@git.your_company.com + name: gitea_admin + properties: + email: + default: git-admin@git.your_company.com + type: string + name: + default: gitea_admin + type: string + type: object + ingress-class: + default: traefik + examples: + - traefik type: string timezone: default: Europe/Paris examples: - Europe/Paris type: string - domain: - default: your-company + replicas: + default: 1 examples: - - your-company + - 1 + type: integer + issuer: + default: letsencrypt-prod + examples: + - letsencrypt-prod + type: string + default-branch: + default: main + examples: + - main + type: string + release: + default: 8.3.0 + examples: + - 8.3.0 + type: string + webhook: + default: + allowed-hosts: private + skip-tls-verify: false + examples: + - allowed-hosts: private + skip-tls-verify: false + properties: + allowed-hosts: + default: private + type: string + skip-tls-verify: + default: false + type: boolean + type: object + domain-name: + default: your_company.com + examples: + - your_company.com + type: string + theme: + default: gitea-modern + examples: + - gitea-modern type: string dependencies: - dist: null diff --git a/apps/gitea/postgresql.tf b/apps/gitea/postgresql.tf index 0582e60..07376bd 100644 --- a/apps/gitea/postgresql.tf +++ b/apps/gitea/postgresql.tf @@ -5,13 +5,16 @@ locals { } resource "kubectl_manifest" "prj_pg" { - yaml_body = <<-EOF + yaml_body = join("", concat([<<-EOF apiVersion: postgresql.cnpg.io/v1 kind: Cluster metadata: name: "${var.instance}-${var.component}-pg" namespace: "${var.namespace}" labels: ${jsonencode(local.pg-labels)} + annotations: + "k8up.io/backupcommand": "pg_dump -U postgres -d ${var.component} --clean" + "k8up.io/file-extension": ".sql" spec: instances: ${var.postgres.replicas} storage: @@ -22,6 +25,8 @@ resource "kubectl_manifest" "prj_pg" { owner: "${var.component}" monitoring: enablePodMonitor: true + EOF + ], var.backups.enable&&var.backups.use-barman?[<<-EOF backup: barmanObjectStore: destinationPath: "s3://${var.instance}-${var.namespace}/" @@ -34,6 +39,7 @@ resource "kubectl_manifest" "prj_pg" { name: "${var.backups.secret-name}" key: "${var.backups.secret-key}" EOF + ]:[""])) } resource "kubectl_manifest" "prj_pg_backup" { diff --git a/apps/nextcloud/apps_v1_Deployment_nextcloud-metrics.yaml b/apps/nextcloud/apps_v1_Deployment_nextcloud-metrics.yaml index 7b53652..76ea2d5 100644 --- a/apps/nextcloud/apps_v1_Deployment_nextcloud-metrics.yaml +++ b/apps/nextcloud/apps_v1_Deployment_nextcloud-metrics.yaml @@ -5,7 +5,7 @@ metadata: name: nextcloud-metrics labels: app.kubernetes.io/name: nextcloud - helm.sh/chart: nextcloud-3.5.21 + helm.sh/chart: nextcloud-4.1.0 app.kubernetes.io/instance: nextcloud app.kubernetes.io/managed-by: Helm app.kubernetes.io/component: metrics diff --git a/apps/nextcloud/apps_v1_Deployment_nextcloud.yaml b/apps/nextcloud/apps_v1_Deployment_nextcloud.yaml index a596442..e251923 100644 --- a/apps/nextcloud/apps_v1_Deployment_nextcloud.yaml +++ b/apps/nextcloud/apps_v1_Deployment_nextcloud.yaml @@ -5,7 +5,7 @@ metadata: name: nextcloud labels: app.kubernetes.io/name: nextcloud - helm.sh/chart: nextcloud-3.5.21 + helm.sh/chart: nextcloud-4.1.0 app.kubernetes.io/instance: nextcloud app.kubernetes.io/managed-by: Helm app.kubernetes.io/component: app @@ -31,7 +31,7 @@ spec: spec: containers: - name: nextcloud - image: nextcloud:27.0.1-apache + image: nextcloud:27.0.2-apache imagePullPolicy: IfNotPresent env: - name: POSTGRES_HOST diff --git a/apps/nextcloud/autoscaling_v1_HorizontalPodAutoscaler_nextcloud.yaml b/apps/nextcloud/autoscaling_v1_HorizontalPodAutoscaler_nextcloud.yaml index c3dac19..2242036 100644 --- a/apps/nextcloud/autoscaling_v1_HorizontalPodAutoscaler_nextcloud.yaml +++ b/apps/nextcloud/autoscaling_v1_HorizontalPodAutoscaler_nextcloud.yaml @@ -5,7 +5,7 @@ metadata: name: nextcloud labels: app.kubernetes.io/name: nextcloud - helm.sh/chart: nextcloud-3.5.21 + helm.sh/chart: nextcloud-4.1.0 app.kubernetes.io/instance: nextcloud app.kubernetes.io/managed-by: Helm app.kubernetes.io/component: app diff --git a/apps/nextcloud/index.yaml b/apps/nextcloud/index.yaml index 2b3c6de..b8b77d2 100644 --- a/apps/nextcloud/index.yaml +++ b/apps/nextcloud/index.yaml @@ -6,11 +6,151 @@ metadata: name: nextcloud description: null options: + domain-name: + default: your_company.com + examples: + - your_company.com + type: string + backups: + default: + enable: false + endpoint: '' + key-id-key: s3-id + restic-key: bck-password + retention: + db: 30d + keepDaily: 14 + keepMonthly: 12 + keepWeekly: 6 + keepYearly: 12 + schedule: + backup: 30 3 * * * + check: 30 5 * * 1 + db: 30 3 * * * + prune: 30 1 * * 0 + secret-key: s3-secret + secret-name: backup-settings + use-barman: false + examples: + - enable: false + endpoint: '' + key-id-key: s3-id + restic-key: bck-password + retention: + db: 30d + keepDaily: 14 + keepMonthly: 12 + keepWeekly: 6 + keepYearly: 12 + schedule: + backup: 30 3 * * * + check: 30 5 * * 1 + db: 30 3 * * * + prune: 30 1 * * 0 + secret-key: s3-secret + secret-name: backup-settings + use-barman: false + properties: + enable: + default: false + type: boolean + endpoint: + default: '' + type: string + key-id-key: + default: s3-id + type: string + restic-key: + default: bck-password + type: string + retention: + default: + db: 30d + keepDaily: 14 + keepMonthly: 12 + keepWeekly: 6 + keepYearly: 12 + properties: + db: + default: 30d + type: string + keepDaily: + default: 14 + type: integer + keepMonthly: + default: 12 + type: integer + keepWeekly: + default: 6 + type: integer + keepYearly: + default: 12 + type: integer + type: object + schedule: + default: + backup: 30 3 * * * + check: 30 5 * * 1 + db: 30 3 * * * + prune: 30 1 * * 0 + properties: + backup: + default: 30 3 * * * + type: string + check: + default: 30 5 * * 1 + type: string + db: + default: 30 3 * * * + type: string + prune: + default: 30 1 * * 0 + type: string + type: object + secret-key: + default: s3-secret + type: string + secret-name: + default: backup-settings + type: string + use-barman: + default: false + type: boolean + type: object + storage: + default: + accessMode: ReadWriteOnce + size: 10Gi + examples: + - accessMode: ReadWriteOnce + size: 10Gi + properties: + accessMode: + default: ReadWriteOnce + enum: + - ReadWriteOnce + - ReadOnlyMany + - ReadWriteMany + type: string + size: + default: 10Gi + type: string + type: object openid-name: default: vynil examples: - vynil type: string + ingress-class: + default: traefik + examples: + - traefik + type: string + domain: + default: your-company + examples: + - your-company + type: string redis: default: exporter: @@ -44,11 +184,6 @@ options: default: 2Gi type: string type: object - sub-domain: - default: files - examples: - - files - type: string postgres: default: replicas: 1 @@ -69,45 +204,6 @@ options: default: '14' type: string type: object - storage: - default: - accessMode: ReadWriteOnce - size: 10Gi - examples: - - accessMode: ReadWriteOnce - size: 10Gi - properties: - accessMode: - default: ReadWriteOnce - enum: - - ReadWriteOnce - - ReadOnlyMany - - ReadWriteMany - type: string - size: - default: 10Gi - type: string - type: object - issuer: - default: letsencrypt-prod - examples: - - letsencrypt-prod - type: string - ingress-class: - default: traefik - examples: - - traefik - type: string - domain: - default: your-company - examples: - - your-company - type: string - domain-name: - default: your_company.com - examples: - - your_company.com - type: string apps: default: audioplayer: false @@ -361,6 +457,16 @@ options: type: string type: object type: object + sub-domain: + default: files + examples: + - files + type: string + issuer: + default: letsencrypt-prod + examples: + - letsencrypt-prod + type: string hpa: default: avg-cpu: 50 @@ -381,107 +487,6 @@ options: default: 1 type: integer type: object - backups: - default: - enable: false - endpoint: '' - key-id-key: s3-id - restic-key: bck-password - retention: - db: 30d - keepDaily: 14 - keepMonthly: 12 - keepWeekly: 6 - keepYearly: 12 - schedule: - backup: 30 3 * * * - check: 30 5 * * 1 - db: 30 3 * * * - prune: 30 1 * * 0 - secret-key: s3-secret - secret-name: backup-settings - examples: - - enable: false - endpoint: '' - key-id-key: s3-id - restic-key: bck-password - retention: - db: 30d - keepDaily: 14 - keepMonthly: 12 - keepWeekly: 6 - keepYearly: 12 - schedule: - backup: 30 3 * * * - check: 30 5 * * 1 - db: 30 3 * * * - prune: 30 1 * * 0 - secret-key: s3-secret - secret-name: backup-settings - properties: - enable: - default: false - type: boolean - endpoint: - default: '' - type: string - key-id-key: - default: s3-id - type: string - restic-key: - default: bck-password - type: string - retention: - default: - db: 30d - keepDaily: 14 - keepMonthly: 12 - keepWeekly: 6 - keepYearly: 12 - properties: - db: - default: 30d - type: string - keepDaily: - default: 14 - type: integer - keepMonthly: - default: 12 - type: integer - keepWeekly: - default: 6 - type: integer - keepYearly: - default: 12 - type: integer - type: object - schedule: - default: - backup: 30 3 * * * - check: 30 5 * * 1 - db: 30 3 * * * - prune: 30 1 * * 0 - properties: - backup: - default: 30 3 * * * - type: string - check: - default: 30 5 * * 1 - type: string - db: - default: 30 3 * * * - type: string - prune: - default: 30 1 * * 0 - type: string - type: object - secret-key: - default: s3-secret - type: string - secret-name: - default: backup-settings - type: string - type: object admin: default: name: nextcloud_admin diff --git a/apps/nextcloud/monitoring.coreos.com_v1_ServiceMonitor_nextcloud.yaml b/apps/nextcloud/monitoring.coreos.com_v1_ServiceMonitor_nextcloud.yaml index 13b2266..f3ff5a1 100644 --- a/apps/nextcloud/monitoring.coreos.com_v1_ServiceMonitor_nextcloud.yaml +++ b/apps/nextcloud/monitoring.coreos.com_v1_ServiceMonitor_nextcloud.yaml @@ -6,7 +6,7 @@ metadata: namespace: "vynil-cloud" labels: app.kubernetes.io/name: nextcloud - helm.sh/chart: nextcloud-3.5.21 + helm.sh/chart: nextcloud-4.1.0 app.kubernetes.io/instance: nextcloud app.kubernetes.io/managed-by: Helm app.kubernetes.io/component: metrics diff --git a/apps/nextcloud/postgresql.tf b/apps/nextcloud/postgresql.tf index 0582e60..07376bd 100644 --- a/apps/nextcloud/postgresql.tf +++ b/apps/nextcloud/postgresql.tf @@ -5,13 +5,16 @@ locals { } resource "kubectl_manifest" "prj_pg" { - yaml_body = <<-EOF + yaml_body = join("", concat([<<-EOF apiVersion: postgresql.cnpg.io/v1 kind: Cluster metadata: name: "${var.instance}-${var.component}-pg" namespace: "${var.namespace}" labels: ${jsonencode(local.pg-labels)} + annotations: + "k8up.io/backupcommand": "pg_dump -U postgres -d ${var.component} --clean" + "k8up.io/file-extension": ".sql" spec: instances: ${var.postgres.replicas} storage: @@ -22,6 +25,8 @@ resource "kubectl_manifest" "prj_pg" { owner: "${var.component}" monitoring: enablePodMonitor: true + EOF + ], var.backups.enable&&var.backups.use-barman?[<<-EOF backup: barmanObjectStore: destinationPath: "s3://${var.instance}-${var.namespace}/" @@ -34,6 +39,7 @@ resource "kubectl_manifest" "prj_pg" { name: "${var.backups.secret-name}" key: "${var.backups.secret-key}" EOF + ]:[""])) } resource "kubectl_manifest" "prj_pg_backup" { diff --git a/apps/nextcloud/v1_ConfigMap_nextcloud-config.yaml b/apps/nextcloud/v1_ConfigMap_nextcloud-config.yaml index 650bb8a..55bc47a 100644 --- a/apps/nextcloud/v1_ConfigMap_nextcloud-config.yaml +++ b/apps/nextcloud/v1_ConfigMap_nextcloud-config.yaml @@ -5,7 +5,7 @@ metadata: name: nextcloud-config labels: app.kubernetes.io/name: nextcloud - helm.sh/chart: nextcloud-3.5.21 + helm.sh/chart: nextcloud-4.1.0 app.kubernetes.io/instance: nextcloud app.kubernetes.io/managed-by: Helm data: diff --git a/apps/nextcloud/v1_ConfigMap_nextcloud-nginxconfig.yaml b/apps/nextcloud/v1_ConfigMap_nextcloud-nginxconfig.yaml index 5d196e9..fdf5f34 100644 --- a/apps/nextcloud/v1_ConfigMap_nextcloud-nginxconfig.yaml +++ b/apps/nextcloud/v1_ConfigMap_nextcloud-nginxconfig.yaml @@ -5,7 +5,7 @@ metadata: name: nextcloud-nginxconfig labels: app.kubernetes.io/name: nextcloud - helm.sh/chart: nextcloud-3.5.21 + helm.sh/chart: nextcloud-4.1.0 app.kubernetes.io/instance: nextcloud app.kubernetes.io/managed-by: Helm data: diff --git a/apps/nextcloud/v1_PersistentVolumeClaim_nextcloud-nextcloud.yaml b/apps/nextcloud/v1_PersistentVolumeClaim_nextcloud-nextcloud.yaml index bdaa44d..227f301 100644 --- a/apps/nextcloud/v1_PersistentVolumeClaim_nextcloud-nextcloud.yaml +++ b/apps/nextcloud/v1_PersistentVolumeClaim_nextcloud-nextcloud.yaml @@ -5,7 +5,7 @@ metadata: name: nextcloud-nextcloud labels: app.kubernetes.io/name: nextcloud - helm.sh/chart: nextcloud-3.5.21 + helm.sh/chart: nextcloud-4.1.0 app.kubernetes.io/instance: nextcloud app.kubernetes.io/managed-by: Helm app.kubernetes.io/component: app diff --git a/apps/nextcloud/v1_Service_nextcloud-metrics.yaml b/apps/nextcloud/v1_Service_nextcloud-metrics.yaml index 1bd209d..3ae89f8 100644 --- a/apps/nextcloud/v1_Service_nextcloud-metrics.yaml +++ b/apps/nextcloud/v1_Service_nextcloud-metrics.yaml @@ -5,7 +5,7 @@ metadata: name: nextcloud-metrics labels: app.kubernetes.io/name: nextcloud - helm.sh/chart: nextcloud-3.5.21 + helm.sh/chart: nextcloud-4.1.0 app.kubernetes.io/instance: nextcloud app.kubernetes.io/managed-by: Helm app.kubernetes.io/component: metrics diff --git a/apps/nextcloud/v1_Service_nextcloud.yaml b/apps/nextcloud/v1_Service_nextcloud.yaml index 27a7534..5b16625 100644 --- a/apps/nextcloud/v1_Service_nextcloud.yaml +++ b/apps/nextcloud/v1_Service_nextcloud.yaml @@ -5,7 +5,7 @@ metadata: name: nextcloud labels: app.kubernetes.io/name: nextcloud - helm.sh/chart: nextcloud-3.5.21 + helm.sh/chart: nextcloud-4.1.0 app.kubernetes.io/instance: nextcloud app.kubernetes.io/managed-by: Helm app.kubernetes.io/component: app diff --git a/meta/domain/index.yaml b/meta/domain/index.yaml index 9db8e31..ce03e49 100644 --- a/meta/domain/index.yaml +++ b/meta/domain/index.yaml @@ -6,65 +6,11 @@ metadata: name: domain description: null options: - erp: - default: - dolibarr: - enable: true - enable: false - examples: - - dolibarr: - enable: true - enable: false - properties: - dolibarr: - default: - enable: true - properties: - enable: - default: true - type: boolean - type: object - enable: - default: false - type: boolean - type: object ingress-class: default: traefik examples: - traefik type: string - auth: - default: - enable: true - examples: - - enable: true - properties: - enable: - default: true - type: boolean - type: object - infra: - default: - enable: false - traefik: - enable: false - examples: - - enable: false - traefik: - enable: false - properties: - enable: - default: false - type: boolean - traefik: - default: - enable: false - properties: - enable: - default: false - type: boolean - type: object - type: object backups: default: enable: false @@ -95,6 +41,41 @@ options: default: backup-settings type: string type: object + issuer: + default: letsencrypt-prod + examples: + - letsencrypt-prod + type: string + domain-name: + default: your_company.com + examples: + - your_company.com + type: string + distributions: + default: + core: core + domain: domain + examples: + - core: core + domain: domain + properties: + core: + default: core + type: string + domain: + default: domain + type: string + type: object + auth: + default: + enable: true + examples: + - enable: true + properties: + enable: + default: true + type: boolean + type: object ci: default: enable: false @@ -117,20 +98,27 @@ options: type: boolean type: object type: object - distributions: + erp: default: - core: core - domain: domain + dolibarr: + enable: true + enable: false examples: - - core: core - domain: domain + - dolibarr: + enable: true + enable: false properties: - core: - default: core - type: string - domain: - default: domain - type: string + dolibarr: + default: + enable: true + properties: + enable: + default: true + type: boolean + type: object + enable: + default: false + type: boolean type: object apps: default: @@ -154,16 +142,28 @@ options: type: boolean type: object type: object - domain-name: - default: your_company.com + infra: + default: + enable: false + traefik: + enable: false examples: - - your_company.com - type: string - issuer: - default: letsencrypt-prod - examples: - - letsencrypt-prod - type: string + - enable: false + traefik: + enable: false + properties: + enable: + default: false + type: boolean + traefik: + default: + enable: false + properties: + enable: + default: false + type: boolean + type: object + type: object mail: default: enable: false diff --git a/share/authentik/index.yaml b/share/authentik/index.yaml index 9eaa074..980cb02 100644 --- a/share/authentik/index.yaml +++ b/share/authentik/index.yaml @@ -6,74 +6,6 @@ metadata: name: authentik description: authentik is an open-source Identity Provider focused on flexibility and versatility options: - redis: - default: - exporter: - enabled: true - image: quay.io/opstree/redis-exporter:v1.44.0 - image: quay.io/opstree/redis:v7.0.5 - storage: 8Gi - examples: - - exporter: - enabled: true - image: quay.io/opstree/redis-exporter:v1.44.0 - image: quay.io/opstree/redis:v7.0.5 - storage: 8Gi - properties: - exporter: - default: - enabled: true - image: quay.io/opstree/redis-exporter:v1.44.0 - properties: - enabled: - default: true - type: boolean - image: - default: quay.io/opstree/redis-exporter:v1.44.0 - type: string - type: object - image: - default: quay.io/opstree/redis:v7.0.5 - type: string - storage: - default: 8Gi - type: string - type: object - issuer: - default: letsencrypt-prod - examples: - - letsencrypt-prod - type: string - email: - default: - port: 587 - timeout: 30 - use_ssl: false - use_tls: false - examples: - - port: 587 - timeout: 30 - use_ssl: false - use_tls: false - properties: - port: - default: 587 - type: integer - timeout: - default: 30 - type: integer - use_ssl: - default: false - type: boolean - use_tls: - default: false - type: boolean - type: object - ingress-class: - default: traefik - examples: - - traefik - type: string sub-domain: default: auth examples: @@ -138,20 +70,10 @@ options: default: false type: boolean type: object - loglevel: - default: info + ingress-class: + default: traefik examples: - - info - type: string - geoip: - default: /geoip/GeoLite2-City.mmdb - examples: - - /geoip/GeoLite2-City.mmdb - type: string - domain: - default: your-company - examples: - - your-company + - traefik type: string error_reporting: default: @@ -173,11 +95,109 @@ options: default: false type: boolean type: object + admin: + default: + email: auth-admin + examples: + - email: auth-admin + properties: + email: + default: auth-admin + type: string + type: object + domain: + default: your-company + examples: + - your-company + type: string + geoip: + default: /geoip/GeoLite2-City.mmdb + examples: + - /geoip/GeoLite2-City.mmdb + type: string + email: + default: + port: 587 + timeout: 30 + use_ssl: false + use_tls: false + examples: + - port: 587 + timeout: 30 + use_ssl: false + use_tls: false + properties: + port: + default: 587 + type: integer + timeout: + default: 30 + type: integer + use_ssl: + default: false + type: boolean + use_tls: + default: false + type: boolean + type: object + postgres: + default: + replicas: 1 + storage: 8Gi + version: '14' + examples: + - replicas: 1 + storage: 8Gi + version: '14' + properties: + replicas: + default: 1 + type: integer + storage: + default: 8Gi + type: string + version: + default: '14' + type: string + type: object domain-name: default: your_company.com examples: - your_company.com type: string + redis: + default: + exporter: + enabled: true + image: quay.io/opstree/redis-exporter:v1.44.0 + image: quay.io/opstree/redis:v7.0.5 + storage: 8Gi + examples: + - exporter: + enabled: true + image: quay.io/opstree/redis-exporter:v1.44.0 + image: quay.io/opstree/redis:v7.0.5 + storage: 8Gi + properties: + exporter: + default: + enabled: true + image: quay.io/opstree/redis-exporter:v1.44.0 + properties: + enabled: + default: true + type: boolean + image: + default: quay.io/opstree/redis-exporter:v1.44.0 + type: string + type: object + image: + default: quay.io/opstree/redis:v7.0.5 + type: string + storage: + default: 8Gi + type: string + type: object image: default: project: goauthentik @@ -208,36 +228,16 @@ options: default: 2023.5.4 type: string type: object - postgres: - default: - replicas: 1 - storage: 8Gi - version: '14' + issuer: + default: letsencrypt-prod examples: - - replicas: 1 - storage: 8Gi - version: '14' - properties: - replicas: - default: 1 - type: integer - storage: - default: 8Gi - type: string - version: - default: '14' - type: string - type: object - admin: - default: - email: auth-admin + - letsencrypt-prod + type: string + loglevel: + default: info examples: - - email: auth-admin - properties: - email: - default: auth-admin - type: string - type: object + - info + type: string dependencies: - dist: null category: core