Skip to content

Commit

Permalink
make indentation for volumes and volumeMounts consistent with rest of…
Browse files Browse the repository at this point in the history
… values.yaml

Signed-off-by: Nick Gretzon <[email protected]>
  • Loading branch information
npgretz committed Nov 6, 2024
1 parent a278358 commit dba97fc
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions charts/spark-operator-chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,10 @@ controller:

# -- Volumes for controller pods.
volumes:
# Create a tmp directory to write Spark artifacts to for deployed Spark apps.
- name: tmp
emptyDir:
sizeLimit: 1Gi
# Create a tmp directory to write Spark artifacts to for deployed Spark apps.
- name: tmp
emptyDir:
sizeLimit: 1Gi

# -- Node selector for controller pods.
nodeSelector: {}
Expand Down Expand Up @@ -146,10 +146,10 @@ controller:

# -- Volume mounts for controller containers.
volumeMounts:
# Mount a tmp directory to write Spark artifacts to for deployed Spark apps.
- name: tmp
mountPath: "/tmp"
readOnly: false
# Mount a tmp directory to write Spark artifacts to for deployed Spark apps.
- name: tmp
mountPath: "/tmp"
readOnly: false

# -- Pod resource requests and limits for controller containers.
# Note, that each job submission will spawn a JVM within the controller pods using "/usr/local/openjdk-11/bin/java -Xmx128m".
Expand Down Expand Up @@ -262,10 +262,10 @@ webhook:

# -- Volumes for webhook pods.
volumes:
# Create a dir for the webhook to generate its certificates in.
- name: serving-certs
emptyDir:
sizeLimit: 500Mi
# Create a dir for the webhook to generate its certificates in.
- name: serving-certs
emptyDir:
sizeLimit: 500Mi

# -- Node selector for webhook pods.
nodeSelector: {}
Expand Down Expand Up @@ -302,11 +302,11 @@ webhook:

# -- Volume mounts for webhook containers.
volumeMounts:
# Mount a dir for the webhook to generate its certificates in.
- name: serving-certs
mountPath: /etc/k8s-webhook-server/serving-certs
subPath: serving-certs
readOnly: false
# Mount a dir for the webhook to generate its certificates in.
- name: serving-certs
mountPath: /etc/k8s-webhook-server/serving-certs
subPath: serving-certs
readOnly: false


# -- Pod resource requests and limits for webhook pods.
Expand Down

0 comments on commit dba97fc

Please sign in to comment.