mirror of
https://github.com/kubernetes-sigs/node-feature-discovery.git
synced 2025-03-15 04:57:56 +00:00
Point to the latest release in the README, and, point out that a user-built custom image is required to run the latest development version. Update the deployment instructions to reflect the need to specify the container image when using the deployment spec template(s). Also, update the Job deployment script to set a user-defined container image.
19 lines
764 B
Bash
Executable file
19 lines
764 B
Bash
Executable file
#!/usr/bin/env bash
|
|
this=`basename $0`
|
|
if [ $# -ne 1 ]; then
|
|
echo Usage: $this IMAGE[:TAG]
|
|
exit 1
|
|
fi
|
|
|
|
# Get the number of nodes in Ready state in the Kubernetes cluster
|
|
NumNodes=$(kubectl get nodes | grep -i ' ready ' | wc -l)
|
|
|
|
# We set the .spec.completions and .spec.parallelism to the node count
|
|
# We request a specific hostPort in the job spec to limit the number of pods
|
|
# that run on a node to one. As a result, one pod runs on each node in parallel
|
|
# We set the NODE_NAME environemnt variable to get the Kubernetes node object.
|
|
sed -E -e "s/COMPLETION_COUNT/$NumNodes/" \
|
|
-e "s/PARALLELISM_COUNT/$NumNodes/" \
|
|
-e "s/^(\s*)image:.+$/\1image: $1/" \
|
|
nfd-worker-job.yaml.template > nfd-worker-job.yaml
|
|
kubectl create -f nfd-worker-job.yaml
|