-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathvalues.yaml
More file actions
97 lines (92 loc) · 3.93 KB
/
Copy pathvalues.yaml
File metadata and controls
97 lines (92 loc) · 3.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
image_org: "drycc"
image_pull_policy: "Always"
image_tag: "canary"
image_registry: "docker.io"
app_image_pull_policy: "Always"
# A comma-separated list of URLs to send app release information to
# See https://www.drycc.cc/managing-workflow/deploy-hooks/
deploy_hook_urls: ""
# limits_cpu: "100m"
# limits_memory: "50Mi"
# Possible values are:
# enabled - allows for open registration
# disabled - turns off open registration
# admin_only - allows for registration by an admin only.
registration_mode: "admin_only"
# Option to disable ssl verification to connect to k8s api server
k8s_api_verify_tls: "true"
# Set storageClassName, It is used for application mount.
app_storage_class: ""
# Set controller deployment replicas
replicas: 1
# Set celery replicas
celery_replicas: 1
# Set cronjob concurrencyPolicy
# Allow (default): The cron job allows concurrently running jobs
# Forbid: The cron job does not allow concurrent runs; if it is time for a new job run and the previous job run hasn't finished yet, the cron job skips the new job run
# Replace: If it is time for a new job run and the previous job run hasn't finished yet, the cron job replaces the currently running job run with a new job run
concurrency_policy: "Replace"
# Configuring this will no longer use the built-in database component
database_url: ""
# Any custom controller environment variables
# can be specified as key-value pairs under environment
# this is usually a non required setting.
environment:
RESERVED_NAMES: "drycc, drycc-builder, drycc-monitor-grafana"
## Oauth settings. If passport_location is off-cluster, set the following environment variables
# LOGIN_REDIRECT_URL: ""
# SOCIAL_AUTH_DRYCC_AUTHORIZATION_URL: ""
# SOCIAL_AUTH_DRYCC_ACCESS_TOKEN_URL: ""
# SOCIAL_AUTH_DRYCC_ACCESS_API_URL: ""
# SOCIAL_AUTH_DRYCC_USERINFO_URL: ""
# SOCIAL_AUTH_DRYCC_JWKS_URI: ""
# SOCIAL_AUTH_DRYCC_OIDC_ENDPOINT: ""
# SOCIAL_AUTH_DRYCC_KEY: ""
# SOCIAL_AUTH_DRYCC_SECRET: ""
redis:
replicas: 1
global:
# Admin email, used for each component to send email to administrator
email: "drycc@drycc.cc"
# Set the storage backend
#
# Valid values are:
# - s3: Store persistent data in AWS S3 (configure in S3 section)
# - azure: Store persistent data in Azure's object storage
# - gcs: Store persistent data in Google Cloud Storage
# - minio: Store persistent data on in-cluster Minio server
storage: minio
# Set the location of Workflow's PostgreSQL database
#
# Valid values are:
# - on-cluster: Run PostgreSQL within the Kubernetes cluster (credentials are generated
# automatically; backups are sent to object storage
# configured above)
# - off-cluster: Run PostgreSQL outside the Kubernetes cluster (configure in database section)
database_location: "on-cluster"
# Set the location of Workflow's Registry
#
# Valid values are:
# - on-cluster: Run registry within the Kubernetes cluster
# - off-cluster: Use registry outside the Kubernetes cluster (example: dockerhub,self-hosted)
registry_location: "on-cluster"
# The host port to which registry proxy binds to
registry_proxy_port: 5555
# Prefix for the imagepull secret created when using private registry
registry_secret_prefix: "private-registry"
# Role-Based Access Control for Kubernetes >= 1.5
use_rbac: false
# Please check `kubernetes.io/ingress.class`
ingress_class: ""
# A domain name consists of one or more parts.
# Periods (.) are used to separate these parts.
# Each part must be 1 to 63 characters in length and can contain lowercase letters, digits, and hyphens (-).
# It must start and end with a lowercase letter or digit.
cluster_domain: "cluster.local"
# The public resolvable hostname to build your cluster with.
#
# This will be the hostname that is used to build endpoints such as "drycc.$HOSTNAME"
platform_domain: ""
# Whether cert_manager is enabled to automatically generate controller certificates
cert_manager_enabled: "true"
passport_location: "on-cluster"