-
Notifications
You must be signed in to change notification settings - Fork 315
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Tariq Ibrahim <[email protected]> Signed-off-by: Christopher Desiniotis <[email protected]> bump NFD to v0.16.1 Signed-off-by: Tariq Ibrahim <[email protected]>
- Loading branch information
1 parent
f6c121f
commit 27fb4b7
Showing
19 changed files
with
645 additions
and
169 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
dependencies: | ||
- name: node-feature-discovery | ||
repository: https://kubernetes-sigs.github.io/node-feature-discovery/charts | ||
version: 0.15.4 | ||
digest: sha256:025d011a09907e4b274e550b36689c47ed12722543624debd1e7d709d70462d8 | ||
generated: "2024-04-05T09:13:06.247476-07:00" | ||
version: 0.16.1 | ||
digest: sha256:9fe8c3cb9355cbeb51046a82541a332fbc2a545c465cc9d5425b056ba96ec036 | ||
generated: "2024-07-03T09:21:33.977756-07:00" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
480 changes: 382 additions & 98 deletions
480
deployments/gpu-operator/charts/node-feature-discovery/crds/nfd-api-crds.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
deployments/gpu-operator/charts/node-feature-discovery/templates/cert-manager-issuer.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
94 changes: 94 additions & 0 deletions
94
deployments/gpu-operator/charts/node-feature-discovery/templates/post-delete-job.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
apiVersion: v1 | ||
kind: ServiceAccount | ||
metadata: | ||
name: {{ include "node-feature-discovery.fullname" . }}-prune | ||
namespace: {{ include "node-feature-discovery.namespace" . }} | ||
labels: | ||
{{- include "node-feature-discovery.labels" . | nindent 4 }} | ||
annotations: | ||
"helm.sh/hook": post-delete | ||
"helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded | ||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRole | ||
metadata: | ||
name: {{ include "node-feature-discovery.fullname" . }}-prune | ||
labels: | ||
{{- include "node-feature-discovery.labels" . | nindent 4 }} | ||
annotations: | ||
"helm.sh/hook": post-delete | ||
"helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded | ||
rules: | ||
- apiGroups: | ||
- "" | ||
resources: | ||
- nodes | ||
- nodes/status | ||
verbs: | ||
- get | ||
- patch | ||
- update | ||
- list | ||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRoleBinding | ||
metadata: | ||
name: {{ include "node-feature-discovery.fullname" . }}-prune | ||
labels: | ||
{{- include "node-feature-discovery.labels" . | nindent 4 }} | ||
annotations: | ||
"helm.sh/hook": post-delete | ||
"helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded | ||
roleRef: | ||
apiGroup: rbac.authorization.k8s.io | ||
kind: ClusterRole | ||
name: {{ include "node-feature-discovery.fullname" . }}-prune | ||
subjects: | ||
- kind: ServiceAccount | ||
name: {{ include "node-feature-discovery.fullname" . }}-prune | ||
namespace: {{ include "node-feature-discovery.namespace" . }} | ||
--- | ||
apiVersion: batch/v1 | ||
kind: Job | ||
metadata: | ||
name: {{ include "node-feature-discovery.fullname" . }}-prune | ||
namespace: {{ include "node-feature-discovery.namespace" . }} | ||
labels: | ||
{{- include "node-feature-discovery.labels" . | nindent 4 }} | ||
annotations: | ||
"helm.sh/hook": post-delete | ||
"helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded | ||
spec: | ||
template: | ||
metadata: | ||
labels: | ||
{{- include "node-feature-discovery.labels" . | nindent 8 }} | ||
role: prune | ||
spec: | ||
serviceAccountName: {{ include "node-feature-discovery.fullname" . }}-prune | ||
containers: | ||
- name: nfd-master | ||
securityContext: | ||
{{- toYaml .Values.master.securityContext | nindent 12 }} | ||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" | ||
imagePullPolicy: {{ .Values.image.pullPolicy }} | ||
command: | ||
- "nfd-master" | ||
args: | ||
- "-prune" | ||
{{- if .Values.master.instance | empty | not }} | ||
- "-instance={{ .Values.master.instance }}" | ||
{{- end }} | ||
restartPolicy: Never | ||
{{- with .Values.master.nodeSelector }} | ||
nodeSelector: | ||
{{- toYaml . | nindent 8 }} | ||
{{- end }} | ||
{{- with .Values.master.affinity }} | ||
affinity: | ||
{{- toYaml . | nindent 8 }} | ||
{{- end }} | ||
{{- with .Values.master.tolerations }} | ||
tolerations: | ||
{{- toYaml . | nindent 8 }} | ||
{{- end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
deployments/gpu-operator/charts/node-feature-discovery/templates/service.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.