-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathvalues.yaml
More file actions
171 lines (156 loc) · 5.54 KB
/
values.yaml
File metadata and controls
171 lines (156 loc) · 5.54 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
#
# This is the main configuration file for Deis object storage. The values in
# this file are passed into the appropriate services so that they can configure
# themselves for persisting data in object storage.
#
# In general, all object storage credentials must be able to read and write to
# the container or bucket they are configured to use.
#
global:
# 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 logger-specific Redis instance
#
# Valid values are:
# - on-cluster: Run Redis within the Kubernetes cluster
# - off-cluster: Run Redis outside the Kubernetes cluster (configure in loggerRedis section)
logger_redis_location: "on-cluster"
# Set the location of Workflow's influxdb cluster
#
# Valid values are:
# - on-cluster: Run Influxdb within the Kubernetes cluster
# - off-cluster: Influxdb is running outside of the cluster and credentials and connection information will be provided.
influxdb_location: "on-cluster"
# Set the location of Workflow's grafana instance
#
# Valid values are:
# - on-cluster: Run Grafana within the Kubernetes cluster
# - off-cluster: Grafana is running outside of the cluster
grafana_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,quay.io,self-hosted)
# - ecr: Use Amazon's ECR
# - gcr: Use Google's GCR
registry_location: "on-cluster"
# The host port to which registry proxy binds to
host_port: 5555
# Prefix for the imagepull secret created when using private registry
secret_prefix: "private-registry"
s3:
# Your AWS access key. Leave it empty if you want to use IAM credentials.
accesskey: ""
# Your AWS secret key. Leave it empty if you want to use IAM credentials.
secretkey: ""
# Any S3 region
region: "us-west-1"
# Your buckets.
registry_bucket: "your-registry-bucket-name"
database_bucket: "your-database-bucket-name"
builder_bucket: "your-builder-bucket-name"
azure:
accountname: "YOUR ACCOUNT NAME"
accountkey: "YOUR ACCOUNT KEY"
registry_container: "your-registry-container-name"
database_container: "your-database-container-name"
builder_container: "your-builder-container-name"
gcs:
# key_json is expanded into a JSON file on the remote server. It must be
# well-formatted JSON data.
key_json: ''
registry_bucket: "your-registry-bucket-name"
database_bucket: "your-database-bucket-name"
builder_bucket: "your-builder-bucket-name"
swift:
username: "Your OpenStack Swift Username"
password: "Your OpenStack Swift Password"
authurl: "Swift auth URL for obtaining an auth token"
# Your OpenStack tenant name if you are using auth version 2 or 3.
tenant: ""
authversion: "Your OpenStack swift auth version"
registry_container: "your-registry-container-name"
database_container: "your-database-container-name"
builder_container: "your-builder-container-name"
# Set the default (global) way of how Application (your own) images are
# pulled from within the Controller.
# This can be configured per Application as well in the Controller.
#
# This affects pull apps and git push (slugrunner images) apps
#
# Values values are:
# - Always
# - IfNotPresent
controller:
app_pull_policy: "IfNotPresent"
# Possible values are:
# enabled - allows for open registration
# disabled - turns off open registration
# admin_only - allows for registration by an admin only.
registration_mode: "enabled"
database:
# Configure the following ONLY if using an off-cluster PostgreSQL database
postgres:
name: "database name"
username: "database username"
password: "database password"
host: "database host"
port: "database port"
logger:
redis:
# Configure the following ONLY if using an off-cluster Redis instance for logger
db: "0"
host: "redis host"
port: "redis port"
password: "redis password" # "" == no password
monitor:
grafana:
user: "admin"
password: "admin"
# Configure the following ONLY if using an off-cluster Influx database
influxdb:
url: "my.influx.url"
database: "kubernetes"
user: "user"
password: "password"
registry-token-refresher:
# Time in minutes after which the token should be refreshed.
# Leave it empty to use the default provider time.
token_refresh_time: ""
off_cluster_registry:
hostname: ""
organization: ""
username: ""
password: ""
ecr:
# Your AWS access key. Leave it empty if you want to use IAM credentials.
accesskey: ""
# Your AWS secret key. Leave it empty if you want to use IAM credentials.
secretkey: ""
# Any S3 region
region: "us-west-2"
registryid: ""
hostname: ""
gcr:
key_json: 'Paste JSON data here.'
hostname: ""
router:
dhparam: ""
workflow-manager:
versions_api_url: https://versions.deis.com
doctor_api_url: https://doctor.deis.com