-
Notifications
You must be signed in to change notification settings - Fork 27
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
chore: Helm chart reconfiguration #408
base: main
Are you sure you want to change the base?
Changes from all commits
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,4 +1,4 @@ | ||
wadm: | ||
config: | ||
config: | ||
wadm: | ||
nats: | ||
server: "nats.default.svc.cluster.local:4222" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
wadm: | ||
config: | ||
# replicas represents the number of copies of wadm to run | ||
replicas: 1 | ||
# image represents the image and tag for running wadm | ||
|
@@ -7,7 +7,7 @@ wadm: | |
pullPolicy: IfNotPresent | ||
# Overrides the image tag whose default is the chart appVersion. | ||
tag: "" | ||
config: | ||
wadm: | ||
apiPrefix: "" | ||
streamPrefix: "" | ||
cleanupInterval: "" | ||
|
@@ -48,7 +48,8 @@ serviceAccount: | |
podAnnotations: {} | ||
podLabels: {} | ||
|
||
podSecurityContext: {} | ||
podSecurityContext: | ||
{} | ||
# fsGroup: 1000 | ||
|
||
securityContext: | ||
|
@@ -62,8 +63,8 @@ securityContext: | |
seccompProfile: | ||
type: "RuntimeDefault" | ||
|
||
|
||
resources: {} | ||
resources: | ||
{} | ||
Comment on lines
+66
to
+67
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. Would you mind reverting this so it's in line with the rest of the map-based entries? 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. no problem. heads up this is literally the output from yaml linter 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. Fair enough, it looks like it doesn't touch these values when they are grouped next to other values, so maybe it's worth pulling them up into a group above? Strange behavior on the linter's part to be honest, but what can you do 🙂 |
||
# We usually recommend not to specify default resources and to leave this as a conscious | ||
# choice for the user. This also increases chances charts run on environments with little | ||
# resources, such as Minikube. If you do want to specify resources, uncomment the following | ||
|
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.
Would you mind reverting this so it's in line with the rest of the map-based entries?
Or alternatively would you mind going ahead and changing the rest of the empty map entries to match this style?
I'm not sure which format should be preferred to be honest, though Helm defaults to
podSecurityContext: {}
over this