CI Job | Failure Count | URL |
---|---|---|
ci-kubernetes-e2e-windows-containerd-gce-master | 858 | https://testgrid.k8s.io/sig-windows-gce#gce-windows-2019-containerd-master |
ci-kubernetes-e2e-gci-gce-autoscaling-migs | 846 | https://testgrid.k8s.io/sig-autoscaling-cluster-autoscaler#gci-gce-autoscaling-migs |
ci-kubernetes-e2e-gci-gce-autoscaling | 845 | https://testgrid.k8s.io/sig-autoscaling-cluster-autoscaler#gci-gce-autoscaling |
ci-kubernetes-e2e-windows-win2022-containerd-gce-master | 818 | https://testgrid.k8s.io/sig-windows-gce#gce-windows-2022-containerd-master |
ci-test-infra-branchprotector | 693 | https://testgrid.k8s.io/sig-testing-misc#branchprotector |
pull-kops-e2e-k8s-gce-cilium-etcd | 649 | https://testgrid.k8s.io/kops-presubmits#e2e-gce-cilium-etcd |
ci-kubernetes-e2e-capz-master-windows-hyperv | 547 | https://testgrid.k8s.io/sig-windows-experimental#capz-master-windows-hyperv |
ci-k8sio-file-promo-mirrors | 545 | https://testgrid.k8s.io/sig-release-releng-blocking#ci-k8sio-file-promo-mirrors |
This file contains hidden or 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
{ | |
"spec": { | |
"unwantedModules": { | |
"cloud.google.com/go": "cloud dependency", | |
"cloud.google.com/go/bigquery": "cloud dependency", | |
"cloud.google.com/go/compute": "cloud dependency", | |
"cloud.google.com/go/firestore": "db/datastore clients should not be required", | |
"cloud.google.com/go/storage": "cloud dependency", | |
"github.com/GoogleCloudPlatform/k8s-cloud-provider": "cloud dependency", | |
"github.com/PuerkitoBio/urlesc": "unmaintained, archive mode", |
This file contains hidden or 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
- definition: io.k8s.api.core.v1.PodSpec | |
field_categories: | |
- name: Containers | |
fields: | |
- containers | |
- initContainers | |
- ephemeralContainers | |
- imagePullSecrets | |
- enableServiceLinks | |
- os |
This file contains hidden or 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
#!/bin/bash | |
crictl ps | |
crictl pods | |
crictl stop $(crictl ps -q) | |
crictl rm $(crictl ps -q) | |
crictl stopp $(crictl pods -q) | |
crictl rmp $(crictl pods -q) |
This file contains hidden or 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
sudo lsof -iTCP -sTCP:LISTEN -n -P | awk 'NR>1 {print $9, $1, $2}' | sed 's/.*://' | while read port process pid; do echo "Port $port: $(ps -p $pid -o command= | sed 's/^-//') (PID: $pid)"; done | sort -n |
Check if you have permissions to apply the yaml
kubectl auth can-i list validatingadmissionpolicies --all-namespaces
kubectl auth can-i list validatingadmissionpolicybindings --all-namespaces
Use kubectl apply
to apply the yaml
Check if they got applied correctly
This file contains hidden or 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
apiVersion: apps/v1 | |
kind: DaemonSet | |
metadata: | |
name: tune-kindnet | |
namespace: kube-system | |
labels: | |
app: tune-kindnet | |
spec: | |
selector: | |
matchLabels: |
This file contains hidden or 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
go install sigs.k8s.io/kubetest2@latest; | |
go install sigs.k8s.io/kubetest2/kubetest2-tester-ginkgo@latest | |
go install sigs.k8s.io/provider-aws-test-infra/kubetest2-ec2@latest | |
#go install . | |
kubetest2 ec2 \ | |
--stage https://dl.k8s.io/ci/fast/ \ | |
--version $(curl -Ls https://dl.k8s.io/ci/fast/latest-fast.txt) \ | |
--region us-east-1 \ |
This file contains hidden or 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
rm cacher.test && make test WHAT=staging/src/k8s.io/apiserver/pkg/storage/cacher KUBE_TEST_ARGS='-c' | |
stress ./cacher.test --test.failfast --test.run TestWatchStreamSeparation |
This file contains hidden or 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
#!/bin/sh | |
eksdemo create cluster test-eks-02 --os AmazonLinux2023 | |
eksdemo delete cluster test-eks-02 | |
go install sigs.k8s.io/kubetest2@latest | |
go install sigs.k8s.io/provider-aws-test-infra/kubetest2-ec2@latest | |
AMI_ID=$(aws ssm get-parameter --name "/aws/service/eks/optimized-ami/1.30/amazon-linux-2023/x86_64/standard/recommended/image_id" | jq -r '.Parameter.Value') |