Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pr: modify the image address of busybox #93

Merged
merged 5 commits into from
Jul 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions charts/goinception/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v2
appVersion: "1.0"
description: 一个集审核、执行、备份及生成回滚语句于一身的MySQL运维工具
description: 一个集审核、执行、备份及生成回滚语句于一身的MySQL运维工具
name: goinception
version: 0.3.0
version: 0.3.1
home: https://github.com/hanchuanchuan/goInception
maintainers:
- name: LeoQuote
Expand Down
3 changes: 2 additions & 1 deletion charts/goinception/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ spec:
spec:
initContainers:
- name: override-configs
image: busybox:1.28
image: "{{ .Values.overrideConfigs.image.repository }}:{{ .Values.overrideConfigs.image.tag }}"
imagePullPolicy: {{ .Values.overrideConfigs.image.pullPolicy }}
{{- with .Values.initEnv }}
env:
{{- toYaml . | nindent 12 }}
Expand Down
6 changes: 6 additions & 0 deletions charts/goinception/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ image:
tag: latest
pullPolicy: IfNotPresent

overrideConfigs:
image:
repository: busybox
tag: 1.28
pullPolicy: IfNotPresent

nameOverride: ""
fullnameOverride: ""

Expand Down
Loading