-
Notifications
You must be signed in to change notification settings - Fork 211
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
Issue 551: allow helm imagePullSecrets on post-install hook #554
base: master
Are you sure you want to change the base?
Changes from all commits
90b6eb2
8098328
ea48b8c
fbb7e87
c95d708
de6d003
fe02e09
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
replicas: 3 | ||
maxUnavailableReplicas: | ||
|
||
global: | ||
# Lists the secrets you need to use to pull zookeeper image from a private registry. | ||
imagePullSecrets: [] | ||
# - private-registry-key | ||
|
||
image: | ||
repository: pravega/zookeeper | ||
tag: 0.2.15 | ||
|
@@ -10,6 +15,11 @@ triggerRollingRestart: false | |
|
||
domainName: | ||
labels: {} | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Below code block is not required looks like, service account is mentioned at line no:56 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It is. It's used here: And in line with the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. referring zookeeper/values.yaml not the zookeeper-operator There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Line 56 here has |
||
serviceAccount: {} | ||
## Optionally specify an array of imagePullSecrets. Will override the global parameter if set | ||
# imagePullSecrets: | ||
|
||
ports: [] | ||
# - containerPort: 2181 | ||
# name: client | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This would constitute a breaking change. Do we have grounds for it?
The schema for
.Values.pod.imagePullSecrets
seems to require an array of key-value pairs, while proposed schema for.Values.global.imagePullSecrets
seems to an array of strings.