mirror of
https://github.com/kubernetes-sigs/node-feature-discovery.git
synced 2024-12-14 11:57:51 +00:00
Merge pull request #515 from Ethyling/enh-helm-extralabelns
helm: add extraLabelNs master flag
This commit is contained in:
commit
09cb512f22
4 changed files with 8 additions and 2 deletions
|
@ -12,4 +12,4 @@ keywords:
|
|||
- feature-detection
|
||||
- node-labels
|
||||
type: application
|
||||
version: 0.1.1
|
||||
version: 0.1.2
|
||||
|
|
|
@ -48,6 +48,9 @@ spec:
|
|||
{{- if .Values.master.instance | empty | not }}
|
||||
- "--instance={{ .Values.master.instance }}"
|
||||
{{- end }}
|
||||
{{- if .Values.master.extraLabelNs | empty | not }}
|
||||
- "--extra-label-ns={{- join "," .Values.master.extraLabelNs }}"
|
||||
{{- end }}
|
||||
## Enable TLS authentication
|
||||
## The example below assumes having the root certificate named ca.crt stored in
|
||||
## a ConfigMap named nfd-ca-cert, and, the TLS authentication credentials stored
|
||||
|
|
|
@ -5,7 +5,7 @@ image:
|
|||
# tag, if defined will use the given image tag, else Chart.AppVersion will be used
|
||||
# tag
|
||||
imagePullSecrets: []
|
||||
|
||||
|
||||
serviceAccount:
|
||||
# Specifies whether a service account should be created
|
||||
create: true
|
||||
|
@ -20,6 +20,8 @@ fullnameOverride: ""
|
|||
|
||||
master:
|
||||
instance:
|
||||
extraLabelNs: []
|
||||
|
||||
replicaCount: 1
|
||||
|
||||
podSecurityContext: {}
|
||||
|
|
|
@ -226,6 +226,7 @@ We have introduced the following Chart parameters.
|
|||
| ---- | ---- | ------- | ----------- |
|
||||
| `master.*` | dict | | NFD master deployment configuration |
|
||||
| `master.instance` | string | | Instance name. Used to separate annotation namespaces for multiple parallel deployments |
|
||||
| `master.extraLabelNs` | array | [] | List of allowed extra label namespaces |
|
||||
| `master.replicaCount` | integer | 1 | Number of desired pods. This is a pointer to distinguish between explicit zero and not specified |
|
||||
| `master.podSecurityContext` | dict | {} | SecurityContext holds pod-level security attributes and common container settings |
|
||||
| `master.service.type` | string | ClusterIP | NFD master service type |
|
||||
|
|
Loading…
Reference in a new issue