1
0
Fork 0
mirror of https://github.com/kubernetes-sigs/node-feature-discovery.git synced 2025-03-20 07:12:43 +00:00
node-feature-discovery/deployment/base/master/master-deployment.yaml
Markus Lehtonen 94e8df22ca Update references to release v0.12.2
Also updates the Golang builder image to the latest v1.19 patch release
(i.e. v1.19.7).

Generated with:

    hack/prepare-release.sh -g 1.19.7 v0.12.2
2023-04-01 12:50:41 +03:00

38 lines
941 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: nfd
name: nfd-master
spec:
replicas: 1
selector:
matchLabels:
app: nfd-master
template:
metadata:
labels:
app: nfd-master
spec:
serviceAccount: nfd-master
tolerations: []
containers:
- name: nfd-master
image: registry.k8s.io/nfd/node-feature-discovery:v0.12.2
imagePullPolicy: IfNotPresent
livenessProbe:
exec:
command: ["/usr/bin/grpc_health_probe", "-addr=:8080"]
initialDelaySeconds: 10
periodSeconds: 10
readinessProbe:
exec:
command: ["/usr/bin/grpc_health_probe", "-addr=:8080"]
initialDelaySeconds: 5
periodSeconds: 10
failureThreshold: 10
command:
- "nfd-master"
args: []
volumeMounts: []
volumes: []