-
Notifications
You must be signed in to change notification settings - Fork 46
Docker plain helm chart #1035
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
base: master
Are you sure you want to change the base?
Docker plain helm chart #1035
Changes from 2 commits
429158a
a8df74d
55df77c
abcd6c1
8be1e7a
5fb6f7e
3dc157b
ed3b160
f83dba3
1d7229d
543e5e2
e48a729
3c9e765
0658683
0b541a8
d6d7121
b97f813
8b87c2c
b2452c0
6148c67
2b4a064
9b6e866
37271df
b64fd82
4b74140
6cd786f
1d9ff9c
865c738
be71448
f445e25
00ceccd
4485450
818e13f
6bf18ed
11871d4
a4c338a
e3e6552
167397b
fe5fa7f
6c58ed7
5161996
6709b68
da0af77
d1f9713
a7b1cab
b9c0a1a
2c453cc
74046fb
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 |
|---|---|---|
|
|
@@ -5,6 +5,7 @@ | |
|
|
||
| ## The number of replicas to deploy. | ||
| ## For high availability use more than 1 replica | ||
| ## Before enabling check the official ODS documentation about replicate support: https://www.opendevstack.org/ods-documentation/opendevstack/latest/jenkins-shared-library/orchestration-pipeline.html#_known_limitations | ||
| replicaCount: 1 | ||
|
|
||
| imagePullSecrets: [] | ||
|
|
@@ -111,6 +112,7 @@ resources: | |
| memory: 16Mi | ||
| ephemeral-storage: 1Mi | ||
|
|
||
| ## Before enabling check the official ODS documentation about replicate support: https://www.opendevstack.org/ods-documentation/opendevstack/latest/jenkins-shared-library/orchestration-pipeline.html#_known_limitations | ||
|
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. Good idea to link to the official docs, but it's not enough, since many people will miss it. Please, make the warning explicit: multiple replicas aren't currently supported by the orchestration pipeline. 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. @jafarre-bi we agreed on this in July and I've been waiting for the official doc to reference since then. Those values will get templated and there's no way to keep this information up-to-date then. the reference will stay valid longer. |
||
| autoscaling: | ||
| enabled: false | ||
| minReplicas: 1 | ||
|
|
||
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.
It should be explicit that it must match
.Release.Name. Otherwise, it will still be inconsistent with the selector used elsewhere.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.
@jafarre-bi we're supplying the same releaseName to helm upgrade (via helmReleaseName) as we use in the selector. .Release.Name is given by releaseName, we specify the selector. What inconsistency are you referring to?