103 lines
3.0 KiB
YAML
103 lines
3.0 KiB
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: openproject
|
|
finalizers:
|
|
- resources-finalizer.argocd.argoproj.io
|
|
spec:
|
|
project: default
|
|
source:
|
|
repoURL: 'https://charts.openproject.org'
|
|
chart: openproject
|
|
targetRevision: 11.*.*
|
|
helm:
|
|
values: |
|
|
## Define additional environment variables.
|
|
##
|
|
## You can get a list of all environment variables when executing:
|
|
## "RAILS_ENV=production bundle exec rake setting:available_envs"
|
|
##
|
|
## environment:
|
|
## OPENPROJECT_ATTACHMENT__MAX__SIZE: 5120
|
|
#
|
|
environment: {}
|
|
##
|
|
# Override the cluster domain name used in templating
|
|
clusterDomain: "cluster.local"
|
|
|
|
## Define and create Kubernetes Service.
|
|
##
|
|
## Ref.: https://kubernetes.io/docs/concepts/services-networking/ingress/
|
|
#
|
|
ingress:
|
|
enabled: true
|
|
annotations:
|
|
kubernetes.io/ingress.class: traefik
|
|
traefik.ingress.kubernetes.io/router.entrypoints: websecure
|
|
traefik.ingress.kubernetes.io/router.tls: "true"
|
|
cert-manager.io/cluster-issuer: lets-encrypt
|
|
host: "openproject.innovation-hub-niedersachsen.de"
|
|
tls:
|
|
enabled: true
|
|
secretName: openproject-tls
|
|
# hosts:
|
|
# - openproject.innovation-hub-niedersachsen.de
|
|
|
|
# host: "openproject.example.com"
|
|
# path: /
|
|
# pathType: "Prefix"
|
|
|
|
openproject:
|
|
## Enable https in backend response.
|
|
#
|
|
https: true
|
|
|
|
## Define the host, defaults to value of "ingress.host" when ingress is enabled.
|
|
#
|
|
host: "openproject.innovation-hub-niedersachsen.de"
|
|
|
|
## Enable HSTS.
|
|
#
|
|
hsts: true
|
|
|
|
## Define Cache settings.
|
|
#
|
|
cache:
|
|
store: "memcache"
|
|
|
|
# extraEnvVarsSecret: ""
|
|
|
|
## Define the language to seed the instance in
|
|
#
|
|
seed_locale: "en"
|
|
## Define admin user details
|
|
# only applicable on first installation
|
|
# c.f. https://www.openproject.org/docs/installation-and-operations/configuration/#initial-admin-user-creation
|
|
admin_user: "admin"
|
|
password: "InnoHubADMIN_2025!"
|
|
password_reset: "false"
|
|
name: "OpenProject Admin"
|
|
mail: "inno-netz@innovation-hub-niedersachsen.de"
|
|
## Configure PostgreSQL settings.
|
|
#
|
|
postgresql:
|
|
bundled: true
|
|
auth:
|
|
# existingSecret: ""
|
|
username: "openproject"
|
|
database: "openproject"
|
|
password: "InnoProjectDB_2025!"
|
|
postgresPassword: "InnoHubPostgres_2025!"
|
|
destination:
|
|
server: 'https://kubernetes.default.svc'
|
|
namespace: openproject
|
|
syncPolicy:
|
|
managedNamespaceMetadata:
|
|
labels:
|
|
pod-security.kubernetes.io/enforce: "privileged"
|
|
automated:
|
|
selfHeal: true
|
|
prune: true
|
|
syncOptions:
|
|
- CreateNamespace=true
|