Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit e1d8fae

Browse files
thrthr
authored andcommitted
priorityClassName support added and updating helm/README.me from values.yaml
1 parent 041c49e commit e1d8fae

File tree

5 files changed

+17
-2
lines changed

5 files changed

+17
-2
lines changed

apigateway/helm/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,7 @@ Sub-folder `examples` contains some *values* examples for more use-cases. To use
169169
| `1.2.6` | Fixed commons dependency to enable metering change from 1.2.5. |
170170
| `1.2.7` | Added possibility to rename roleBinding for API Gateway, Kibana and Elasticsearch. This allows for multiple deployments into the same namespace. Also, CRD ServiceMonitor selector corrected. Support of ES storage PVC annotations. |
171171
| `1.2.8` | `tpl` function support in `affinity` value added. `affinity` support added for Kibana and Elasticsearch. `topologySpreadConstraints` support added for APIGW, Elasticsearch and Kibana. |
172+
| `1.2.9` | `priorityClassName` support added for APIGW, Elasticsearch and Kibana. |
172173

173174
## Values
174175

@@ -224,6 +225,7 @@ Sub-folder `examples` contains some *values* examples for more use-cases. To use
224225
| elasticsearch.podDisruptionBudget | object | `{"data":{},"enabled":true}` | Customization of ElasticSearchs PodDisruptionBudget Policy. Elastic Cloud on Kubernetes operator (ECK) creates a default PodDisruptionBudget Policy. |
225226
| elasticsearch.podDisruptionBudget.data | object | `{}` | Overwrite the default PodDisruptionBudget Policy. Overwriting with custom PodDisruptionBudget Policy requires enabled=true. Examples can be seen here: https://kubernetes.io/docs/tasks/run-application/configure-pdb/ |
226227
| elasticsearch.podDisruptionBudget.enabled | bool | `true` | Whether a PodDisruptionBudget Policy should be created. Enabled=true results in ECK deploying the default (or custom, see data) PodDisruptionBudget Policy. Enabled=false results in no PodDisruptionBudget Policy deployment. |
228+
| elasticsearch.priorityClassName | string | `""` | Set Pods' Priority Class Name |
227229
| elasticsearch.resources | object | `{}` | Resource Settings for Elasticsearch Example: limits: cpu: 100m memory: 128Mi requests: cpu: 100m memory: 128Mi |
228230
| elasticsearch.secretName | string | `""` | The secret name that holds the sag es user for API Gateway. |
229231
| elasticsearch.secretPasswordKey | string | `""` | The key that holds the Elasticsearch password; defauls to "password" |
@@ -338,6 +340,7 @@ Sub-folder `examples` contains some *values* examples for more use-cases. To use
338340
| kibana.livenessProbe | object | `{}` | Configure Kibana's livenessProbe. |
339341
| kibana.podSecurityContext | object | `{}` | The pod securityContext for kibana pod. |
340342
| kibana.port | int | `5601` | The default Kibana Port |
343+
| kibana.priorityClassName | string | `""` | Set Pods' Priority Class Name |
341344
| kibana.readinessProbe | object | `{"failureThreshold":3,"httpGet":{"path":"/status","port":5601,"scheme":"HTTP"},"periodSeconds":10,"successThreshold":1,"timeoutSeconds":1}` | Configure Kibana's readinessProbe. |
342345
| kibana.resources | object | `{}` | Resource Settings for Kibana Example: limits: cpu: 100m memory: 128Mi requests: cpu: 100m memory: 128Mi |
343346
| kibana.secretName | string | `""` | The secret name that holds the kibana user for API Gateway. |
@@ -380,6 +383,7 @@ Sub-folder `examples` contains some *values* examples for more use-cases. To use
380383
| nodeSelector | object | `{}` | |
381384
| podAnnotations | object | `{}` | |
382385
| podSecurityContext | object | `{}` | |
386+
| priorityClassName | string | `""` | Set APIGW and Nginx Pods' Priority Class Name ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/ |
383387
| prometheus | object | `{"interval":"10s","path":"/metrics","port":"5555","scheme":"http","scrape":"true","scrapeTimeout":"10s"}` | Define values for Prometheus Operator to scrap metrics via annotation or ServiceMonitor. |
384388
| prometheus-elasticsearch-exporter | object | `{"enabled":true,"es":{"uri":"http://$(ES_USER):$(ES_PASSWORD)@apigw-apigateway-es-http:9200"},"extraEnvSecrets":{"ES_PASSWORD":{"key":"password","secret":"apigw-apigateway-sag-user-es"},"ES_USER":{"key":"username","secret":"apigw-apigateway-sag-user-es"}},"podAnnotations":{"prometheus.io/path":"/metrics","prometheus.io/port":"9108","prometheus.io/scheme":"http","prometheus.io/scrape":"true"},"serviceMonitor":{"enabled":false}}` | Elasticsearch exporter settings. See https://github.com/prometheus-community/elasticsearch_exporter for details. |
385389
| prometheus-elasticsearch-exporter.enabled | bool | `true` | Deploy the prometheus exporter for elasticsearch |

developerportal/helm/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ helm install webmethods/developerportal devportal
4848
| `1.0.0` | Initial release |
4949
| `1.0.1` | Supports wM version 11.0. Validate `devportal.port` value in `values.yaml` if you want to use wM image version 11.0. |
5050
| `1.0.2` | `tpl` function support in `affinity` value added. `topologySpreadConstraints` support added. |
51+
| `1.0.3` | `priorityClassName` support added. Error is corrected on using value `useDefaultAffinityRule == true`. Now, the release name is used in condition with `app.kubernetes.io/instance`. `affinity` and `topologySpreadConstraints` support added for Elasticsearch. |
5152

5253
## Values
5354

@@ -64,6 +65,7 @@ helm install webmethods/developerportal devportal
6465
| devportal.elasticSearchDeployment | bool | `true` | Deploy Elasticsearch. Depends on Elasic Search Helm Charts. See https://github.com/elastic/helm-charts/blob/main/elasticsearch |
6566
| devportal.port | int | `8083` | HTTP listening port. Use on wM version 10.15 (default): `8083`, 11.0: `8080` |
6667
| devportal.useDefaultAffinityRule | bool | `true` | Use the default anti pod affinity. Specifies a Pod Anti-Affinity rule for Kubernetes pods. The default Pod Anti-Affinity is a scheduling preference that indicates how Kubernetes should distribute pods across nodes to avoid having multiple pods of the same application or with specific labels running on the same node. If you want to use your on rules, refer to affinity value and provide your own configuration. |
68+
| elasticsearch.affinity | object | `{}` | Set Pod (anti-) affinity for ElasticSearch. You can use templates inside because `tpl` function is called for rendering. |
6769
| elasticsearch.certificateSecretName | string | `"{{ include \"common.names.fullname\" .}}-es-tls-secret"` | The name of the secret holding the tls secret By default the name will be fullname of release + "es-tls-secret" |
6870
| elasticsearch.defaultNodeSet | object | `{"count":1,"extraConfig":{},"extraInitContainers":{},"installPlugins":["mapper-size"],"memoryMapping":false,"setMaxMapCount":true}` | Default Node Set |
6971
| elasticsearch.defaultNodeSet.count | int | `1` | the number of replicas for Elastic Search |
@@ -77,9 +79,11 @@ helm install webmethods/developerportal devportal
7779
| elasticsearch.keystoreSecretName | string | `""` | The secret name that holds the keystore password |
7880
| elasticsearch.nodeSets | object | `{}` | Node sets. See official ElasticSearch documentation at: https://www.elastic.co/guide/en/cloud-on-k8s/current/k8s-orchestration.html if you specify node sets here the defaultNodeSet will not be used. |
7981
| elasticsearch.port | int | `9200` | The default elasticsearch instance http communication port |
82+
| elasticsearch.priorityClassName | string | `""` | Set Pods' Priority Class Name |
8083
| elasticsearch.secretName | string | `""` | The secret name that holds the sag es user for Developer Portal. |
8184
| elasticsearch.serviceName | string | `""` | The elasticsearch http service name that Developer Portal uses. The default is compiled of the fullname (releasename + chart name) + "-http" You MUST override this if you use an external elastic search service and do not deploy the embedded elastic CRD from this chart. |
8285
| elasticsearch.tlsEnabled | bool | `false` | Whether the communication from Developer Portal should be HTTPS Note: you will need to create certificate and a separate truststore for the communication. |
86+
| elasticsearch.topologySpreadConstraints | object | `{}` | Set Pod topology spread constraints for ElasticSearch. You can use templates inside because `tpl` function is called for rendering. |
8387
| elasticsearch.version | string | `"8.2.3"` | The ECK version to be used |
8488
| extraConfigMaps | list | `[]` | Extra config maps for additional configurations such as extra ports, etc. |
8589
| extraContainers | list | `[]` | Extra containers which should run in addition to the main container as a sidecar |
@@ -108,6 +112,7 @@ helm install webmethods/developerportal devportal
108112
| nodeSelector | object | `{}` | |
109113
| podAnnotations | object | `{}` | |
110114
| podSecurityContext | object | `{}` | |
115+
| priorityClassName | string | `""` | Set Pods' Priority Class Name ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/ |
111116
| prometheus-elasticsearch-exporter.es.uri | string | `"{{ .Release.Name }}-developerportal-es-http:9200"` | |
112117
| prometheus-elasticsearch-exporter.image.pullPolicy | string | `"IfNotPresent"` | |
113118
| prometheus-elasticsearch-exporter.image.pullSecret | string | `""` | |

microservicesruntime/helm/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,12 +111,13 @@ helm install wm-msr webmethods/microservicesruntime \
111111
| `1.0.4` | Option in `values.yaml` to create a ServiceMonitor added. Some errors in Nginx external LB corrected |
112112
| `1.0.5` | Value `trustStorePasswordFromSecret` added in `values.yaml` to support common `1.0.2` |
113113
| `1.0.6` | `tpl` function support in `affinity` value added. `topologySpreadConstraints` support added. |
114+
| `1.0.7` | `priorityClassName` support added. |
114115

115116
## Values
116117

117118
| Key | Type | Default | Description |
118119
|-----|------|---------|-------------|
119-
| affinity | object | `{}` | Set Pod (anti-) affinity. You can use templates inside because `tpl` function is called for rendering. |
120+
| affinity | object | `{}` | Set MSR and Nginx Pod (anti-) affinity. You can use templates inside because `tpl` function is called for rendering. |
120121
| autoscaling.enabled | bool | `false` | |
121122
| autoscaling.maxReplicas | int | `100` | |
122123
| autoscaling.minReplicas | int | `1` | |
@@ -194,6 +195,7 @@ helm install wm-msr webmethods/microservicesruntime \
194195
| persistence.storageClassName | string | `""` | |
195196
| podAnnotations | object | `{}` | pod annotations |
196197
| podSecurityContext.fsGroup | int | `1724` | |
198+
| priorityClassName | string | `""` | Set MSR and Nginx Pods' Priority Class Name ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/ |
197199
| prometheus | object | `{"interval":"10s","path":"/metrics","port":"5555","scheme":"http","scrape":"true","scrapeTimeout":"10s"}` | Define values for Prometheus Operator to scrap metrics via annotation or ServiceMonitor. |
198200
| readinessProbe | object | `{"failureThreshold":3,"httpGet":{"path":"/health/readiness","port":"http"},"initialDelaySeconds":0,"periodSeconds":15,"successThreshold":1,"timeoutSeconds":30}` | Configure readiness probe |
199201
| replicaCount | int | `1` | Number of replicates in Deployment |
@@ -210,5 +212,5 @@ helm install wm-msr webmethods/microservicesruntime \
210212
| startupProbe | object | `{"failureThreshold":60,"periodSeconds":30,"tcpSocket":{"port":"http"}}` | startup probe for container |
211213
| statefulSet | bool | `false` | StatefulSet or Deployment. You should only change this if you require Client Side queuing (CSQ) or functionality in IS which requires stable hostnames and filesystems. Default is false => Deployment. Keep in mind, you must disable CSQ on each webMethods messaging and JMS connection if you don't use stateful-sets. See examples in Process Engine deployment for disableing CSQ. |
212214
| tolerations | list | `[]` | |
213-
| topologySpreadConstraints | object | `{}` | Set Pod topology spread constraints. You can use templates inside because `tpl` function is called for rendering. |
215+
| topologySpreadConstraints | object | `{}` | Set MSR and Nginx Pod topology spread constraints. You can use templates inside because `tpl` function is called for rendering. ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods |
214216
| volumeClaimTemplates | list | `[]` | Volume Claim Templates, only to be used when running as a Statefulset (e.g. using client-side queuing) |

mywebmethodsserver/helm/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ helm install wm-mws mywebmethodsserver
4949
| `1.0.2` | `storage.enabled` added in `values.yaml`. For backward reason is this value set to `true` as default. `false` doesn't create and mount any PV. (You can test this feature if you don't want to deploy any own MWS application. MWS is more stateless and has only the database as stateful dependency.) |
5050
| `1.0.2` | `containerName` added in `values.yaml`. Default is the Chart name. (Use `helm repo update` to get latest Helm Chart version.) |
5151
| `1.0.3` | `tpl` function support in `affinity` value added. `topologySpreadConstraints` support added. |
52+
| `1.0.4` | `priorityClassName` support added. |
5253

5354
## Values
5455

@@ -91,6 +92,7 @@ helm install wm-mws mywebmethodsserver
9192
| nodeSelector | object | `{}` | |
9293
| podAnnotations | object | `{}` | |
9394
| podSecurityContext | object | `{}` | |
95+
| priorityClassName | string | `""` | Set Pods' Priority Class Name ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/ |
9496
| prometheus | object | `{"interval":"10s","path":"/metrics","port":"8585","scheme":"http","scrape":"true","scrapeTimeout":"10s"}` | Define values for Prometheus Operator to scrap metrics via annotation or ServiceMonitor. |
9597
| replicaCount | int | `1` | |
9698
| resources | object | `{}` | Define CPU and memory resources for container |

universalmessaging/helm/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ helm install um webmethods/universalmessaging
6464
| `1.0.4` | `containerName` added in `values.yaml`. Default is the Chart name. (Use `helm repo update` to get latest Helm Chart version.) |
6565
| `1.0.5` | support of PV storage annotation and class name |
6666
| `1.0.6` | `tpl` function support in `affinity` value added. `topologySpreadConstraints` support added. |
67+
| `1.0.7` | `priorityClassName` support added. |
6768

6869
## Values
6970

@@ -105,6 +106,7 @@ helm install um webmethods/universalmessaging
105106
| nodeSelector | object | `{}` | |
106107
| podAnnotations | object | `{}` | pod annotations |
107108
| podSecurityContext.fsGroup | int | `1724` | |
109+
| priorityClassName | string | `""` | Set UM and Nginx Pods' Priority Class Name ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/ |
108110
| prometheus | object | `{"interval":"10s","path":"/metrics","port":"9200","scheme":"http","scrape":"true","scrapeTimeout":"10s"}` | Define values for Prometheus Operator to scrap metrics via annotation or ServiceMonitor. |
109111
| readinessProbe | object | `{"failureThreshold":3,"httpGet":{"path":"/health/","port":9000},"initialDelaySeconds":0,"periodSeconds":15,"successThreshold":1,"timeoutSeconds":30}` | Configure readiness probe |
110112
| replicaCount | int | `1` | Number of replicas |

0 commit comments

Comments
 (0)