Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
mbjtrifork committed Aug 8, 2023
1 parent dd50714 commit 7f3902f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion charts/flink-job/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,12 @@ Read more about Flink and highly available job-managers [here](https://nightlies
| internalSsl.volumeMounts[0].name | string | `"truststore"` | |
| internalSsl.volumeMounts[0].readOnly | bool | `false` | |
| internalSsl.configuration.keystore | string | `"/flinkkeystore/internal.keystore"` | |
| internalSsl.configuration.keystore-password | string | `"internal_store_password"` | |
| internalSsl.configuration.keystorePassword | string | `"internal_store_password"` | |
| internalSsl.podVolumes[0].name | string | `"truststore"` | |
| internalSsl.podVolumes[0].emptyDir | object | `{}` | |
| internalSsl.podVolumeMounts[0].mountPath | string | `"/flinkkeystore"` | |
| internalSsl.podVolumeMounts[0].name | string | `"truststore"` | |
| internalSsl.podVolumeMounts[0].readOnly | bool | `true` | |
| flinkConfiguration | object | (see values.yaml) | Flink configuration For more configuration options, see here: <https://nightlies.apache.org/flink/flink-docs-master/docs/deployment/config/> For specific metrics configuration, see here: <https://nightlies.apache.org/flink/flink-docs-master/docs/deployment/metric_reporters/> |
| restartNonce | int | `0` | change this to force a restart of the job, see <https://nightlies.apache.org/flink/flink-kubernetes-operator-docs-main/docs/custom-resource/job-management/> for more info |
| logConfiguration | object | `{"log4j-console.properties":"rootLogger.level = WARN\nrootLogger.appenderRef.console.ref = ConsoleAppender\n\n# Log all infos to the console\nappender.console.name = ConsoleAppender\nappender.console.type = CONSOLE\nappender.console.layout.type = PatternLayout\nappender.console.layout.pattern = %d{yyyy-MM-dd HH:mm:ss,SSS} %-5p %-60c %x - %m%n\n\n# Suppress the irrelevant (wrong) warnings from the Netty channel handler\nlogger.netty.name = org.apache.flink.shaded.akka.org.jboss.netty.channel.DefaultChannelPipeline\nlogger.netty.level = OFF\n\n# Ensure we get failure logs on startup\nlogger.bootstrap.name = org.apache.flink.client.deployment.application.ApplicationDispatcherBootstrap\nlogger.bootstrap.level = INFO\n"}` | Custom logging configuration |
Expand Down
4 changes: 2 additions & 2 deletions charts/flink-job/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ internalSsl:
keystorePassword: internal_store_password
podVolumes:
- name: truststore
emptyDir: {}
emptyDir: {}
podVolumeMounts:
- mountPath: /flinkkeystore
name: truststore
readOnly: true

# -- Flink configuration
# For more configuration options, see here: <https://nightlies.apache.org/flink/flink-docs-master/docs/deployment/config/>
# For specific metrics configuration, see here: <https://nightlies.apache.org/flink/flink-docs-master/docs/deployment/metric_reporters/>
Expand Down

0 comments on commit 7f3902f

Please sign in to comment.