Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
philipp94831 committed May 14, 2024
1 parent 98ac1ca commit 87045df
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion charts/producer-app-cleanup-job/templates/job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ spec:
volumeMounts:
{{- range $key, $value := .Values.files }}
- name: config
mountPath: {{ $value.mountPath | quote }}
mountPath: {{ printf "%s/%s" $value.mountPath $key | quote }}
subPath: {{ $key | quote }}
{{- end }}
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/producer-app/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Alternatively, a YAML file that specifies the values for the parameters can be p
| `env` | Custom environment variables | `{}` |
| `secrets` | Custom secret environment variables. Prefix with `configurationEnvPrefix` in order to pass secrets to command line or prefix with `STREAMS_` to pass secrets to Kafka Streams configuration. E.g., `APP_MY_PARAM` would be passed as `--my-param` and `STREAMS_MAX_POLL_TIMEOUT_MS` would be translated to `max.poll.timeout.ms`. | `{}` |
| `secretRefs` | Inject existing secrets as environment variables. Map key is used as environment variable name. Value consists of secret `name` and `key`. | `{}` |
| `files` | Map of files to mount for the app. Key is used as key in configmap. `mountPath` and `content` are required (recommended to be used with `--set-file`). | `{}` |
| `files` | Map of files to mount for the app. File will be mounted as `$value.mountPath/$key`. `$value.content` are required (recommended to be used with `--set-file`). | `{}` |

### JVM

Expand Down
2 changes: 1 addition & 1 deletion charts/producer-app/templates/pod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ spec:
volumeMounts:
{{- range $key, $value := .Values.files }}
- name: config
mountPath: {{ $value.mountPath | quote }}
mountPath: {{ printf "%s/%s" $value.mountPath $key | quote }}
subPath: {{ $key | quote }}
{{- end }}
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/streams-app-cleanup-job/templates/job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ spec:
volumeMounts:
{{- range $key, $value := .Values.files }}
- name: config
mountPath: {{ $value.mountPath | quote }}
mountPath: {{ printf "%s/%s" $value.mountPath $key | quote }}
subPath: {{ $key | quote }}
{{- end }}
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/streams-app/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Alternatively, a YAML file that specifies the values for the parameters can be p
| `env` | Custom environment variables | `{}` |
| `secrets` | Custom secret environment variables. Prefix with `configurationEnvPrefix` in order to pass secrets to command line or prefix with `STREAMS_` to pass secrets to Kafka Streams configuration. E.g., `APP_MY_PARAM` would be passed as `--my-param` and `STREAMS_MAX_POLL_TIMEOUT_MS` would be translated to `max.poll.timeout.ms`. | `{}` |
| `secretRefs` | Inject existing secrets as environment variables. Map key is used as environment variable name. Value consists of secret `name` and `key`. | `{}` |
| `files` | Map of files to mount for the app. Key is used as key in configmap. `mountPath` and `content` are required (recommended to be used with `--set-file`). | `{}` |
| `files` | Map of files to mount for the app. File will be mounted as `$value.mountPath/$key`. `$value.content` are required (recommended to be used with `--set-file`). | `{}` |

### JMX Configuration

Expand Down
2 changes: 1 addition & 1 deletion charts/streams-app/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ spec:
volumeMounts:
{{- range $key, $value := .Values.files }}
- name: config
mountPath: {{ $value.mountPath | quote }}
mountPath: {{ printf "%s/%s" $value.mountPath $key | quote }}
subPath: {{ $key | quote }}
{{- end }}
{{- if and .Values.persistence.enabled .Values.statefulSet }}
Expand Down

0 comments on commit 87045df

Please sign in to comment.