2016-07-14 16:56:43 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# Get the node count in the Kubernetes cluster
|
2016-07-12 02:30:49 +02:00
|
|
|
NumNodes=$(kubectl get nodes | grep -i ready | wc -l)
|
|
|
|
|
2016-07-14 16:56:43 +02:00
|
|
|
# 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 POD_NAME and POD_NAMESPACE environemnt variables to the pod name
|
|
|
|
# and pod namespace. These enivornment variables are used by the feature
|
|
|
|
# discovery software to get the Kubernetes pod and node object.
|
2016-08-30 17:04:43 -07:00
|
|
|
sed -e "s/COMPLETION_COUNT/$NumNodes/" -e "s/PARALLELISM_COUNT/$NumNodes/" node-feature-discovery-job.json.template > node-feature-discovery-job.json
|
|
|
|
kubectl create -f node-feature-discovery-job.json
|