-
Notifications
You must be signed in to change notification settings - Fork 716
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3126 from HirazawaUi/add-instance-config-tests
Add e2e test for kubelet instance config
- Loading branch information
Showing
6 changed files
with
714 additions
and
0 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
42 changes: 42 additions & 0 deletions
42
kinder/ci/tools/update-workflows/templates/testinfra/kubeadm-kinder-instance-config.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,42 @@ | ||
- name: ci-kubernetes-e2e-kubeadm-kinder-instance-config-{{ dashVer .KubernetesVersion }} | ||
cluster: k8s-infra-prow-build | ||
interval: {{ .JobInterval }} | ||
decorate: true | ||
labels: | ||
preset-dind-enabled: "true" | ||
preset-kind-volume-mounts: "true" | ||
annotations: | ||
testgrid-dashboards: sig-cluster-lifecycle-kubeadm | ||
testgrid-tab-name: kubeadm-kinder-instance-config-{{ dashVer .KubernetesVersion }} | ||
testgrid-alert-email: sig-cluster-lifecycle-kubeadm-alerts@kubernetes.io | ||
description: "OWNER: sig-cluster-lifecycle (kinder); Uses kubeadm/kinder to create and upgrade a cluster using kubelet instance config and run kubeadm-e2e" | ||
testgrid-num-columns-recent: "20" | ||
{{ .AlertAnnotations }} | ||
decoration_config: | ||
timeout: 60m | ||
extra_refs: | ||
- org: kubernetes | ||
repo: kubernetes | ||
base_ref: {{ branchFor .KubernetesVersion }} | ||
path_alias: k8s.io/kubernetes | ||
- org: kubernetes | ||
repo: kubeadm | ||
base_ref: main | ||
path_alias: k8s.io/kubeadm | ||
spec: | ||
containers: | ||
- image: gcr.io/k8s-staging-test-infra/kubekins-e2e:{{ .TestInfraImage }}-{{ imageVer .KubernetesVersion }} | ||
command: | ||
- runner.sh | ||
- "../kubeadm/kinder/ci/kinder-run.sh" | ||
args: | ||
- {{ .WorkflowFile }} | ||
securityContext: | ||
privileged: true | ||
resources: | ||
limits: | ||
memory: "9000Mi" | ||
cpu: 2000m | ||
requests: | ||
memory: "9000Mi" | ||
cpu: 2000m |
318 changes: 318 additions & 0 deletions
318
kinder/ci/tools/update-workflows/templates/workflows/instance-config-tasks.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,318 @@ | ||
# IMPORTANT! this workflow is imported by instance-config-* workflows. | ||
version: 1 | ||
summary: | | ||
This workflow implements a sequence of tasks to test that kubeadm | ||
works properly in scenarios using kubelet instance configuration. | ||
vars: | ||
# vars defines default values for variable used by tasks in this workflow; | ||
# those values might be overridden when importing this files. | ||
kubernetesVersion: latest | ||
upgradeVersion: latest | ||
controlPlaneNodes: 3 | ||
workerNodes: 2 | ||
baseImage: kindest/base:v20221102-76f15095 # has containerd | ||
image: kindest/node:test | ||
clusterName: kinder-instance-config | ||
kubeadmVerbosity: 6 | ||
tasks: | ||
- name: pull-base-image | ||
description: | | ||
pulls kindest/base image with docker in docker and all the prerequisites necessary for running kind(er) | ||
cmd: docker | ||
args: | ||
- pull | ||
- "{{ .vars.baseImage }}" | ||
- name: add-kubernetes-versions | ||
description: | | ||
creates a node-image-variant by adding a Kubernetes version | ||
cmd: kinder | ||
args: | ||
- build | ||
- node-image-variant | ||
- --base-image={{ .vars.baseImage }} | ||
- --image={{ .vars.image }} | ||
- --with-init-artifacts={{ .vars.kubernetesVersion }} | ||
- --with-upgrade-artifacts={{ .vars.upgradeVersion }} | ||
- --loglevel=debug | ||
timeout: 15m | ||
- name: create-cluster | ||
description: | | ||
create a set of nodes ready for hosting the Kubernetes cluster | ||
cmd: kinder | ||
args: | ||
- create | ||
- cluster | ||
- --name={{ .vars.clusterName }} | ||
- --image={{ .vars.image }} | ||
- --control-plane-nodes={{ .vars.controlPlaneNodes }} | ||
- --worker-nodes={{ .vars.workerNodes }} | ||
- --loglevel=debug | ||
timeout: 5m | ||
- name: init | ||
description: | | ||
Initializes the Kubernetes cluster with version "initVersion" | ||
by starting the boostrap control-plane nodes | ||
cmd: kinder | ||
args: | ||
- do | ||
- kubeadm-init | ||
- --name={{ .vars.clusterName }} | ||
- --loglevel=debug | ||
- --kubeadm-verbosity={{ .vars.kubeadmVerbosity }} | ||
- --kubeadm-feature-gate="NodeLocalCRISocket=true" | ||
- --copy-certs=auto | ||
timeout: 5m | ||
- name: join | ||
description: | | ||
Join the other nodes to the Kubernetes cluster | ||
cmd: kinder | ||
args: | ||
- do | ||
- kubeadm-join | ||
- --name={{ .vars.clusterName }} | ||
- --loglevel=debug | ||
- --kubeadm-verbosity={{ .vars.kubeadmVerbosity }} | ||
- --copy-certs=auto | ||
timeout: 10m | ||
- name: check-annotation | ||
description: | | ||
Check that the cri-socket annotation does not exist on each node. | ||
cmd: /bin/bash | ||
args: | ||
- -c | ||
- | | ||
set -x | ||
docker exec {{ .vars.clusterName }}-control-plane-1 bash -c ' | ||
nodes=$(KUBECONFIG=/etc/kubernetes/admin.conf kubectl get nodes -o jsonpath='{.items[*].metadata.name}') | ||
for node in $nodes; do | ||
annotation=$(KUBECONFIG=/etc/kubernetes/admin.conf kubectl get node "$node" -o jsonpath="{.metadata.annotations['kubeadm\.alpha\.kubernetes\.io/cri-socket']}") | ||
if [ -z "$annotation" ]; then | ||
echo "Annotation not found on node $node" | ||
else | ||
echo "Annotation found on node $node: $annotation" | ||
exit 1 | ||
fi | ||
done | ||
' || { | ||
echo "Command failed for $node. Exiting."; | ||
exit 1; | ||
} | ||
exit 0 | ||
timeout: 5m | ||
- name: check-config | ||
description: | | ||
Check if the kubelet instance configuration exists on each node. | ||
cmd: /bin/bash | ||
args: | ||
- -c | ||
- | | ||
set -x | ||
for node in control-plane-{1..3} worker-{1..2}; do | ||
CMD="docker exec {{ .vars.clusterName }}-$node" | ||
${CMD} bash -c ' | ||
if [[ -f "/var/lib/kubelet/instance-config.yaml" ]] && grep -q "containerRuntimeEndpoint:" /var/lib/kubelet/instance-config.yaml; then | ||
echo "File exists and contains 'containerRuntimeEndpoint:' field." | ||
else | ||
echo "File does not exist or does not contain 'containerRuntimeEndpoint:' field." | ||
exit 1 | ||
fi | ||
' || { | ||
echo "Command failed for $node. Exiting."; | ||
exit 1; | ||
} | ||
done | ||
exit 0 | ||
timeout: 5m | ||
- name: upgrade | ||
description: | | ||
upgrades the cluster to Kubernetes "upgradeVersion" | ||
cmd: kinder | ||
args: | ||
- do | ||
- kubeadm-upgrade | ||
- --upgrade-version={{ .vars.upgradeVersion }} | ||
- --name={{ .vars.clusterName }} | ||
- --loglevel=debug | ||
- --kubeadm-verbosity={{ .vars.kubeadmVerbosity }} | ||
timeout: 15m | ||
- name: check-config-after-upgrade | ||
description: | | ||
Check if the kubelet instance configuration exists on each node. | ||
cmd: /bin/bash | ||
args: | ||
- -c | ||
- | | ||
set -x | ||
for node in control-plane-{1..3} worker-{1..2}; do | ||
CMD="docker exec {{ .vars.clusterName }}-$node" | ||
${CMD} bash -c ' | ||
if [[ -f "/var/lib/kubelet/instance-config.yaml" ]] && grep -q "containerRuntimeEndpoint:" /var/lib/kubelet/instance-config.yaml; then | ||
echo "File exists and contains 'containerRuntimeEndpoint:' field." | ||
else | ||
echo "File does not exist or does not contain 'containerRuntimeEndpoint:' field." | ||
exit 1 | ||
fi | ||
' || { | ||
echo "Command failed for $node. Exiting."; | ||
exit 1; | ||
} | ||
done | ||
exit 0 | ||
timeout: 5m | ||
- name: remove-config | ||
description: | | ||
Remove the kubelet instance configuration from work node. | ||
cmd: /bin/bash | ||
args: | ||
- -c | ||
- | | ||
set -x | ||
for node in control-plane-{1..3} worker-{1..2}; do | ||
CMD="docker exec {{ .vars.clusterName }}-$node" | ||
${CMD} bash -c 'rm -f /var/lib/kubelet/instance-config.yaml' || { | ||
echo "Command failed for $node. Exiting."; | ||
exit 1; | ||
} | ||
done | ||
exit 0 | ||
timeout: 5m | ||
- name: add-cri-socket-annotation | ||
description: | | ||
Add the cri-socket annotation to each node. | ||
cmd: /bin/bash | ||
args: | ||
- -c | ||
- | | ||
set -x | ||
docker exec {{ .vars.clusterName }}-control-plane-1 bash -c ' | ||
ANNOTATION_KEY="kubeadm.alpha.kubernetes.io/cri-socket" | ||
ANNOTATION_VALUE="unix:///var/run/containerd/containerd.sock" | ||
nodes=$(KUBECONFIG=/etc/kubernetes/admin.conf kubectl get nodes -o jsonpath='{.items[*].metadata.name}') | ||
for node in $nodes; do | ||
KUBECONFIG=/etc/kubernetes/admin.conf kubectl annotate node "$node" "$ANNOTATION_KEY=$ANNOTATION_VALUE" --overwrite | ||
if [ $? -eq 0 ]; then | ||
echo "Successfully added annotation to node $node." | ||
else | ||
echo "Failed to add annotation to node $node." | ||
exit 1 | ||
fi | ||
done | ||
' || { | ||
echo "Command failed for $node. Exiting."; | ||
exit 1; | ||
} | ||
exit 0 | ||
timeout: 5m | ||
- name: upgrade-again | ||
description: | | ||
upgrades the cluster to Kubernetes "upgradeVersion" | ||
cmd: kinder | ||
args: | ||
- do | ||
- kubeadm-upgrade | ||
- --upgrade-version={{ .vars.upgradeVersion }} | ||
- --name={{ .vars.clusterName }} | ||
- --loglevel=debug | ||
- --kubeadm-verbosity={{ .vars.kubeadmVerbosity }} | ||
timeout: 15m | ||
- name: check-config-after-second-upgrade | ||
description: | | ||
Check if the kubelet instance configuration exists on each node. | ||
cmd: /bin/bash | ||
args: | ||
- -c | ||
- | | ||
set -x | ||
for node in control-plane-{1..3} worker-{1..2}; do | ||
CMD="docker exec {{ .vars.clusterName }}-$node" | ||
${CMD} bash -c ' | ||
if [[ -f "/var/lib/kubelet/instance-config.yaml" ]] && grep -q "containerRuntimeEndpoint:" /var/lib/kubelet/instance-config.yaml; then | ||
echo "File exists and contains 'containerRuntimeEndpoint:' field." | ||
else | ||
echo "File does not exist or does not contain 'containerRuntimeEndpoint:' field." | ||
exit 1 | ||
fi | ||
' || { | ||
echo "Command failed for $node. Exiting."; | ||
exit 1; | ||
} | ||
done | ||
exit 0 | ||
timeout: 5m | ||
- name: cluster-info | ||
description: | | ||
Runs cluster-info | ||
cmd: kinder | ||
args: | ||
- do | ||
- cluster-info | ||
- --name={{ .vars.clusterName }} | ||
- --loglevel=debug | ||
- name: e2e-kubeadm | ||
description: | | ||
Runs kubeadm e2e tests | ||
cmd: kinder | ||
args: | ||
- test | ||
- e2e-kubeadm | ||
- --test-flags=--report-dir={{ .env.ARTIFACTS }} --report-prefix=e2e-kubeadm | ||
- --name={{ .vars.clusterName }} | ||
- --loglevel=debug | ||
timeout: 10m | ||
- name: get-logs | ||
description: | | ||
Collects all the test logs | ||
cmd: kinder | ||
args: | ||
- export | ||
- logs | ||
- --loglevel=debug | ||
- --name={{ .vars.clusterName }} | ||
- "{{ .env.ARTIFACTS }}" | ||
force: true | ||
timeout: 5m | ||
# kind export log is know to be flaky, so we are temporary ignoring errors in order | ||
# to make the test pass in case everything else passed | ||
# see https://github.com/kubernetes-sigs/kind/issues/456 | ||
ignoreError: true | ||
- name: reset | ||
description: | | ||
Exec kubeadm reset | ||
cmd: kinder | ||
args: | ||
- do | ||
- kubeadm-reset | ||
- --name={{ .vars.clusterName }} | ||
- --loglevel=debug | ||
- --kubeadm-verbosity={{ .vars.kubeadmVerbosity }} | ||
force: true | ||
- name: delete | ||
description: | | ||
Deletes the cluster | ||
cmd: kinder | ||
args: | ||
- delete | ||
- cluster | ||
- --name={{ .vars.clusterName }} | ||
- --loglevel=debug | ||
force: true |
11 changes: 11 additions & 0 deletions
11
kinder/ci/tools/update-workflows/templates/workflows/instance-config.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,11 @@ | ||
version: 1 | ||
summary: | | ||
This workflow tests the proper functioning of the {{ .KubernetesVersion }} version of both kubeadm and Kubernetes using | ||
kubelet instance configuration. | ||
test grid > https://testgrid.k8s.io/sig-cluster-lifecycle-kubeadm#kubeadm-kinder-instance-config{{ dashVer .KubernetesVersion }} | ||
config > https://git.k8s.io/test-infra/config/jobs/kubernetes/sig-cluster-lifecycle/{{ .TargetFile }} | ||
vars: | ||
kubernetesVersion: "\{\{ resolve `ci/{{ ciLabelFor .KubernetesVersion }}` \}\}" | ||
upgradeVersion: "\{\{ resolve `ci/{{ ciLabelFor .KubernetesVersion }}` \}\}" | ||
tasks: | ||
- import: instance-config-tasks.yaml |
Oops, something went wrong.