Skip to content

Commit c9046a4

Browse files
authored
Merge pull request #62 from jianxiaoguo/main
change cert_manager_enabled to boolean type and modify alpinelinux repositories
2 parents 8a6cd0a + 9ebc750 commit c9046a4

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

charts/controller/templates/_helpers.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ env:
142142
{{- end }}
143143
{{- if eq .Values.global.passport_location "on-cluster"}}
144144
- name: "DRYCC_PASSPORT_DOMAIN"
145-
{{- if eq .Values.global.cert_manager_enabled "true" }}
145+
{{- if .Values.global.cert_manager_enabled }}
146146
value: https://drycc-passport.{{ .Values.global.platform_domain }}
147147
{{- else }}
148148
value: http://drycc-passport.{{ .Values.global.platform_domain }}

charts/controller/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,5 +93,5 @@ global:
9393
# This will be the hostname that is used to build endpoints such as "drycc.$HOSTNAME"
9494
platform_domain: ""
9595
# Whether cert_manager is enabled to automatically generate controller certificates
96-
cert_manager_enabled: "true"
96+
cert_manager_enabled: true
9797
passport_location: "on-cluster"

rootfs/Dockerfile.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ENV PGDATA /var/lib/postgresql/12
77

88
ENV PATH="/app/.venv/bin:${PATH}"
99

10-
RUN echo https://dl-cdn.alpinelinux.org/alpine/edge/testing >>/etc/apk/repositories \
10+
RUN echo https://dl-cdn.alpinelinux.org/alpine/edge/main >>/etc/apk/repositories \
1111
&& apk add --update --virtual .build-deps \
1212
gcc \
1313
rust \

0 commit comments

Comments
 (0)