Skip to content

Commit 5beb96b

Browse files
committed
chore(workflow): canonical charts naming
1 parent 85cbd16 commit 5beb96b

20 files changed

Lines changed: 140 additions & 140 deletions

_scripts/install.sh

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -215,12 +215,12 @@ EOF
215215
fi
216216
helm install drycc drycc/workflow \
217217
--set builder.service.type=LoadBalancer \
218-
--set global.cluster_domain="cluster.local" \
219-
--set global.platform_domain="${PLATFORM_DOMAIN}" \
220-
--set global.cert_manager_enabled=${CERT_MANAGER_ENABLED:-true} \
221-
--set global.ingress_class=traefik \
222-
--set fluentd.daemon_environment.CONTAINER_TAIL_PARSER_TYPE="/^(?<time>.+) (?<stream>stdout|stderr)( (?<tags>.))? (?<log>.*)$/" \
223-
--set controller.app_storage_class=${CONTROLLER_APP_STORAGE_CLASS:-"openebs-kernel-nfs"} \
218+
--set global.clusterDomain="cluster.local" \
219+
--set global.platformDomain="${PLATFORM_DOMAIN}" \
220+
--set global.certManagerEnabled=${CERT_MANAGER_ENABLED:-true} \
221+
--set global.ingressClass=traefik \
222+
--set fluentd.daemonEnvironment.CONTAINER_TAIL_PARSER_TYPE="/^(?<time>.+) (?<stream>stdout|stderr)( (?<tags>.))? (?<log>.*)$/" \
223+
--set controller.appStorageClass=${CONTROLLER_APP_STORAGE_CLASS:-"openebs-kernel-nfs"} \
224224
--set minio.persistence.enabled=true \
225225
--set minio.persistence.size=${MINIO_PERSISTENCE_SIZE:-20Gi} \
226226
--set minio.persistence.storageClass=${MINIO_PERSISTENCE_STORAGE_CLASS:-""} \
@@ -235,8 +235,8 @@ EOF
235235
--set monitor.grafana.persistence.enabled=true \
236236
--set monitor.grafana.persistence.size=${MONITOR_GRAFANA_PERSISTENCE_SIZE:-5Gi} \
237237
--set monitor.grafana.storageClass=${MONITOR_GRAFANA_PERSISTENCE_STORAGE_CLASS:-""} \
238-
--set passport.admin_username=${DRYCC_ADMIN_USERNAME} \
239-
--set passport.admin_password=${DRYCC_ADMIN_PASSWORD} \
238+
--set passport.adminUsername=${DRYCC_ADMIN_USERNAME} \
239+
--set passport.adminPassword=${DRYCC_ADMIN_PASSWORD} \
240240
--namespace drycc \
241241
--values /tmp/drycc-values.yaml \
242242
--create-namespace --wait --timeout 30m0s
@@ -256,12 +256,12 @@ function install_helmbroker {
256256
echo -e "\\033[32m---> Start installing helmbroker...\\033[0m"
257257

258258
helm install helmbroker drycc/helmbroker \
259-
--set ingress_class="traefik" \
260-
--set platform_domain="cluster.local" \
259+
--set ingressClass="traefik" \
260+
--set platformDomain="cluster.local" \
261261
--set persistence.size=${HELMBROKER_PERSISTENCE_SIZE:-5Gi} \
262262
--set persistence.storageClass=${HELMBROKER_PERSISTENCE_STORAGE_CLASS:-"openebs-kernel-nfs"} \
263-
--set platform_domain=${PLATFORM_DOMAIN} \
264-
--set cert_manager_enabled=${CERT_MANAGER_ENABLED:-true} \
263+
--set platformDomain=${PLATFORM_DOMAIN} \
264+
--set certManagerEnabled=${CERT_MANAGER_ENABLED:-true} \
265265
--set username=${HELMBROKER_USERNAME} \
266266
--set password=${HELMBROKER_PASSWORD} \
267267
--set environment.HELMBROKER_CELERY_BROKER="amqp://${RABBITMQ_USERNAME}:${RABBITMQ_PASSWORD}@drycc-rabbitmq-0.drycc-rabbitmq.drycc.svc.cluster.local:5672/drycc" \

charts/workflow/templates/drycc-cluster-issuer.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ spec:
1616
solvers:
1717
- http01:
1818
ingress:
19-
class: "{{ .Values.global.ingress_class }}"
19+
class: "{{ .Values.global.ingressClass }}"

charts/workflow/templates/objectstorage-secret.yaml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -11,36 +11,36 @@ data:
1111
{{ if eq .Values.global.storage "gcs"}}
1212
accesskey: {{.Values.gcs.accesskey | b64enc }}
1313
secretkey: {{ .Values.gcs.secretkey | b64enc }}
14-
key.json: {{.Values.gcs.key_json}}
14+
key.json: {{.Values.gcs.keyJson}}
1515
projectid: {{ .Values.gcs.projectid | b64enc }}
16-
builder-bucket: {{.Values.gcs.builder_bucket | b64enc }}
17-
registry-bucket: {{.Values.gcs.registry_bucket | b64enc }}
18-
database-bucket: {{.Values.gcs.database_bucket | b64enc }}
16+
builder-bucket: {{.Values.gcs.builderBucket | b64enc }}
17+
registry-bucket: {{.Values.gcs.registryBucket | b64enc }}
18+
database-bucket: {{.Values.gcs.databaseBucket | b64enc }}
1919
{{ else if eq .Values.global.storage "azure"}}
2020
accesskey: {{.Values.azure.accesskey | b64enc }}
2121
secretkey: {{ .Values.azure.secretkey | b64enc }}
2222
endpoint: {{ .Values.azure.endpoint | b64enc }}
23-
builder-bucket: {{ .Values.azure.builder_bucket | b64enc }}
24-
registry-bucket: {{ .Values.azure.registry_bucket | b64enc }}
25-
database-bucket: {{ .Values.azure.database_bucket | b64enc }}
23+
builder-bucket: {{ .Values.azure.builderBucket | b64enc }}
24+
registry-bucket: {{ .Values.azure.registryBucket | b64enc }}
25+
database-bucket: {{ .Values.azure.databaseBucket | b64enc }}
2626
{{ else if eq .Values.global.storage "s3"}}
2727
accesskey: {{ .Values.s3.accesskey | b64enc }}
2828
secretkey: {{ .Values.s3.secretkey | b64enc }}
2929
endpoint: {{ .Values.s3.endpoint | b64enc }}
30-
builder-bucket: {{ .Values.s3.builder_bucket | b64enc }}
31-
registry-bucket: {{.Values.s3.registry_bucket | b64enc }}
32-
database-bucket: {{.Values.s3.database_bucket | b64enc }}
30+
builder-bucket: {{ .Values.s3.builderBucket | b64enc }}
31+
registry-bucket: {{.Values.s3.registryBucket | b64enc }}
32+
database-bucket: {{.Values.s3.databaseBucket | b64enc }}
3333
{{ else if eq .Values.global.storage "oss"}}
3434
accesskey: {{ .Values.oss.accesskey | b64enc }}
3535
secretkey: {{ .Values.oss.secretkey | b64enc }}
3636
endpoint: {{ .Values.oss.endpoint | b64enc }}
37-
builder-bucket: {{ .Values.oss.builder_bucket | b64enc }}
38-
registry-bucket: {{.Values.oss.registry_bucket | b64enc }}
39-
database-bucket: {{.Values.oss.database_bucket | b64enc }}
37+
builder-bucket: {{ .Values.oss.builderBucket | b64enc }}
38+
registry-bucket: {{.Values.oss.registryBucket | b64enc }}
39+
database-bucket: {{.Values.oss.databaseBucket | b64enc }}
4040
{{else if eq .Values.global.storage "minio"}}
4141
accesskey: {{ .Values.minio.accesskey | b64enc }}
4242
secretkey: {{ .Values.minio.secretkey | b64enc }}
43-
builder-bucket: {{ .Values.minio.builder_bucket | b64enc }}
44-
registry-bucket: {{.Values.minio.registry_bucket | b64enc }}
45-
database-bucket: {{.Values.minio.database_bucket | b64enc }}
43+
builder-bucket: {{ .Values.minio.builderBucket | b64enc }}
44+
registry-bucket: {{.Values.minio.registryBucket | b64enc }}
45+
database-bucket: {{.Values.minio.databaseBucket | b64enc }}
4646
{{ end }}

charts/workflow/templates/registry-secret.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
{{- if ne .Values.global.registry_location "on-cluster" }}
1+
{{- if ne .Values.global.registryLocation "on-cluster" }}
22
apiVersion: v1
33
kind: Secret
44
metadata:
55
name: registry-secret
66
labels:
77
heritage: drycc
88
annotations:
9-
drycc.cc/registry-location: "{{ .Values.global.registry_location }}"
9+
drycc.cc/registry-location: "{{ .Values.global.registryLocation }}"
1010
type: Opaque
1111
data:
1212
hostname: {{ .Values.registry.hostname | b64enc }}

charts/workflow/values.yaml

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -20,42 +20,42 @@ global:
2020
# automatically; backups are sent to object storage
2121
# configured above)
2222
# - off-cluster: Run PostgreSQL outside the Kubernetes cluster (configure in database section)
23-
database_location: "on-cluster"
23+
databaseLocation: "on-cluster"
2424

2525
# Set the location of Workflow's Redis instance
2626
#
2727
# Valid values are:
2828
# - on-cluster: Run Redis within the Kubernetes cluster
2929
# - off-cluster: Run Redis outside the Kubernetes cluster (configure in redis section)
30-
redis_location: "on-cluster"
30+
redisLocation: "on-cluster"
3131
# Set the location of Workflow's rabbitmq instance
3232
# Valid values are:
3333
# - on-cluster: Run Rabbitmq within the Kubernetes cluster
3434
# - off-cluster: Run Rabbitmq outside the Kubernetes cluster (configure in controller section)
35-
rabbitmq_location: "on-cluster"
35+
rabbitmqLocation: "on-cluster"
3636
# Set the location of Workflow's influxdb cluster
3737
#
3838
# Valid values are:
3939
# - on-cluster: Run Influxdb within the Kubernetes cluster
4040
# - off-cluster: Influxdb is running outside of the cluster and credentials and connection information will be provided.
41-
influxdb_location: "on-cluster"
41+
influxdbLocation: "on-cluster"
4242
# Set the location of Workflow's grafana instance
4343
#
4444
# Valid values are:
4545
# - on-cluster: Run Grafana within the Kubernetes cluster
4646
# - off-cluster: Grafana is running outside of the cluster
47-
grafana_location: "on-cluster"
47+
grafanaLocation: "on-cluster"
4848

4949
# Set the location of Workflow's Registry
5050
#
5151
# Valid values are:
5252
# - on-cluster: Run registry within the Kubernetes cluster
5353
# - off-cluster: Use registry outside the Kubernetes cluster (example: dockerhub,quay.io,self-hosted)
54-
registry_location: "on-cluster"
54+
registryLocation: "on-cluster"
5555
# Prefix for the imagepull secret created when using private registry
56-
registry_secret_prefix: "private-registry"
56+
registrySecretPrefix: "private-registry"
5757
# The host port to which registry proxy binds to
58-
registry_proxy_port: 5555
58+
registryProxyPort: 5555
5959
# If the Kubernetes cluster uses CNI
6060
# use_cni: true
6161
# Set the `listen` variable for registry-proxy's NGINX
@@ -72,31 +72,31 @@ global:
7272
# Valid values are:
7373
# - true: all RBAC-related manifests will be installed (in case your cluster supports RBAC)
7474
# - false: no RBAC-related manifests will be installed
75-
use_rbac: true
75+
rbac: true
7676
# Please check `kubernetes.io/ingress.class`
7777
# The cert-manager component must be installed
7878
# If you want to use HTTPSEnforced or allowlist functions, you must specify:
7979
# - nginx
8080
# - traefik
8181
# Only the above options have been supported so far
82-
ingress_class: ""
82+
ingressClass: ""
8383
# A domain name consists of one or more parts.
8484
# Periods (.) are used to separate these parts.
8585
# Each part must be 1 to 63 characters in length and can contain lowercase letters, digits, and hyphens (-).
8686
# It must start and end with a lowercase letter or digit.
87-
cluster_domain: "cluster.local"
87+
clusterDomain: "cluster.local"
8888
# The publicly resolvable hostname to build your cluster with.
8989
#
9090
# This will be the hostname that is used to build endpoints such as "drycc.$HOSTNAME"
91-
platform_domain: ""
91+
platformDomain: ""
9292
# Whether cert_manager is enabled to automatically generate drycc certificates
93-
cert_manager_enabled: true
93+
certManagerEnabled: true
9494
# Set the location of Workflow's passport
9595
#
9696
# Valid values are:
9797
# - on-cluster: Run passport within the Kubernetes cluster
9898
# - off-cluster: Use passport outside the Kubernetes cluster
99-
passport_location: "on-cluster"
99+
passportLocation: "on-cluster"
100100

101101
s3:
102102
# Your AWS access key. Leave it empty if you want to use IAM credentials.
@@ -106,43 +106,43 @@ s3:
106106
# Any S3 region
107107
endpoint: "your-s3-endpoint"
108108
# Your buckets.
109-
builder_bucket: "your-builder-bucket-name"
110-
registry_bucket: "your-registry-bucket-name"
111-
database_bucket: "your-database-bucket-name"
109+
builderBucket: "your-builder-bucket-name"
110+
registryBucket: "your-registry-bucket-name"
111+
databaseBucket: "your-database-bucket-name"
112112

113113
oss:
114114
accesskey: ""
115115
secretkey: ""
116116
endpoint: "your-oos-endpoint"
117-
builder_bucket: "your-builder-bucket-name"
118-
registry_bucket: "your-registry-bucket-name"
119-
database_bucket: "your-database-bucket-name"
117+
builderBucket: "your-builder-bucket-name"
118+
registryBucket: "your-registry-bucket-name"
119+
databaseBucket: "your-database-bucket-name"
120120

121121
azure:
122122
accesskey: "YOUR ACCOUNT NAME"
123123
secretkey: "YOUR ACCOUNT KEY"
124124
endpoint: "your-azure-endpoint"
125-
builder_bucket: "your-builder-container-name"
126-
registry_bucket: "your-registry-container-name"
127-
database_bucket: "your-database-container-name"
125+
builderBucket: "your-builder-container-name"
126+
registryBucket: "your-registry-container-name"
127+
databaseBucket: "your-database-container-name"
128128

129129
gcs:
130-
# key_json is expanded into a JSON file on the remote server. It must be
130+
# keyJson is expanded into a JSON file on the remote server. It must be
131131
# well-formatted JSON data.
132132
accesskey: "your accessKey for minio gateway"
133133
secretkey: "your secretkey for minio gateway"
134-
key_json: <base64-encoded JSON data>
134+
keyJson: <base64-encoded JSON data>
135135
projectid: "your-gcs-projectid"
136-
builder_bucket: "your-builder-bucket-name"
137-
registry_bucket: "your-registry-bucket-name"
138-
database_bucket: "your-database-bucket-name"
136+
builderBucket: "your-builder-bucket-name"
137+
registryBucket: "your-registry-bucket-name"
138+
databaseBucket: "your-database-bucket-name"
139139

140140
minio:
141141
accesskey: "8TZRY2JRWMPT6UMXR6I5"
142142
secretkey: "gbstrOvotMMcg2sMfGUhA5a6Et/EI5ALtIHsobYk"
143-
builder_bucket: "0fad60517a9e4225a07d77d7b9b58629"
144-
registry_bucket: "c2da53f11c7a455db35797c3ba625d80"
145-
database_bucket: "e95eb5c54c3a4047abe5269a68fa9a67"
143+
builderBucket: "0fad60517a9e4225a07d77d7b9b58629"
144+
registryBucket: "c2da53f11c7a455db35797c3ba625d80"
145+
databaseBucket: "e95eb5c54c3a4047abe5269a68fa9a67"
146146
# Configure the following ONLY if you want persistence for on-cluster minio
147147
persistence:
148148
enabled: false # Set to true to enable persistence
@@ -181,23 +181,23 @@ passport:
181181
# Set passport deployment replicas
182182
replicas: 1
183183
# Configuring this will no longer use the built-in database component
184-
database_url: ""
184+
databaseUrl: ""
185185

186186
controller:
187-
app_image_pull_policy: "IfNotPresent"
187+
appImagePullPolicy: "IfNotPresent"
188188
# Possible values are:
189189
# enabled - allows for open registration
190190
# disabled - turns off open registration
191191
# admin_only - allows for registration by an admin only.
192-
registration_mode: "admin_only"
192+
registrationMode: "admin_only"
193193
# Set storageClassName, It is used for application mount.
194-
app_storage_class: ""
194+
appStorageClass: ""
195195
# Set controller deployment replicas
196196
replicas: 1
197197
# Set celery replicas
198-
celery_replicas: 1
198+
celeryReplicas: 1
199199
# Configuring this will no longer use the built-in database component
200-
database_url: ""
200+
databaseUrl: ""
201201

202202
database:
203203
# The username and password to be used by the on-cluster database.

src/applications/deploying-apps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ It is possible to configure a few of the [globally tunable](../applications/mana
6060

6161
Setting | Description
6262
----------------------------------------------- | ---------------------------------
63-
DRYCC_DISABLE_CACHE | if set, this will disable the [slugbuilder cache][] (default: not set)
63+
DRYCC_DISABLE_CACHE | if set, this will disable the [imagebuilder cache][] (default: not set)
6464
DRYCC_DEPLOY_BATCHES | the number of pods to bring up and take down sequentially during a scale (default: number of available nodes)
6565
DRYCC_DEPLOY_TIMEOUT | deploy timeout in seconds per deploy batch (default: 120)
6666
IMAGE_PULL_POLICY | the kubernetes [image pull policy][pull-policy] for application images (default: "IfNotPresent") (allowed values: "Always", "IfNotPresent")

src/applications/managing-app-volumes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
We can use the blow command to create volumes and mount the created volumes.
44
Drycc create volume support [ReadWriteMany](https://kubernetes.io/docs/concepts/storage/persistent-volumes/#access-modes), so before deploying drycc, you need to have a StorageClass ready which can support ReadWriteMany.
5-
Deploying drycc, set controller.app_storage_class to this StorageClass.
5+
Deploying drycc, set controller.appStorageClass to this StorageClass.
66

77

88
Use `drycc volumes` to mount a volume for a deployed application's processes.

src/changelogs/v1.1.0.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@
3737
- [`62a9b7d`](https://api.github.com/repos/drycc/builder/git/trees/62a9b7de4e61bc5b47d150838069b5d6ab35411b) (builder) - workflow: change experimental_native_ingress to use_native_ingress
3838
- [`39e9cec`](https://api.github.com/repos/drycc/builder/git/trees/39e9cec79cbd6108322eed201ecfddaa8081f49e) (builder) - ingress: renmae use_native_ingress to use_ingress
3939
- [`7fa8134`](https://api.github.com/repos/drycc/builder/git/trees/7fa81340df8cf31502e546da8becb95192760ff0) (builder) - ingress: change global.use_ingress to ingress.enabled
40-
- [`e245c31`](https://api.github.com/repos/drycc/builder/git/trees/e245c31aa20af4f0883e95ecd2f21b9cebe485c4) (builder) - ingress: use ingress_class
40+
- [`e245c31`](https://api.github.com/repos/drycc/builder/git/trees/e245c31aa20af4f0883e95ecd2f21b9cebe485c4) (builder) - ingress: use ingressClass
4141
- [`18b330d`](https://api.github.com/repos/drycc/builder/git/trees/18b330d9c8cab13966b7dd46a7888add435b3c0e) (builder) - service: no longer dependent on ingress switches
4242
- [`95f4d3d`](https://api.github.com/repos/drycc/controller/git/trees/95f4d3de1cb61a35997037f0e620ddd365954e87) (controller) - django: upgrade to django version 1.11.20 latest patch
4343
- [`6bcd79b`](https://api.github.com/repos/drycc/controller/git/trees/6bcd79b82ddee66ca08f84a9022853b6367f5d8e) (controller) - workflow: change experimental_native_ingress to use_native_ingress
4444
- [`781229a`](https://api.github.com/repos/drycc/controller/git/trees/781229a050322e137f5938549411b72b41eb38b8) (controller) - ingress: renmae use_native_ingress to use_ingress
4545
- [`b96b4db`](https://api.github.com/repos/drycc/controller/git/trees/b96b4dbf4abacbb5977df41d69b46785f03cda85) (controller) - ingress: change global.use_ingress to ingress.enabled
46-
- [`e1b124f`](https://api.github.com/repos/drycc/controller/git/trees/e1b124f3e5b7613a2ff8a42ebfc9e00a3db6b4fc) (controller) - ingress: use ingress_class
46+
- [`e1b124f`](https://api.github.com/repos/drycc/controller/git/trees/e1b124f3e5b7613a2ff8a42ebfc9e00a3db6b4fc) (controller) - ingress: use ingressClass
4747
- [`fee0554`](https://api.github.com/repos/drycc/controller/git/trees/fee05541fdfc00bfdd9747f9f24f0aa8a2b3e392) (controller) - ingress: delete ingress judgment
4848
- [`5cd10f3`](https://api.github.com/repos/drycc/controller/git/trees/5cd10f3318fd4515e7e675422077f4e16a563d25) (controller) - ingress: Ingress_class can be empty
4949
- [`fa312bb`](https://api.github.com/repos/drycc/postgres/git/trees/fa312bb7f57f5f8638484bc4d9825aa962031a25) (database) - postgres: set max_connections = 1024

src/changelogs/v1.2.0.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@
2525
- [`ff7a16f`](https://api.github.com/repos/drycc/builder/git/trees/ff7a16f53ac78dac0c334a9718cdc76c65400732) (builder) - registry: remove ecr and gcr registry
2626
- [`ad13683`](https://api.github.com/repos/drycc/builder/git/trees/ad13683ce634c9b4835f45d2b474bac16ca52baa) (builder) - builder: change DRYCC_BUILD_TYPE to DRYCC_STACK
2727
- [`6def637`](https://api.github.com/repos/drycc/builder/git/trees/6def637d5331330940d0a94cf6313a4bcb67fec0) (builder) - registry: rename DRYCC_REGISTRY_SERVICE to DRYCC_REGISTRY_PROXY
28-
- [`5044e22`](https://api.github.com/repos/drycc/builder/git/trees/5044e223a56ee6283ac8d68a1442a6430b18dd99) (builder) - registry: remove registry_secret_prefix
28+
- [`5044e22`](https://api.github.com/repos/drycc/builder/git/trees/5044e223a56ee6283ac8d68a1442a6430b18dd99) (builder) - registry: remove registrySecretPrefix
2929
- [`2ea39cc`](https://api.github.com/repos/drycc/builder/git/trees/2ea39cc0a9dd68fa1baca4b3725a00b9bcf7f89a) (builder) - controller-go-sdk: upgrade controller-go-sdk
3030
- [`6aee0d7`](https://api.github.com/repos/drycc/builder/git/trees/6aee0d7f092b53c37c70d05db076eaae1bbcff44) (builder) - registry: optimizing variable naming
3131
- [`f9c62d9`](https://api.github.com/repos/drycc/controller/git/trees/f9c62d9db809bfe03af33092e71a16e56fc35483) (controller) - domain: added reserved domain check
3232
- [`f5a135b`](https://api.github.com/repos/drycc/controller/git/trees/f5a135be6aa2b319e623fd59bb711705d1cfe13f) (controller) - migrations: clean old migrations
3333
- [`4369b2c`](https://api.github.com/repos/drycc/controller/git/trees/4369b2c2fb6ef861978588a61efa1bfc6a4572ec) (controller) - registry: rename DRYCC_REGISTRY_SERVICE to DRYCC_REGISTRY_PROXY
34-
- [`1057ca5`](https://api.github.com/repos/drycc/controller/git/trees/1057ca59c3ae6bbd85d772f6b49b0c542d7d18c4) (controller) - registry: remove registry_secret_prefix
34+
- [`1057ca5`](https://api.github.com/repos/drycc/controller/git/trees/1057ca59c3ae6bbd85d772f6b49b0c542d7d18c4) (controller) - registry: remove registrySecretPrefix
3535
- [`d114b3e`](https://api.github.com/repos/drycc/controller/git/trees/d114b3e93544624a5f01b1ca71db92d0b33f4e0d) (controller) - docker: update docker client
3636
- [`edbe963`](https://api.github.com/repos/drycc/imagebuilder/git/trees/edbe9631dcfb34ed50d9e931d36506fa262b6299) (imagebuilder) - dockerfile: change base image to alpine
3737
- [`fb35baf`](https://api.github.com/repos/drycc/imagebuilder/git/trees/fb35baf913ff846e08ba79d9ad8195fca1411684) (imagebuilder) - registry: rename DRYCC_REGISTRY_SERVICE to DRYCC_REGISTRY_PROXY

0 commit comments

Comments
 (0)