|
1 | 1 | quarkus: |
2 | 2 | console: |
3 | 3 | color: true |
| 4 | + log: |
| 5 | + console: |
| 6 | + json: |
| 7 | + enabled: false |
| 8 | + log-format: ECS |
4 | 9 | kubernetes-client: |
5 | 10 | devservices: |
6 | 11 | enabled: true |
@@ -36,12 +41,6 @@ quarkus: |
36 | 41 | generation-aware: true |
37 | 42 | test: |
38 | 43 | hang-detection-timeout: PT1M |
39 | | - #log: |
40 | | - # category: |
41 | | - # "io.javaoperatorsdk": |
42 | | - # level: DEBUG |
43 | | - # "io.quarkiverse.operatorsdk": |
44 | | - # level: DEBUG |
45 | 44 |
|
46 | 45 | # Config for the generated Helm chart # |
47 | 46 | # Container Image config for Kubernetes Helm # |
@@ -112,6 +111,15 @@ quarkus: |
112 | 111 | paths: |
113 | 112 | - (kind == Deployment).spec.template.spec.affinity |
114 | 113 | description: Kubernetes affinity configuration for Pod scheduling |
| 114 | + console-color: |
| 115 | + property: envs.QUARKUS_CONSOLE_COLOR |
| 116 | + description: If color should be enabled or disabled. If this is unset, then an attempt will be made to guess if the terminal supports color. |
| 117 | + log-console-json-enabled: |
| 118 | + property: envs.QUARKUS_LOG_CONSOLE_JSON_ENABLED |
| 119 | + description: Determine whether to enable the JSON console formatting extension, which disables "normal" console formatting. |
| 120 | + log-console-json-log-format: |
| 121 | + property: envs.QUARKUS_LOG_CONSOLE_JSON_LOG_FORMAT |
| 122 | + description: Specify the format of the produced JSON. Supported values are "DEFAULT", "ECS", and "GCP". |
115 | 123 | values-schema: |
116 | 124 | properties: |
117 | 125 | "affinity": |
@@ -185,3 +193,7 @@ quarkus: |
185 | 193 | env: |
186 | 194 | fields: |
187 | 195 | KUBERNETES_NODE_NAME: spec.nodeName |
| 196 | + vars: |
| 197 | + QUARKUS_CONSOLE_COLOR: ${quarkus.console.color} |
| 198 | + QUARKUS_LOG_CONSOLE_JSON_ENABLED: ${quarkus.log.console.json.enabled} |
| 199 | + QUARKUS_LOG_CONSOLE_JSON_LOG_FORMAT: ${quarkus.log.console.json.log-format} |
0 commit comments