├── .claude ├── .manifest ├── agents │ ├── architecture-patterns.md │ ├── ci-developer.md │ ├── codebase-analyzer.md │ ├── codebase-locator.md │ ├── codebase-pattern-finder.md │ ├── frontend-developer.md │ ├── go-dep-updater.md │ ├── go-developer.md │ ├── project-builder.md │ ├── proposal-needed.md │ ├── proposal-writer.md │ ├── proposals-analyzer.md │ ├── proposals-locator.md │ ├── replicated-cli-user.md │ ├── researcher.md │ ├── shortcut.md │ ├── testing.md │ └── web-search-researcher.md └── commands │ ├── go-update.md │ ├── implement.md │ └── proposal.md ├── .dockerignore ├── .github ├── PULL_REQUEST_TEMPLATE.md ├── actions │ ├── addon-manifest-downloader │ │ └── action.yml │ ├── addon-testgrid-tester │ │ └── action.yml │ ├── import-external-addons │ │ ├── .babelrc │ │ ├── .gitignore │ │ ├── README.md │ │ ├── action.yml │ │ ├── dist │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── index.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── test │ │ │ └── util.js │ │ └── util.js │ └── testgrid-checker │ │ ├── .gitignore │ │ ├── action.yml │ │ ├── dist │ │ ├── index.js │ │ └── package.json │ │ ├── github.js │ │ ├── index.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── pullrequests.js │ │ └── test.js ├── dependabot.yml └── workflows │ ├── build-image.yaml │ ├── build-minio-image.yaml │ ├── build-package-prod.yaml │ ├── build-package-staging.yaml │ ├── build-test.yaml │ ├── cron-rebuild-packages-prod.yaml │ ├── cron-rebuild-packages-staging.yaml │ ├── cron-scan-images-daily.yaml │ ├── cron-testgrid-production-monthly.yaml │ ├── cron-testgrid-staging.yaml │ ├── deploy-prod.yaml │ ├── deploy-staging.yaml │ ├── import-external-addons.yaml │ ├── license.yaml │ ├── test-addon-pr.yaml │ ├── test-addon.yaml │ ├── test-testgrid-results.yaml │ ├── update-containerd.yaml │ ├── update-contour.yaml │ ├── update-ekco.yaml │ ├── update-flannel.yaml │ ├── update-goldpinger.yaml │ ├── update-kubernetes.yaml │ ├── update-metrics-server.yaml │ ├── update-minio.yaml │ ├── update-openebs.yaml │ ├── update-prometheus.yaml │ ├── update-registry.yaml │ ├── update-rook.yaml │ ├── update-sonobuoy.yaml │ ├── update-velero.yaml │ └── update-weave.yaml ├── .gitignore ├── .golangci.bck.yml ├── .golangci.yml ├── .nvmrc ├── .stignore ├── ARCHITECTURE.md ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── addons ├── README.md ├── antrea │ ├── 0.13.1 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── ipsec-psk.yaml │ │ ├── ipsec.yaml │ │ ├── kubeadm.yaml │ │ ├── kustomization.yaml │ │ └── plaintext.yaml │ ├── 1.0.0 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── ipsec-psk.yaml │ │ ├── ipsec.yaml │ │ ├── kubeadm.yaml │ │ ├── kustomization.yaml │ │ └── plaintext.yaml │ ├── 1.0.1 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── ipsec-psk.yaml │ │ ├── ipsec.yaml │ │ ├── kubeadm.yaml │ │ ├── kustomization.yaml │ │ └── plaintext.yaml │ ├── 1.1.0 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── ipsec-psk.yaml │ │ ├── ipsec.yaml │ │ ├── kubeadm.yaml │ │ ├── kustomization.yaml │ │ └── plaintext.yaml │ ├── 1.2.0 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── ipsec-psk.yaml │ │ ├── ipsec.yaml │ │ ├── kubeadm.yaml │ │ ├── kustomization.yaml │ │ └── plaintext.yaml │ ├── 1.2.1 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── ipsec-psk.yaml │ │ ├── ipsec.yaml │ │ ├── kubeadm.yaml │ │ ├── kustomization.yaml │ │ └── plaintext.yaml │ ├── 1.4.0 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── ipsec-psk.yaml │ │ ├── ipsec.yaml │ │ ├── kubeadm.yaml │ │ ├── kustomization.yaml │ │ └── plaintext.yaml │ ├── categories.json │ └── template │ │ ├── base │ │ ├── Manifest │ │ ├── install.sh │ │ ├── ipsec-psk.yaml │ │ ├── kubeadm.yaml │ │ └── kustomization.yaml │ │ ├── generate.sh │ │ └── testgrid │ │ └── tests.yaml ├── aws │ ├── 0.0.1 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── kubeadm-cluster-config-v1beta2.yml │ │ ├── kubeadm-init-config-v1beta2.yml │ │ ├── kubeadm-join-config-v1beta2.yaml │ │ ├── kustomization.yaml │ │ └── storageclass.yaml │ ├── 0.1.0 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── kubeadm-cluster-config-v1beta2.yml │ │ ├── kubeadm-init-config-v1beta2.yml │ │ ├── kubeadm-join-config-v1beta2.yaml │ │ ├── kustomization.yaml │ │ └── storageclass.yaml │ └── categories.json ├── calico │ ├── 3.9.1 │ │ ├── Manifest │ │ ├── README.md │ │ ├── calico.yaml │ │ ├── install.sh │ │ ├── kubeadm-cluster-config-v1beta2.yml │ │ ├── kubeproxy-config-v1alpha1.yml │ │ ├── kustomization.yaml │ │ └── tmpl-daemonset-pod-cidr.yaml │ └── categories.json ├── cert-manager │ ├── 1.0.3 │ │ ├── Manifest │ │ ├── cert-manager.yaml │ │ ├── install.sh │ │ └── kustomization.yaml │ ├── 1.13.2 │ │ ├── Manifest │ │ ├── cert-manager.yaml │ │ ├── install.sh │ │ └── kustomization.yaml │ ├── 1.17.1 │ │ ├── Manifest │ │ ├── cert-manager.yaml │ │ ├── install.sh │ │ └── kustomization.yaml │ ├── 1.9.1 │ │ ├── Manifest │ │ ├── cert-manager.yaml │ │ ├── install.sh │ │ └── kustomization.yaml │ ├── categories.json │ └── template │ │ └── testgrid │ │ └── k8s-docker.yaml ├── collectd │ ├── template │ │ └── testgrid │ │ │ └── k8s-docker.yaml │ └── v5 │ │ ├── Manifest │ │ ├── collectd.conf │ │ └── install.sh ├── containerd │ ├── 1.2.13 │ │ ├── Manifest │ │ ├── containerd.service │ │ └── install.sh │ ├── 1.3.7 │ │ ├── Manifest │ │ ├── containerd.service │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.3.9 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.4.10 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.4.11 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.4.12 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.4.13 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.4.3 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.4.4 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.4.6 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.4.8 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.4.9 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.5.10 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.5.11 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.6.10 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.6.11 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.6.12 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.6.13 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.6.14 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.6.15 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.6.16 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.6.18 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.6.19 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.6.20 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.6.21 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.6.22 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.6.24 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.6.25 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.6.26 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.6.27 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.6.28 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.6.31 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.6.32 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.6.33 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.6.4 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.6.6 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.6.7 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.6.8 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.6.9 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.7.25 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.7.26 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.7.27 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.7.28 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── 1.7.29 │ │ ├── Manifest │ │ ├── crictl.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ ├── README.md │ └── template │ │ ├── Dockerfile.centos7 │ │ ├── Dockerfile.centos7-force │ │ ├── Dockerfile.centos8 │ │ ├── Dockerfile.centos8.rhel │ │ ├── Dockerfile.rhel9 │ │ ├── Dockerfile.ubuntu16 │ │ ├── Dockerfile.ubuntu18 │ │ ├── Dockerfile.ubuntu20 │ │ ├── Dockerfile.ubuntu22 │ │ ├── README.md │ │ ├── base │ │ ├── crictl.yaml │ │ ├── install.sh │ │ ├── kubeadm-init-config-v1beta2.yaml │ │ └── kubeadm-join-config-v1beta2.yaml │ │ ├── host-preflight.yaml │ │ ├── script.sh │ │ └── testgrid │ │ └── k8s-ctrd.yaml ├── contour │ ├── 1.0.1 │ │ ├── Manifest │ │ ├── common.yaml │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── rbac.yaml │ │ ├── service.yaml │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── 1.10.1 │ │ ├── Manifest │ │ ├── batch.yaml │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── 1.11.0 │ │ ├── Manifest │ │ ├── batch.yaml │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── 1.12.0 │ │ ├── Manifest │ │ ├── batch.yaml │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── 1.13.0 │ │ ├── Manifest │ │ ├── batch.yaml │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── 1.13.1 │ │ ├── Manifest │ │ ├── batch.yaml │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── 1.14.0 │ │ ├── Manifest │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── patches │ │ │ └── job-image.yaml │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── 1.14.1 │ │ ├── Manifest │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── patches │ │ │ └── job-image.yaml │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── 1.15.1 │ │ ├── Manifest │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── patches │ │ │ └── job-image.yaml │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── 1.16.0 │ │ ├── Manifest │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── patches │ │ │ └── job-image.yaml │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── 1.18.0 │ │ ├── Manifest │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── patches │ │ │ └── job-image.yaml │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── 1.19.1 │ │ ├── Manifest │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── patches │ │ │ └── job-image.yaml │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── 1.20.0 │ │ ├── Manifest │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── patches │ │ │ └── job-image.yaml │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── 1.20.1 │ │ ├── Manifest │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── patches │ │ │ ├── job-image.yaml │ │ │ └── resource-limits.yaml │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── 1.21.0 │ │ ├── Manifest │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── patches │ │ │ ├── job-image.yaml │ │ │ └── resource-limits.yaml │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── 1.21.1 │ │ ├── Manifest │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── patches │ │ │ ├── job-image.yaml │ │ │ └── resource-limits.yaml │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── 1.22.0 │ │ ├── Manifest │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── patches │ │ │ ├── job-image.yaml │ │ │ └── resource-limits.yaml │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── 1.22.1 │ │ ├── Manifest │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── patches │ │ │ ├── job-image.yaml │ │ │ └── resource-limits.yaml │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── 1.23.0 │ │ ├── Manifest │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── patches │ │ │ ├── job-image.yaml │ │ │ └── resource-limits.yaml │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── 1.23.1 │ │ ├── Manifest │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── patches │ │ │ ├── job-image.yaml │ │ │ └── resource-limits.yaml │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── 1.23.2 │ │ ├── Manifest │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── patches │ │ │ ├── job-image.yaml │ │ │ └── resource-limits.yaml │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── 1.24.0 │ │ ├── Manifest │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── patches │ │ │ ├── job-image.yaml │ │ │ └── resource-limits.yaml │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── 1.24.1 │ │ ├── Manifest │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── patches │ │ │ ├── job-image.yaml │ │ │ └── resource-limits.yaml │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── 1.24.2 │ │ ├── Manifest │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── patches │ │ │ ├── job-image.yaml │ │ │ └── resource-limits.yaml │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── 1.24.3 │ │ ├── Manifest │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── patches │ │ │ ├── job-image.yaml │ │ │ └── resource-limits.yaml │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── 1.24.4 │ │ ├── Manifest │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── patches │ │ │ ├── job-image.yaml │ │ │ └── resource-limits.yaml │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── 1.25.0 │ │ ├── Manifest │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── patches │ │ │ ├── job-image.yaml │ │ │ └── resource-limits.yaml │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── 1.25.2 │ │ ├── Manifest │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── patches │ │ │ ├── job-image.yaml │ │ │ └── resource-limits.yaml │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── 1.26.0 │ │ ├── Manifest │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── patches │ │ │ ├── job-image.yaml │ │ │ └── resource-limits.yaml │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── 1.26.1 │ │ ├── Manifest │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── patches │ │ │ ├── job-image.yaml │ │ │ └── resource-limits.yaml │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── 1.27.0 │ │ ├── Manifest │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── patches │ │ │ ├── job-image.yaml │ │ │ └── resource-limits.yaml │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── 1.28.2 │ │ ├── Manifest │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── patches │ │ │ ├── job-image.yaml │ │ │ └── resource-limits.yaml │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── 1.28.3 │ │ ├── Manifest │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── patches │ │ │ ├── job-image.yaml │ │ │ └── resource-limits.yaml │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── 1.29.0 │ │ ├── Manifest │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── patches │ │ │ ├── job-image.yaml │ │ │ └── resource-limits.yaml │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── 1.30.0 │ │ ├── Manifest │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── patches │ │ │ ├── job-image.yaml │ │ │ └── resource-limits.yaml │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── 1.32.0 │ │ ├── Manifest │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── patches │ │ │ ├── job-image.yaml │ │ │ └── resource-limits.yaml │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── 1.32.1 │ │ ├── Manifest │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── patches │ │ │ ├── job-image.yaml │ │ │ └── resource-limits.yaml │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── 1.7.0 │ │ ├── Manifest │ │ ├── batch.yaml │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── tmpl-configmap.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ ├── categories.json │ └── template │ │ ├── README.md │ │ ├── base │ │ ├── Manifest │ │ ├── contour.yaml │ │ ├── install.sh │ │ ├── patches │ │ │ ├── job-image.yaml │ │ │ └── resource-limits.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-service-patch.yaml │ │ ├── script.sh │ │ └── testgrid │ │ └── k8s-docker.yaml ├── ekco │ ├── 0.28.12 │ │ ├── Manifest │ │ ├── README.md │ │ ├── configmap.tmpl.yaml │ │ ├── deployment.tmpl.yaml │ │ ├── ekco-purge-node.sh │ │ ├── install.sh │ │ ├── kustomization.yaml │ │ ├── namespace.yaml │ │ ├── rbac-kotsadm.yaml │ │ ├── rbac-minio.yaml │ │ ├── rbac-rook.yaml │ │ ├── rbac.yaml │ │ ├── reboot │ │ │ ├── ekco-reboot-containerd.service │ │ │ ├── ekco-reboot.service │ │ │ ├── shutdown.sh │ │ │ └── startup.sh │ │ ├── regen-cert-pod.yaml │ │ ├── rolebinding-kotsadm.yaml │ │ ├── rolebinding-minio.yaml │ │ ├── rolebinding-rook.yaml │ │ ├── rolebinding.yaml │ │ ├── rotate-certs-rbac.yaml │ │ ├── service.tmpl.yaml │ │ └── storageclass-scaling.yaml │ ├── categories.json │ └── template │ │ ├── base │ │ ├── Manifest │ │ ├── README.md │ │ ├── configmap.tmpl.yaml │ │ ├── deployment.tmpl.yaml │ │ ├── ekco-purge-node.sh │ │ ├── install.sh │ │ ├── kustomization.yaml │ │ ├── namespace.yaml │ │ ├── rbac-kotsadm.yaml │ │ ├── rbac-minio.yaml │ │ ├── rbac-rook.yaml │ │ ├── rbac.yaml │ │ ├── reboot │ │ │ ├── ekco-reboot-containerd.service │ │ │ ├── ekco-reboot.service │ │ │ ├── shutdown.sh │ │ │ └── startup.sh │ │ ├── regen-cert-pod.yaml │ │ ├── rolebinding-kotsadm.yaml │ │ ├── rolebinding-minio.yaml │ │ ├── rolebinding-rook.yaml │ │ ├── rolebinding.yaml │ │ ├── rotate-certs-rbac.yaml │ │ ├── service.tmpl.yaml │ │ └── storageclass-scaling.yaml │ │ ├── generate.sh │ │ └── testgrid │ │ └── k8s-docker.yaml ├── flannel │ ├── 0.20.0 │ │ ├── Manifest │ │ ├── flannel-ethtool.service │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm.yaml │ │ ├── template │ │ │ ├── iface.patch.tmpl.yaml │ │ │ ├── ipv6.patch.tmpl.yaml │ │ │ └── kube-flannel-cfg.patch.tmpl.yaml │ │ └── yaml │ │ │ ├── kube-flannel.yml │ │ │ ├── kustomization.yaml │ │ │ └── troubleshoot.yaml │ ├── 0.20.1 │ │ ├── Manifest │ │ ├── flannel-ethtool.service │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm.yaml │ │ ├── template │ │ │ ├── iface.patch.tmpl.yaml │ │ │ ├── ipv6.patch.tmpl.yaml │ │ │ └── kube-flannel-cfg.patch.tmpl.yaml │ │ └── yaml │ │ │ ├── kube-flannel.yml │ │ │ ├── kustomization.yaml │ │ │ └── troubleshoot.yaml │ ├── 0.20.2 │ │ ├── Manifest │ │ ├── flannel-ethtool.service │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm.yaml │ │ ├── template │ │ │ ├── iface.patch.tmpl.yaml │ │ │ ├── ipv6.patch.tmpl.yaml │ │ │ └── kube-flannel-cfg.patch.tmpl.yaml │ │ └── yaml │ │ │ ├── kube-flannel.yml │ │ │ ├── kustomization.yaml │ │ │ └── troubleshoot.yaml │ ├── 0.21.0 │ │ ├── Manifest │ │ ├── flannel-ethtool.service │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm.yaml │ │ ├── template │ │ │ ├── iface.patch.tmpl.yaml │ │ │ ├── ipv6.patch.tmpl.yaml │ │ │ └── kube-flannel-cfg.patch.tmpl.yaml │ │ └── yaml │ │ │ ├── kube-flannel.yml │ │ │ ├── kustomization.yaml │ │ │ └── troubleshoot.yaml │ ├── 0.21.1 │ │ ├── Manifest │ │ ├── flannel-ethtool.service │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm.yaml │ │ ├── template │ │ │ ├── iface.patch.tmpl.yaml │ │ │ ├── ipv6.patch.tmpl.yaml │ │ │ └── kube-flannel-cfg.patch.tmpl.yaml │ │ └── yaml │ │ │ ├── kube-flannel.yml │ │ │ ├── kustomization.yaml │ │ │ └── troubleshoot.yaml │ ├── 0.21.2 │ │ ├── Manifest │ │ ├── flannel-ethtool.service │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm.yaml │ │ ├── template │ │ │ ├── iface.patch.tmpl.yaml │ │ │ ├── ipv6.patch.tmpl.yaml │ │ │ └── kube-flannel-cfg.patch.tmpl.yaml │ │ └── yaml │ │ │ ├── kube-flannel.yml │ │ │ ├── kustomization.yaml │ │ │ └── troubleshoot.yaml │ ├── 0.21.3 │ │ ├── Manifest │ │ ├── flannel-ethtool.service │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm.yaml │ │ ├── template │ │ │ ├── iface.patch.tmpl.yaml │ │ │ ├── ipv6.patch.tmpl.yaml │ │ │ └── kube-flannel-cfg.patch.tmpl.yaml │ │ └── yaml │ │ │ ├── kube-flannel.yml │ │ │ ├── kustomization.yaml │ │ │ └── troubleshoot.yaml │ ├── 0.21.4 │ │ ├── Manifest │ │ ├── flannel-ethtool.service │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm.yaml │ │ ├── template │ │ │ ├── iface.patch.tmpl.yaml │ │ │ ├── ipv6.patch.tmpl.yaml │ │ │ └── kube-flannel-cfg.patch.tmpl.yaml │ │ └── yaml │ │ │ ├── kube-flannel.yml │ │ │ ├── kustomization.yaml │ │ │ └── troubleshoot.yaml │ ├── 0.21.5 │ │ ├── Manifest │ │ ├── flannel-ethtool.service │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm.yaml │ │ ├── template │ │ │ ├── iface.patch.tmpl.yaml │ │ │ ├── ipv6.patch.tmpl.yaml │ │ │ └── kube-flannel-cfg.patch.tmpl.yaml │ │ └── yaml │ │ │ ├── kube-flannel.yml │ │ │ ├── kustomization.yaml │ │ │ └── troubleshoot.yaml │ ├── 0.22.0 │ │ ├── Manifest │ │ ├── flannel-ethtool.service │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm.yaml │ │ ├── template │ │ │ ├── iface.patch.tmpl.yaml │ │ │ ├── ipv6.patch.tmpl.yaml │ │ │ └── kube-flannel-cfg.patch.tmpl.yaml │ │ └── yaml │ │ │ ├── kube-flannel.yml │ │ │ ├── kustomization.yaml │ │ │ └── troubleshoot.yaml │ ├── 0.22.1 │ │ ├── Manifest │ │ ├── flannel-ethtool.service │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm.yaml │ │ ├── template │ │ │ ├── iface.patch.tmpl.yaml │ │ │ ├── ipv6.patch.tmpl.yaml │ │ │ └── kube-flannel-cfg.patch.tmpl.yaml │ │ └── yaml │ │ │ ├── kube-flannel.yml │ │ │ ├── kustomization.yaml │ │ │ └── troubleshoot.yaml │ ├── 0.22.2 │ │ ├── Manifest │ │ ├── flannel-ethtool.service │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm.yaml │ │ ├── template │ │ │ ├── iface.patch.tmpl.yaml │ │ │ ├── ipv6.patch.tmpl.yaml │ │ │ └── kube-flannel-cfg.patch.tmpl.yaml │ │ └── yaml │ │ │ ├── kube-flannel.yml │ │ │ ├── kustomization.yaml │ │ │ └── troubleshoot.yaml │ ├── 0.22.3 │ │ ├── Manifest │ │ ├── flannel-ethtool.service │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm.yaml │ │ ├── template │ │ │ ├── iface.patch.tmpl.yaml │ │ │ ├── ipv6.patch.tmpl.yaml │ │ │ └── kube-flannel-cfg.patch.tmpl.yaml │ │ └── yaml │ │ │ ├── kube-flannel.yml │ │ │ ├── kustomization.yaml │ │ │ └── troubleshoot.yaml │ ├── 0.23.0 │ │ ├── Manifest │ │ ├── flannel-ethtool.service │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm.yaml │ │ ├── template │ │ │ ├── iface.patch.tmpl.yaml │ │ │ ├── ipv6.patch.tmpl.yaml │ │ │ └── kube-flannel-cfg.patch.tmpl.yaml │ │ └── yaml │ │ │ ├── kube-flannel.yml │ │ │ ├── kustomization.yaml │ │ │ └── troubleshoot.yaml │ ├── 0.24.0 │ │ ├── Manifest │ │ ├── flannel-ethtool.service │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm.yaml │ │ ├── template │ │ │ ├── iface.patch.tmpl.yaml │ │ │ ├── ipv6.patch.tmpl.yaml │ │ │ └── kube-flannel-cfg.patch.tmpl.yaml │ │ └── yaml │ │ │ ├── kube-flannel.yml │ │ │ ├── kustomization.yaml │ │ │ └── troubleshoot.yaml │ ├── 0.24.1 │ │ ├── Manifest │ │ ├── flannel-ethtool.service │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm.yaml │ │ ├── template │ │ │ ├── iface.patch.tmpl.yaml │ │ │ ├── ipv6.patch.tmpl.yaml │ │ │ └── kube-flannel-cfg.patch.tmpl.yaml │ │ └── yaml │ │ │ ├── kube-flannel.yml │ │ │ ├── kustomization.yaml │ │ │ └── troubleshoot.yaml │ ├── 0.24.2 │ │ ├── Manifest │ │ ├── flannel-ethtool.service │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm.yaml │ │ ├── template │ │ │ ├── iface.patch.tmpl.yaml │ │ │ ├── ipv6.patch.tmpl.yaml │ │ │ └── kube-flannel-cfg.patch.tmpl.yaml │ │ └── yaml │ │ │ ├── kube-flannel.yml │ │ │ ├── kustomization.yaml │ │ │ └── troubleshoot.yaml │ ├── 0.24.4 │ │ ├── Manifest │ │ ├── flannel-ethtool.service │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm.yaml │ │ ├── template │ │ │ ├── iface.patch.tmpl.yaml │ │ │ ├── ipv6.patch.tmpl.yaml │ │ │ └── kube-flannel-cfg.patch.tmpl.yaml │ │ └── yaml │ │ │ ├── kube-flannel.yml │ │ │ ├── kustomization.yaml │ │ │ └── troubleshoot.yaml │ ├── 0.25.1 │ │ ├── Manifest │ │ ├── flannel-ethtool.service │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm.yaml │ │ ├── template │ │ │ ├── iface.patch.tmpl.yaml │ │ │ ├── ipv6.patch.tmpl.yaml │ │ │ └── kube-flannel-cfg.patch.tmpl.yaml │ │ └── yaml │ │ │ ├── kube-flannel.yml │ │ │ ├── kustomization.yaml │ │ │ └── troubleshoot.yaml │ ├── 0.25.2 │ │ ├── Manifest │ │ ├── flannel-ethtool.service │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm.yaml │ │ ├── template │ │ │ ├── iface.patch.tmpl.yaml │ │ │ ├── ipv6.patch.tmpl.yaml │ │ │ └── kube-flannel-cfg.patch.tmpl.yaml │ │ └── yaml │ │ │ ├── kube-flannel.yml │ │ │ ├── kustomization.yaml │ │ │ └── troubleshoot.yaml │ ├── 0.25.3 │ │ ├── Manifest │ │ ├── flannel-ethtool.service │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm.yaml │ │ ├── template │ │ │ ├── iface.patch.tmpl.yaml │ │ │ ├── ipv6.patch.tmpl.yaml │ │ │ └── kube-flannel-cfg.patch.tmpl.yaml │ │ └── yaml │ │ │ ├── kube-flannel.yml │ │ │ ├── kustomization.yaml │ │ │ └── troubleshoot.yaml │ ├── 0.25.4 │ │ ├── Manifest │ │ ├── flannel-ethtool.service │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm.yaml │ │ ├── template │ │ │ ├── iface.patch.tmpl.yaml │ │ │ ├── ipv6.patch.tmpl.yaml │ │ │ └── kube-flannel-cfg.patch.tmpl.yaml │ │ └── yaml │ │ │ ├── kube-flannel.yml │ │ │ ├── kustomization.yaml │ │ │ └── troubleshoot.yaml │ ├── 0.25.5 │ │ ├── Manifest │ │ ├── flannel-ethtool.service │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm.yaml │ │ ├── template │ │ │ ├── iface.patch.tmpl.yaml │ │ │ ├── ipv6.patch.tmpl.yaml │ │ │ └── kube-flannel-cfg.patch.tmpl.yaml │ │ └── yaml │ │ │ ├── kube-flannel.yml │ │ │ ├── kustomization.yaml │ │ │ └── troubleshoot.yaml │ ├── 0.25.6 │ │ ├── Manifest │ │ ├── flannel-ethtool.service │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm.yaml │ │ ├── template │ │ │ ├── iface.patch.tmpl.yaml │ │ │ ├── ipv6.patch.tmpl.yaml │ │ │ └── kube-flannel-cfg.patch.tmpl.yaml │ │ └── yaml │ │ │ ├── kube-flannel.yml │ │ │ ├── kustomization.yaml │ │ │ └── troubleshoot.yaml │ ├── 0.25.7 │ │ ├── Manifest │ │ ├── flannel-ethtool.service │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm.yaml │ │ ├── template │ │ │ ├── iface.patch.tmpl.yaml │ │ │ ├── ipv6.patch.tmpl.yaml │ │ │ └── kube-flannel-cfg.patch.tmpl.yaml │ │ └── yaml │ │ │ ├── kube-flannel.yml │ │ │ ├── kustomization.yaml │ │ │ └── troubleshoot.yaml │ ├── 0.26.0 │ │ ├── Manifest │ │ ├── flannel-ethtool.service │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm.yaml │ │ ├── template │ │ │ ├── iface.patch.tmpl.yaml │ │ │ ├── ipv6.patch.tmpl.yaml │ │ │ └── kube-flannel-cfg.patch.tmpl.yaml │ │ └── yaml │ │ │ ├── kube-flannel.yml │ │ │ ├── kustomization.yaml │ │ │ └── troubleshoot.yaml │ ├── 0.26.1 │ │ ├── Manifest │ │ ├── flannel-ethtool.service │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm.yaml │ │ ├── template │ │ │ ├── iface.patch.tmpl.yaml │ │ │ ├── ipv6.patch.tmpl.yaml │ │ │ └── kube-flannel-cfg.patch.tmpl.yaml │ │ └── yaml │ │ │ ├── kube-flannel.yml │ │ │ ├── kustomization.yaml │ │ │ └── troubleshoot.yaml │ ├── 0.26.2 │ │ ├── Manifest │ │ ├── flannel-ethtool.service │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm.yaml │ │ ├── template │ │ │ ├── iface.patch.tmpl.yaml │ │ │ ├── ipv6.patch.tmpl.yaml │ │ │ └── kube-flannel-cfg.patch.tmpl.yaml │ │ └── yaml │ │ │ ├── kube-flannel.yml │ │ │ ├── kustomization.yaml │ │ │ └── troubleshoot.yaml │ ├── 0.26.3 │ │ ├── Manifest │ │ ├── flannel-ethtool.service │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm.yaml │ │ ├── template │ │ │ ├── iface.patch.tmpl.yaml │ │ │ ├── ipv6.patch.tmpl.yaml │ │ │ └── kube-flannel-cfg.patch.tmpl.yaml │ │ └── yaml │ │ │ ├── kube-flannel.yml │ │ │ ├── kustomization.yaml │ │ │ └── troubleshoot.yaml │ ├── 0.26.4 │ │ ├── Manifest │ │ ├── flannel-ethtool.service │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm.yaml │ │ ├── template │ │ │ ├── iface.patch.tmpl.yaml │ │ │ ├── ipv6.patch.tmpl.yaml │ │ │ └── kube-flannel-cfg.patch.tmpl.yaml │ │ └── yaml │ │ │ ├── kube-flannel.yml │ │ │ ├── kustomization.yaml │ │ │ └── troubleshoot.yaml │ ├── 0.26.5 │ │ ├── Manifest │ │ ├── flannel-ethtool.service │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm.yaml │ │ ├── template │ │ │ ├── iface.patch.tmpl.yaml │ │ │ ├── ipv6.patch.tmpl.yaml │ │ │ └── kube-flannel-cfg.patch.tmpl.yaml │ │ └── yaml │ │ │ ├── kube-flannel.yml │ │ │ ├── kustomization.yaml │ │ │ └── troubleshoot.yaml │ ├── 0.27.1 │ │ ├── Manifest │ │ ├── flannel-ethtool.service │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm.yaml │ │ ├── template │ │ │ ├── iface.patch.tmpl.yaml │ │ │ ├── ipv6.patch.tmpl.yaml │ │ │ └── kube-flannel-cfg.patch.tmpl.yaml │ │ └── yaml │ │ │ ├── kube-flannel.yml │ │ │ ├── kustomization.yaml │ │ │ └── troubleshoot.yaml │ ├── 0.27.2 │ │ ├── Manifest │ │ ├── flannel-ethtool.service │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm.yaml │ │ ├── template │ │ │ ├── iface.patch.tmpl.yaml │ │ │ ├── ipv6.patch.tmpl.yaml │ │ │ └── kube-flannel-cfg.patch.tmpl.yaml │ │ └── yaml │ │ │ ├── kube-flannel.yml │ │ │ ├── kustomization.yaml │ │ │ └── troubleshoot.yaml │ ├── 0.27.3 │ │ ├── Manifest │ │ ├── flannel-ethtool.service │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm.yaml │ │ ├── template │ │ │ ├── iface.patch.tmpl.yaml │ │ │ ├── ipv6.patch.tmpl.yaml │ │ │ └── kube-flannel-cfg.patch.tmpl.yaml │ │ └── yaml │ │ │ ├── kube-flannel.yml │ │ │ ├── kustomization.yaml │ │ │ └── troubleshoot.yaml │ ├── 0.27.4 │ │ ├── Manifest │ │ ├── flannel-ethtool.service │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm.yaml │ │ ├── template │ │ │ ├── iface.patch.tmpl.yaml │ │ │ ├── ipv6.patch.tmpl.yaml │ │ │ └── kube-flannel-cfg.patch.tmpl.yaml │ │ └── yaml │ │ │ ├── kube-flannel.yml │ │ │ ├── kustomization.yaml │ │ │ └── troubleshoot.yaml │ ├── categories.json │ └── template │ │ ├── base │ │ ├── Manifest │ │ ├── flannel-ethtool.service │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kubeadm.yaml │ │ ├── template │ │ │ ├── iface.patch.tmpl.yaml │ │ │ ├── ipv6.patch.tmpl.yaml │ │ │ └── kube-flannel-cfg.patch.tmpl.yaml │ │ └── yaml │ │ │ ├── kustomization.yaml │ │ │ └── troubleshoot.yaml │ │ ├── generate.sh │ │ └── testgrid │ │ └── k8s-ctrd.yaml ├── fluentd │ ├── 1.7.4 │ │ ├── Manifest │ │ ├── elasticsearch │ │ │ ├── elasticsearch-statefulset.yaml │ │ │ ├── elasticsearch-svc.yaml │ │ │ └── kustomization.yaml │ │ ├── fluentd │ │ │ ├── fluent.conf │ │ │ ├── fluentd-efk-daemonset.yaml │ │ │ ├── fluentd-efk-rbac.yaml │ │ │ └── kustomization.yaml │ │ ├── fluentd_standalone │ │ │ ├── fluent.conf │ │ │ ├── fluentd-fd-only-daemonset.yaml │ │ │ ├── fluentd-fd-only-rbac.yaml │ │ │ └── kustomization.yaml │ │ ├── install.sh │ │ ├── kibana │ │ │ ├── kibana-svc.yaml │ │ │ ├── kibana.yaml │ │ │ └── kustomization.yaml │ │ ├── logging │ │ │ ├── create-logging-ns.yaml │ │ │ └── kustomization.yaml │ │ └── test-log-generator.yaml │ ├── categories.json │ └── template │ │ └── testgrid │ │ └── k8s-docker.yaml ├── goldpinger │ ├── 3.10.0-6.2.0 │ │ ├── Manifest │ │ ├── goldpinger.yaml │ │ ├── install.sh │ │ ├── kustomization.yaml │ │ ├── servicemonitor.yaml │ │ └── troubleshoot.yaml │ ├── 3.10.2-1.0.1 │ │ ├── Manifest │ │ ├── goldpinger.yaml │ │ ├── install.sh │ │ ├── kustomization.yaml │ │ ├── servicemonitor.yaml │ │ └── troubleshoot.yaml │ ├── 3.2.0-4.1.1 │ │ ├── Manifest │ │ ├── goldpinger.yaml │ │ ├── install.sh │ │ ├── kustomization.yaml │ │ └── servicemonitor.yaml │ ├── 3.2.0-4.2.1 │ │ ├── Manifest │ │ ├── goldpinger.yaml │ │ ├── install.sh │ │ ├── kustomization.yaml │ │ └── servicemonitor.yaml │ ├── 3.2.0-5.0.0 │ │ ├── Manifest │ │ ├── goldpinger.yaml │ │ ├── install.sh │ │ ├── kustomization.yaml │ │ └── servicemonitor.yaml │ ├── 3.3.0-5.1.0 │ │ ├── Manifest │ │ ├── goldpinger.yaml │ │ ├── install.sh │ │ ├── kustomization.yaml │ │ └── servicemonitor.yaml │ ├── 3.5.1-5.2.0 │ │ ├── Manifest │ │ ├── goldpinger.yaml │ │ ├── install.sh │ │ ├── kustomization.yaml │ │ ├── servicemonitor.yaml │ │ └── troubleshoot.yaml │ ├── 3.6.1-5.4.2 │ │ ├── Manifest │ │ ├── goldpinger.yaml │ │ ├── install.sh │ │ ├── kustomization.yaml │ │ ├── servicemonitor.yaml │ │ └── troubleshoot.yaml │ ├── 3.7.0-5.5.0 │ │ ├── Manifest │ │ ├── goldpinger.yaml │ │ ├── install.sh │ │ ├── kustomization.yaml │ │ ├── servicemonitor.yaml │ │ └── troubleshoot.yaml │ ├── 3.7.0-5.6.0 │ │ ├── Manifest │ │ ├── goldpinger.yaml │ │ ├── install.sh │ │ ├── kustomization.yaml │ │ ├── servicemonitor.yaml │ │ └── troubleshoot.yaml │ ├── 3.7.0-6.0.1 │ │ ├── Manifest │ │ ├── goldpinger.yaml │ │ ├── install.sh │ │ ├── kustomization.yaml │ │ ├── servicemonitor.yaml │ │ └── troubleshoot.yaml │ ├── 3.9.0-6.1.2 │ │ ├── Manifest │ │ ├── goldpinger.yaml │ │ ├── install.sh │ │ ├── kustomization.yaml │ │ ├── servicemonitor.yaml │ │ └── troubleshoot.yaml │ ├── categories.json │ └── template │ │ ├── base │ │ ├── Manifest │ │ ├── install.sh │ │ ├── kustomization.yaml │ │ ├── servicemonitor.yaml │ │ └── troubleshoot.yaml │ │ ├── generate.sh │ │ ├── testgrid │ │ └── tests.yaml │ │ ├── values-bloomberg.yaml │ │ └── values.yaml ├── kotsadm │ ├── 0.9.10 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-auto-create-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ ├── tmpl-start-kotsadm-web.sh │ │ ├── tmpl-web-node-port.yaml │ │ └── web.yaml │ ├── 0.9.11 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-auto-create-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ ├── tmpl-start-kotsadm-web.sh │ │ ├── tmpl-web-node-port.yaml │ │ └── web.yaml │ ├── 0.9.12 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-auto-create-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ ├── tmpl-start-kotsadm-web.sh │ │ ├── tmpl-web-node-port.yaml │ │ └── web.yaml │ ├── 0.9.13 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-auto-create-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ ├── tmpl-start-kotsadm-web.sh │ │ ├── tmpl-web-node-port.yaml │ │ └── web.yaml │ ├── 0.9.14 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-auto-create-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ ├── tmpl-start-kotsadm-web.sh │ │ ├── tmpl-web-node-port.yaml │ │ └── web.yaml │ ├── 0.9.15 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-auto-create-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ ├── tmpl-start-kotsadm-web.sh │ │ ├── tmpl-web-node-port.yaml │ │ └── web.yaml │ ├── 0.9.9 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-auto-create-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ ├── tmpl-start-kotsadm-web.sh │ │ └── web.yaml │ ├── 1.0.0 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-auto-create-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ ├── tmpl-start-kotsadm-web.sh │ │ ├── tmpl-web-node-port.yaml │ │ └── web.yaml │ ├── 1.0.1 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-auto-create-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ ├── tmpl-start-kotsadm-web.sh │ │ ├── tmpl-web-node-port.yaml │ │ └── web.yaml │ ├── 1.1.0 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-auto-create-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ ├── tmpl-start-kotsadm-web.sh │ │ ├── tmpl-web-node-port.yaml │ │ └── web.yaml │ ├── 1.10.0 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-auto-create-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ ├── tmpl-start-kotsadm-web.sh │ │ ├── tmpl-web-node-port.yaml │ │ └── web.yaml │ ├── 1.10.1 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-auto-create-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ ├── tmpl-start-kotsadm-web.sh │ │ ├── tmpl-web-node-port.yaml │ │ └── web.yaml │ ├── 1.10.2 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-auto-create-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ ├── tmpl-start-kotsadm-web.sh │ │ ├── tmpl-web-node-port.yaml │ │ └── web.yaml │ ├── 1.10.3 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-auto-create-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ ├── tmpl-start-kotsadm-web.sh │ │ ├── tmpl-web-node-port.yaml │ │ └── web.yaml │ ├── 1.11.1 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-auto-create-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.11.2 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-auto-create-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.11.3 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-auto-create-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.11.4 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-auto-create-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.12.0 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-auto-create-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.12.1 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-auto-create-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.12.2 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.13.0 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.13.1 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.13.2 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.13.3 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.13.4 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.13.5 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.13.6 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.13.8 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.13.9 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.14.0 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.14.1 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.14.2 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.15.0 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.15.1 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.15.2 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.15.3 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.15.4 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.15.5 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.16.0 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-api-proxy.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.16.1 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-api-proxy.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.16.2 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-api-proxy.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.17.0 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-api-proxy.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.17.1 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-api-proxy.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.17.2 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-api-proxy.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.18.0 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-api-proxy.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.18.1 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-api-proxy.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.19.0 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.19.1 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.19.2 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.19.3 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.19.4 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.19.5 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.19.6 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.2.0 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-auto-create-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ ├── tmpl-start-kotsadm-web.sh │ │ ├── tmpl-web-node-port.yaml │ │ └── web.yaml │ ├── 1.20.0 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.20.1 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.20.2 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.20.3 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.21.0 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.21.1 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.21.2 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.21.3 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.22.0 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.22.1 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.22.2 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.22.3 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.22.4 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.23.0 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.23.1 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.24.0 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.24.1 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.24.2 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.25.0 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.25.1 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.25.2 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.26.0 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.27.0 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.27.1 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.28.0 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.29.0 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.29.1 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.29.2 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.29.3 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.3.0 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-auto-create-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ ├── tmpl-start-kotsadm-web.sh │ │ ├── tmpl-web-node-port.yaml │ │ └── web.yaml │ ├── 1.30.0 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.31.0 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.31.1 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.32.0 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.33.0 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.33.1 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.33.2 │ │ ├── Manifest │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.34.0 │ │ ├── Manifest │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.35.0 │ │ ├── Manifest │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.36.0 │ │ ├── Manifest │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.36.1 │ │ ├── Manifest │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.37.0 │ │ ├── Manifest │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.38.0 │ │ ├── Manifest │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.38.1 │ │ ├── Manifest │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.39.0 │ │ ├── Manifest │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.39.1 │ │ ├── Manifest │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.4.0 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-auto-create-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ ├── tmpl-start-kotsadm-web.sh │ │ ├── tmpl-web-node-port.yaml │ │ └── web.yaml │ ├── 1.4.1 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-auto-create-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ ├── tmpl-start-kotsadm-web.sh │ │ ├── tmpl-web-node-port.yaml │ │ └── web.yaml │ ├── 1.40.0 │ │ ├── Manifest │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.41.0 │ │ ├── Manifest │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.41.1 │ │ ├── Manifest │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.42.0 │ │ ├── Manifest │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.42.1 │ │ ├── Manifest │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.43.0 │ │ ├── Manifest │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.43.1 │ │ ├── Manifest │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.43.2 │ │ ├── Manifest │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.44.0 │ │ ├── Manifest │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.44.1 │ │ ├── Manifest │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.45.0 │ │ ├── Manifest │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.46.0 │ │ ├── Manifest │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-airgap.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ ├── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.47.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.47.1 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.47.2 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.47.3 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.48.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.48.1 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.49.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.5.0 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-auto-create-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ ├── tmpl-start-kotsadm-web.sh │ │ ├── tmpl-web-node-port.yaml │ │ └── web.yaml │ ├── 1.50.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.50.1 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.50.2 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.51.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.52.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.52.1 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.53.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.54.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.55.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.56.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.57.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.58.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.58.1 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.58.2 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.59.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.59.1 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.59.2 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.59.3 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.6.0 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-auto-create-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ ├── tmpl-start-kotsadm-web.sh │ │ ├── tmpl-web-node-port.yaml │ │ └── web.yaml │ ├── 1.60.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.61.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.62.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.63.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.64.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.65.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.66.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.67.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.68.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.69.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.69.1 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.7.0 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-auto-create-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ ├── tmpl-start-kotsadm-web.sh │ │ ├── tmpl-web-node-port.yaml │ │ └── web.yaml │ ├── 1.70.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.70.1 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.71.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.72.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.72.1 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.72.2 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.73.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.74.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.75.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.76.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.76.1 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.77.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.78.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.79.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.8.0 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-auto-create-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ ├── tmpl-start-kotsadm-web.sh │ │ ├── tmpl-web-node-port.yaml │ │ └── web.yaml │ ├── 1.80.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.81.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.81.1 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.82.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.83.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.84.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.85.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.86.0 │ │ ├── Manifest │ │ ├── deployment │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-deployment.yaml │ │ │ ├── patches │ │ │ │ └── api-prometheus.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kotsadm-postgres-rename-pvc.yaml │ │ ├── kotsadm.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ ├── statefulset │ │ │ ├── kotsadm-airgap.yaml │ │ │ ├── kotsadm-statefulset.yaml │ │ │ ├── patches │ │ │ │ ├── api-prometheus.yaml │ │ │ │ └── s3-migration.yaml │ │ │ ├── tmpl-kotsadm-cacerts.yaml │ │ │ ├── tmpl-kotsadm-installation-id.yaml │ │ │ └── tmpl-kotsadm-proxy.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-authstring.yaml │ │ ├── tmpl-secret-cluster-token.yaml │ │ ├── tmpl-secret-dex-postgres.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ └── tmpl-start-kotsadm-web.sh │ ├── 1.9.0 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-auto-create-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ ├── tmpl-start-kotsadm-web.sh │ │ ├── tmpl-web-node-port.yaml │ │ └── web.yaml │ ├── 1.9.1 │ │ ├── Manifest │ │ ├── api.yaml │ │ ├── install.sh │ │ ├── join-rbac.yaml │ │ ├── kurl-proxy │ │ │ ├── kustomization.yaml │ │ │ ├── rbac.yaml │ │ │ ├── tmpl-deployment.yaml │ │ │ └── tmpl-service.yaml │ │ ├── kustomization.yaml │ │ ├── operator.yaml │ │ ├── patches │ │ │ └── api-prometheus.yaml │ │ ├── postgres.yaml │ │ ├── schemahero.yaml │ │ ├── tmpl-secret-api-encryption.yaml │ │ ├── tmpl-secret-auto-create-cluster-token.yaml │ │ ├── tmpl-secret-password.yaml │ │ ├── tmpl-secret-postgres.yaml │ │ ├── tmpl-secret-s3.yaml │ │ ├── tmpl-secret-session.yaml │ │ ├── tmpl-start-kotsadm-web.sh │ │ ├── tmpl-web-node-port.yaml │ │ └── web.yaml │ └── categories.json ├── longhorn │ ├── 1.1.0 │ │ ├── Manifest │ │ ├── crds.yaml │ │ ├── driver.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kustomization.yaml │ │ ├── manager.yaml │ │ ├── namespace.yaml │ │ ├── priority-class.yaml │ │ ├── psp.yaml │ │ ├── rbac.yaml │ │ ├── settings-configmap.yaml │ │ ├── storageclass-configmap.yaml │ │ ├── storageclass-default-configmap.yaml │ │ ├── tmpl-ui-deployment.yaml │ │ └── tmpl-ui-service.yaml │ ├── 1.1.1 │ │ ├── AllResources.yaml │ │ ├── Manifest │ │ ├── crds.yaml │ │ ├── driver-priority.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kustomization.yaml │ │ ├── manager-priority.yaml │ │ ├── storageclass-default-configmap.yaml │ │ ├── tmpl-mount-propagation.yaml │ │ ├── tmpl-ui-deployment.yaml │ │ └── tmpl-ui-service.yaml │ ├── 1.1.2 │ │ ├── AllResources.yaml │ │ ├── Manifest │ │ ├── crds.yaml │ │ ├── driver-priority.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kustomization.yaml │ │ ├── manager-priority.yaml │ │ ├── storageclass-default-configmap.yaml │ │ ├── tmpl-mount-propagation.yaml │ │ ├── tmpl-ui-deployment.yaml │ │ └── tmpl-ui-service.yaml │ ├── 1.2.2 │ │ ├── AllResources.yaml │ │ ├── Manifest │ │ ├── crds.yaml │ │ ├── driver-priority.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kustomization.yaml │ │ ├── manager-priority.yaml │ │ ├── storageclass-default-configmap.yaml │ │ ├── tmpl-defaults-cm.yaml │ │ ├── tmpl-mount-propagation.yaml │ │ ├── tmpl-ui-deployment.yaml │ │ └── tmpl-ui-service.yaml │ ├── 1.2.4 │ │ ├── AllResources.yaml │ │ ├── Manifest │ │ ├── crds.yaml │ │ ├── driver-priority.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── kustomization.yaml │ │ ├── manager-priority.yaml │ │ ├── storageclass-default-configmap.yaml │ │ ├── tmpl-defaults-cm.yaml │ │ ├── tmpl-mount-propagation.yaml │ │ ├── tmpl-ui-deployment.yaml │ │ └── tmpl-ui-service.yaml │ ├── 1.3.1 │ │ ├── Manifest │ │ ├── crds.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── template │ │ │ ├── mount-propagation.yaml │ │ │ ├── patch-defaults-cm.yaml │ │ │ ├── patch-ui-deployment.yaml │ │ │ ├── patch-ui-service.yaml │ │ │ └── storageclass.yaml │ │ └── yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── daemonset-sa.1.yaml │ │ │ ├── daemonset-sa.yaml │ │ │ ├── default-setting.yaml │ │ │ ├── deployment-driver.yaml │ │ │ ├── deployment-ui.1.yaml │ │ │ ├── deployment-ui.yaml │ │ │ ├── deployment-webhook.1.yaml │ │ │ ├── deployment-webhook.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── patch-driver-priority.yaml │ │ │ ├── patch-manager-priority.yaml │ │ │ ├── psp.1.yaml │ │ │ ├── psp.2.yaml │ │ │ ├── psp.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── services.1.yaml │ │ │ ├── services.2.yaml │ │ │ ├── services.3.yaml │ │ │ └── services.yaml │ ├── categories.json │ └── template │ │ ├── base │ │ ├── Manifest │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── template │ │ │ ├── mount-propagation.yaml │ │ │ ├── patch-defaults-cm.yaml │ │ │ ├── patch-ui-deployment.yaml │ │ │ └── patch-ui-service.yaml │ │ └── yaml │ │ │ ├── kustomization.yaml │ │ │ ├── patch-driver-priority.yaml │ │ │ └── patch-manager-priority.yaml │ │ ├── generate.sh │ │ └── testgrid │ │ └── k8s-ctrd.yaml ├── metrics-server │ ├── 0.3.7 │ │ ├── Manifest │ │ ├── components.yaml │ │ ├── install.sh │ │ ├── kubelet-insecure-tls.yaml │ │ └── kustomization.yaml │ ├── 0.4.1 │ │ ├── Manifest │ │ ├── components.yaml │ │ ├── install.sh │ │ ├── kubelet-insecure-tls.yaml │ │ └── kustomization.yaml │ ├── 0.6.2 │ │ ├── Manifest │ │ ├── components.yaml │ │ ├── install.sh │ │ ├── kubelet-insecure-tls.yaml │ │ └── kustomization.yaml │ ├── 0.6.3 │ │ ├── Manifest │ │ ├── components.yaml │ │ ├── install.sh │ │ ├── kubelet-insecure-tls.yaml │ │ └── kustomization.yaml │ ├── 0.6.4 │ │ ├── Manifest │ │ ├── components.yaml │ │ ├── install.sh │ │ ├── kubelet-insecure-tls.yaml │ │ └── kustomization.yaml │ ├── 0.7.2 │ │ ├── Manifest │ │ ├── components.yaml │ │ ├── install.sh │ │ ├── kubelet-insecure-tls.yaml │ │ └── kustomization.yaml │ ├── 0.8.0 │ │ ├── Manifest │ │ ├── components.yaml │ │ ├── install.sh │ │ ├── kubelet-insecure-tls.yaml │ │ └── kustomization.yaml │ ├── categories.json │ └── template │ │ ├── base │ │ ├── Manifest │ │ ├── install.sh │ │ ├── kubelet-insecure-tls.yaml │ │ └── kustomization.yaml │ │ ├── generate.sh │ │ └── testgrid │ │ └── k8s-docker.yaml ├── minio │ ├── 2020-01-25T02-50-51Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2022-06-11T19-55-32Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2022-07-06T20-29-49Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2022-07-17T15-43-14Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2022-08-02T23-59-16Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2022-08-22T23-53-06Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2022-09-01T23-53-36Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2022-09-07T22-25-02Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2022-09-17T00-09-45Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2022-09-25T15-44-53Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2022-10-02T19-29-29Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2022-10-05T14-58-27Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2022-10-08T20-11-00Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2022-10-15T19-57-03Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2022-10-20T00-55-09Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2022-12-12T19-27-27Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2023-01-02T09-40-09Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2023-01-06T18-11-18Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2023-01-12T02-06-16Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2023-01-18T04-36-38Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2023-01-20T02-05-44Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2023-01-25T00-19-54Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2023-01-31T02-24-19Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2023-02-09T05-16-53Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2023-02-10T18-48-39Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2023-02-17T17-52-43Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2023-02-22T18-23-45Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2023-02-27T18-10-45Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2023-03-09T23-16-13Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2023-03-13T19-46-17Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2023-03-20T20-16-18Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2023-03-24T21-41-23Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2023-04-13T03-08-07Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2023-04-20T17-56-55Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2023-05-04T21-44-30Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2023-05-18T00-05-36Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2023-06-09T07-32-12Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2023-06-19T19-52-50Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2023-06-23T20-26-00Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2023-06-29T05-12-28Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2023-08-04T17-40-21Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2023-08-23T10-07-06Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2023-09-04T19-57-37Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2023-09-23T03-47-50Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2023-09-30T07-02-29Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2023-10-07T15-07-38Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2023-10-16T04-13-43Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2023-11-01T18-37-25Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2023-11-11T08-14-41Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2023-11-15T20-43-25Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2023-12-02T10-51-33Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2023-12-09T18-17-51Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2024-01-01T16-36-33Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2024-02-04T22-36-13Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2024-02-17T01-15-57Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2024-03-26T22-10-45Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2024-04-06T05-26-02Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2024-05-10T01-41-38Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2024-08-03T04-33-23Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2024-08-17T01-24-54Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2024-08-26T15-33-07Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2024-10-29T16-01-48Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2024-11-07T00-52-20Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2025-02-07T23-21-09Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2025-02-18T16-25-55Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2025-07-23T15-54-02Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2025-09-07T16-13-09Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── 2025-10-15T17-29-55Z │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ ├── build-images │ │ └── minio │ │ │ ├── Dockerfile │ │ │ └── README.md │ ├── categories.json │ └── template │ │ ├── base │ │ ├── Manifest │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── migrate-fs │ │ │ ├── hostpath │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ └── service.yaml │ │ │ ├── minio-backup-pvc.yaml │ │ │ ├── minio-pvc.yaml │ │ │ └── pvc │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── original-service.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ └── service.yaml │ │ ├── service.yaml │ │ ├── tmpl-creds-secret.yaml │ │ ├── tmpl-deployment-hostpath.yaml │ │ ├── tmpl-deployment-pvc.yaml │ │ ├── tmpl-ha-statefulset.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── tmpl-pvc.yaml │ │ ├── generate.sh │ │ └── testgrid │ │ └── k8s-docker.yaml ├── nodeless │ ├── 0.0.1 │ │ ├── Manifest │ │ ├── create-webhook.sh │ │ ├── install.sh │ │ ├── ip-masq-agent.yaml │ │ ├── kiyot-device-plugin.yaml │ │ ├── kiyot-kube-proxy.yaml │ │ ├── kiyot-webhook.yaml │ │ ├── kiyot.yaml │ │ ├── kubeadm-init-config-v1beta2.yml │ │ ├── kubeadm-join-config-v1beta2.yaml │ │ ├── kubeproxy-config-v1alpha1.yml │ │ └── kustomization.yaml │ ├── README.md │ └── categories.json ├── openebs │ ├── 3.10.0 │ │ ├── Manifest │ │ ├── install.sh │ │ └── spec │ │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ └── kustomization.yaml │ │ │ ├── openebs.tmpl.yaml │ │ │ ├── storage │ │ │ ├── kustomization.yaml │ │ │ ├── tmpl-localpv-storage-class.yaml │ │ │ └── tmpl-patch-localpv-default.yaml │ │ │ ├── tmpl-kustomization.yaml │ │ │ ├── tmpl-namespace.yaml │ │ │ └── tmpl-troubleshoot.yaml │ ├── 3.2.0 │ │ ├── Manifest │ │ ├── install.sh │ │ └── spec │ │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ └── kustomization.yaml │ │ │ ├── openebs.tmpl.yaml │ │ │ ├── storage │ │ │ ├── kustomization.yaml │ │ │ ├── tmpl-localpv-storage-class.yaml │ │ │ └── tmpl-patch-localpv-default.yaml │ │ │ ├── tmpl-kustomization.yaml │ │ │ ├── tmpl-namespace.yaml │ │ │ └── tmpl-troubleshoot.yaml │ ├── 3.3.0 │ │ ├── Manifest │ │ ├── install.sh │ │ └── spec │ │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ └── kustomization.yaml │ │ │ ├── openebs.tmpl.yaml │ │ │ ├── storage │ │ │ ├── kustomization.yaml │ │ │ ├── tmpl-localpv-storage-class.yaml │ │ │ └── tmpl-patch-localpv-default.yaml │ │ │ ├── tmpl-kustomization.yaml │ │ │ ├── tmpl-namespace.yaml │ │ │ └── tmpl-troubleshoot.yaml │ ├── 3.4.0 │ │ ├── Manifest │ │ ├── install.sh │ │ └── spec │ │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ └── kustomization.yaml │ │ │ ├── openebs.tmpl.yaml │ │ │ ├── storage │ │ │ ├── kustomization.yaml │ │ │ ├── tmpl-localpv-storage-class.yaml │ │ │ └── tmpl-patch-localpv-default.yaml │ │ │ ├── tmpl-kustomization.yaml │ │ │ ├── tmpl-namespace.yaml │ │ │ └── tmpl-troubleshoot.yaml │ ├── 3.5.0 │ │ ├── Manifest │ │ ├── install.sh │ │ └── spec │ │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ └── kustomization.yaml │ │ │ ├── openebs.tmpl.yaml │ │ │ ├── storage │ │ │ ├── kustomization.yaml │ │ │ ├── tmpl-localpv-storage-class.yaml │ │ │ └── tmpl-patch-localpv-default.yaml │ │ │ ├── tmpl-kustomization.yaml │ │ │ ├── tmpl-namespace.yaml │ │ │ └── tmpl-troubleshoot.yaml │ ├── 3.6.0 │ │ ├── Manifest │ │ ├── install.sh │ │ └── spec │ │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ └── kustomization.yaml │ │ │ ├── openebs.tmpl.yaml │ │ │ ├── storage │ │ │ ├── kustomization.yaml │ │ │ ├── tmpl-localpv-storage-class.yaml │ │ │ └── tmpl-patch-localpv-default.yaml │ │ │ ├── tmpl-kustomization.yaml │ │ │ ├── tmpl-namespace.yaml │ │ │ └── tmpl-troubleshoot.yaml │ ├── 3.7.0 │ │ ├── Manifest │ │ ├── install.sh │ │ └── spec │ │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ └── kustomization.yaml │ │ │ ├── openebs.tmpl.yaml │ │ │ ├── storage │ │ │ ├── kustomization.yaml │ │ │ ├── tmpl-localpv-storage-class.yaml │ │ │ └── tmpl-patch-localpv-default.yaml │ │ │ ├── tmpl-kustomization.yaml │ │ │ ├── tmpl-namespace.yaml │ │ │ └── tmpl-troubleshoot.yaml │ ├── 3.8.0 │ │ ├── Manifest │ │ ├── install.sh │ │ └── spec │ │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ └── kustomization.yaml │ │ │ ├── openebs.tmpl.yaml │ │ │ ├── storage │ │ │ ├── kustomization.yaml │ │ │ ├── tmpl-localpv-storage-class.yaml │ │ │ └── tmpl-patch-localpv-default.yaml │ │ │ ├── tmpl-kustomization.yaml │ │ │ ├── tmpl-namespace.yaml │ │ │ └── tmpl-troubleshoot.yaml │ ├── 3.9.0 │ │ ├── Manifest │ │ ├── install.sh │ │ └── spec │ │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ └── kustomization.yaml │ │ │ ├── openebs.tmpl.yaml │ │ │ ├── storage │ │ │ ├── kustomization.yaml │ │ │ ├── tmpl-localpv-storage-class.yaml │ │ │ └── tmpl-patch-localpv-default.yaml │ │ │ ├── tmpl-kustomization.yaml │ │ │ ├── tmpl-namespace.yaml │ │ │ └── tmpl-troubleshoot.yaml │ ├── 4.0.0 │ │ ├── Manifest │ │ ├── install.sh │ │ └── spec │ │ │ ├── crds │ │ │ └── kustomization.yaml │ │ │ ├── openebs.tmpl.yaml │ │ │ ├── storage │ │ │ ├── kustomization.yaml │ │ │ ├── tmpl-localpv-storage-class.yaml │ │ │ └── tmpl-patch-localpv-default.yaml │ │ │ ├── tmpl-kustomization.yaml │ │ │ ├── tmpl-namespace.yaml │ │ │ └── tmpl-troubleshoot.yaml │ ├── 4.1.0 │ │ ├── Manifest │ │ ├── install.sh │ │ └── spec │ │ │ ├── openebs.tmpl.yaml │ │ │ ├── storage │ │ │ ├── kustomization.yaml │ │ │ ├── tmpl-localpv-storage-class.yaml │ │ │ └── tmpl-patch-localpv-default.yaml │ │ │ ├── tmpl-kustomization.yaml │ │ │ ├── tmpl-namespace.yaml │ │ │ └── tmpl-troubleshoot.yaml │ ├── 4.1.2 │ │ ├── Manifest │ │ ├── install.sh │ │ └── spec │ │ │ ├── openebs.tmpl.yaml │ │ │ ├── storage │ │ │ ├── kustomization.yaml │ │ │ ├── tmpl-localpv-storage-class.yaml │ │ │ └── tmpl-patch-localpv-default.yaml │ │ │ ├── tmpl-kustomization.yaml │ │ │ ├── tmpl-namespace.yaml │ │ │ └── tmpl-troubleshoot.yaml │ ├── 4.2.0 │ │ ├── Manifest │ │ ├── install.sh │ │ └── spec │ │ │ ├── openebs.tmpl.yaml │ │ │ ├── storage │ │ │ ├── kustomization.yaml │ │ │ ├── tmpl-localpv-storage-class.yaml │ │ │ └── tmpl-patch-localpv-default.yaml │ │ │ ├── tmpl-kustomization.yaml │ │ │ ├── tmpl-namespace.yaml │ │ │ └── tmpl-troubleshoot.yaml │ ├── 4.3.0 │ │ ├── Manifest │ │ ├── install.sh │ │ └── spec │ │ │ ├── openebs.tmpl.yaml │ │ │ ├── storage │ │ │ ├── kustomization.yaml │ │ │ ├── tmpl-localpv-storage-class.yaml │ │ │ └── tmpl-patch-localpv-default.yaml │ │ │ ├── tmpl-kustomization.yaml │ │ │ ├── tmpl-namespace.yaml │ │ │ └── tmpl-troubleshoot.yaml │ ├── categories.json │ └── template │ │ ├── base │ │ ├── Manifest │ │ ├── install.sh │ │ └── spec │ │ │ ├── storage │ │ │ ├── kustomization.yaml │ │ │ ├── tmpl-localpv-storage-class.yaml │ │ │ └── tmpl-patch-localpv-default.yaml │ │ │ ├── tmpl-kustomization.yaml │ │ │ ├── tmpl-namespace.yaml │ │ │ └── tmpl-troubleshoot.yaml │ │ ├── generate.sh │ │ └── testgrid │ │ └── k8s-docker-localpv.yaml ├── prometheus │ ├── 0.53.1-30.1.0 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.56.2-35.2.0 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.57.0-36.0.3 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.57.0-36.2.0 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.58.0-39.11.0 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.58.0-39.12.1 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.58.0-39.4.0 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.58.0-39.9.0 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.59.1-40.1.0 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.60.1-41.7.3 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.62.0-44.3.1 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.63.0-45.1.0 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.63.0-45.1.1 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.63.0-45.10.1 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.63.0-45.15.0 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.63.0-45.19.0 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.63.0-45.2.0 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.63.0-45.20.0 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.63.0-45.21.0 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.63.0-45.3.0 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.63.0-45.4.0 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.63.0-45.5.0 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.63.0-45.7.1 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.63.0-45.8.0 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.63.0-45.8.1 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.63.0-45.9.1 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.65.1-45.26.0 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.65.1-45.27.1 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.65.1-45.27.2 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.65.1-45.28.0 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.65.1-46.5.0 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.65.1-46.6.0 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.65.2-46.8.0 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.66.0-48.1.2 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.66.0-48.3.1 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.67.1-50.3.1 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.68.0-51.0.0 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.69.1-53.0.0 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.70.0-55.0.0 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.71.2-56.6.0 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.72.0-57.2.0 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.73.1-58.1.1 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.73.2-58.5.2 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.74.0-59.0.0 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.75.2-61.6.0 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.76.0-62.3.0 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.76.1-62.6.0 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.77.2-65.8.0 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.78.2-66.2.2 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.79.2-67.5.0 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.80.0-69.2.0 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.80.0-69.3.3 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.81.0-70.0.2 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── 0.82.2-72.9.0 │ │ ├── Manifest │ │ ├── crds │ │ │ ├── crds.yaml │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── adapter.yaml │ │ │ ├── default.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ ├── README.md │ ├── categories.json │ └── template │ │ ├── README.md │ │ ├── base │ │ ├── Manifest │ │ ├── crds │ │ │ ├── kustomization.yaml │ │ │ └── preserveUnknown.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── nodeport-services.yaml │ │ ├── operator │ │ │ ├── kustomization.yaml │ │ │ ├── longhorn.yaml │ │ │ ├── matchlabel-instance.yaml │ │ │ ├── matchlabel-release.yaml │ │ │ ├── ns.yaml │ │ │ └── rook-ceph-rolebindings.yaml │ │ └── tmpl-grafana-secret.yaml │ │ ├── generate.sh │ │ ├── testgrid │ │ └── k8s-docker.yaml │ │ └── values.yaml ├── registry │ ├── 2.7.1 │ │ ├── Manifest │ │ ├── README.md │ │ ├── deployment-pvc.yaml │ │ ├── install.sh │ │ ├── kustomization.yaml │ │ ├── patch-deployment-migrate-s3.yaml │ │ ├── patch-deployment-velero.yaml │ │ ├── service.yaml │ │ ├── tmpl-cluster-ip-patch.yaml │ │ ├── tmpl-configmap-migrate-s3.yaml │ │ ├── tmpl-configmap-velero.yaml │ │ ├── tmpl-deployment-objectstore.yaml │ │ ├── tmpl-node-port-patch.yaml │ │ ├── tmpl-persistentvolumeclaim.yaml │ │ └── tmpl-secret.yaml │ ├── 2.8.1 │ │ ├── Manifest │ │ ├── README.md │ │ ├── deployment-pvc.yaml │ │ ├── install.sh │ │ ├── kustomization.yaml │ │ ├── patch-deployment-migrate-s3.yaml │ │ ├── patch-deployment-velero.yaml │ │ ├── service.yaml │ │ ├── tmpl-cluster-ip-patch.yaml │ │ ├── tmpl-configmap-migrate-s3.yaml │ │ ├── tmpl-configmap-velero.yaml │ │ ├── tmpl-deployment-objectstore.yaml │ │ ├── tmpl-node-port-patch.yaml │ │ ├── tmpl-persistentvolumeclaim.yaml │ │ ├── tmpl-secret.yaml │ │ └── tmpl-troubleshoot.yaml │ ├── 2.8.2 │ │ ├── Manifest │ │ ├── README.md │ │ ├── deployment-pvc.yaml │ │ ├── install.sh │ │ ├── kustomization.yaml │ │ ├── patch-deployment-migrate-s3.yaml │ │ ├── patch-deployment-velero.yaml │ │ ├── service.yaml │ │ ├── tmpl-cluster-ip-patch.yaml │ │ ├── tmpl-configmap-migrate-s3.yaml │ │ ├── tmpl-configmap-velero.yaml │ │ ├── tmpl-deployment-objectstore.yaml │ │ ├── tmpl-node-port-patch.yaml │ │ ├── tmpl-persistentvolumeclaim.yaml │ │ └── tmpl-secret.yaml │ ├── 2.8.3 │ │ ├── Manifest │ │ ├── README.md │ │ ├── deployment-pvc.yaml │ │ ├── install.sh │ │ ├── kustomization.yaml │ │ ├── patch-deployment-migrate-s3.yaml │ │ ├── patch-deployment-velero.yaml │ │ ├── service.yaml │ │ ├── tmpl-cluster-ip-patch.yaml │ │ ├── tmpl-configmap-migrate-s3.yaml │ │ ├── tmpl-configmap-velero.yaml │ │ ├── tmpl-deployment-objectstore.yaml │ │ ├── tmpl-node-port-patch.yaml │ │ ├── tmpl-persistentvolumeclaim.yaml │ │ ├── tmpl-secret.yaml │ │ └── tmpl-troubleshoot.yaml │ ├── 3.0.0 │ │ ├── Manifest │ │ ├── README.md │ │ ├── deployment-pvc.yaml │ │ ├── install.sh │ │ ├── kustomization.yaml │ │ ├── patch-deployment-migrate-s3.yaml │ │ ├── patch-deployment-velero.yaml │ │ ├── service.yaml │ │ ├── tmpl-cluster-ip-patch.yaml │ │ ├── tmpl-configmap-migrate-s3.yaml │ │ ├── tmpl-configmap-velero.yaml │ │ ├── tmpl-deployment-objectstore.yaml │ │ ├── tmpl-node-port-patch.yaml │ │ ├── tmpl-persistentvolumeclaim.yaml │ │ ├── tmpl-secret.yaml │ │ └── tmpl-troubleshoot.yaml │ ├── build-images │ │ ├── README.md │ │ └── s3cmd │ │ │ ├── Dockerfile │ │ │ └── Makefile │ ├── categories.json │ └── template │ │ ├── base │ │ ├── Manifest │ │ ├── README.md │ │ ├── deployment-pvc.yaml │ │ ├── install.sh │ │ ├── kustomization.yaml │ │ ├── patch-deployment-migrate-s3.yaml │ │ ├── patch-deployment-velero.yaml │ │ ├── service.yaml │ │ ├── tmpl-cluster-ip-patch.yaml │ │ ├── tmpl-configmap-migrate-s3.yaml │ │ ├── tmpl-configmap-velero.yaml │ │ ├── tmpl-deployment-objectstore.yaml │ │ ├── tmpl-node-port-patch.yaml │ │ ├── tmpl-persistentvolumeclaim.yaml │ │ ├── tmpl-secret.yaml │ │ └── tmpl-troubleshoot.yaml │ │ ├── generate.sh │ │ └── testgrid │ │ └── k8s-docker.yaml ├── rook │ ├── 1.0.4-14.2.21 │ │ ├── .trivyignore.rego │ │ ├── Manifest │ │ ├── build-images │ │ │ ├── README.md │ │ │ ├── ceph │ │ │ │ ├── Dockerfile │ │ │ │ └── Makefile │ │ │ └── rook-ceph │ │ │ │ ├── Dockerfile │ │ │ │ └── Makefile │ │ ├── cluster │ │ │ ├── ceph-block-pool.yaml │ │ │ ├── ceph-cluster.yaml │ │ │ ├── ceph-object-store.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-mons.yaml │ │ │ │ ├── tmpl-ceph-block-pool-replicas.yaml │ │ │ │ ├── tmpl-ceph-cluster-block-storage.yaml │ │ │ │ ├── tmpl-ceph-cluster-image.yaml │ │ │ │ ├── tmpl-ceph-cluster-storage.yaml │ │ │ │ └── tmpl-ceph-object-store.yaml │ │ │ └── tmpl-ceph-storage-class.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ └── operator │ │ │ ├── ceph-common.yaml │ │ │ ├── ceph-operator.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ └── kustomization.yaml │ ├── 1.0.4 │ │ ├── .trivyignore.rego │ │ ├── Manifest │ │ ├── build-images │ │ │ ├── README.md │ │ │ ├── ceph │ │ │ │ ├── Dockerfile │ │ │ │ └── Makefile │ │ │ └── rook-ceph │ │ │ │ ├── Dockerfile │ │ │ │ └── Makefile │ │ ├── cluster │ │ │ ├── ceph-block-pool.yaml │ │ │ ├── ceph-cluster.yaml │ │ │ ├── ceph-object-store.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-mons.yaml │ │ │ │ ├── tmpl-ceph-block-pool-replicas.yaml │ │ │ │ ├── tmpl-ceph-cluster-block-storage.yaml │ │ │ │ ├── tmpl-ceph-cluster-image.yaml │ │ │ │ ├── tmpl-ceph-cluster-storage.yaml │ │ │ │ └── tmpl-ceph-object-store.yaml │ │ │ └── tmpl-ceph-storage-class.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ └── operator │ │ │ ├── ceph-common.yaml │ │ │ ├── ceph-operator.yaml │ │ │ └── kustomization.yaml │ ├── 1.10.11 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ └── patches │ │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ │ ├── filesystem-singlenode.yaml │ │ │ │ │ ├── tmpl-filesystem-Json6902.yaml │ │ │ │ │ └── tmpl-filesystem.yaml │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── crds.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── monitoring │ │ │ ├── ceph-cluster-dashboard.yaml │ │ │ ├── kustomization.yaml │ │ │ └── rook-ceph-servicemonitor.yaml │ │ └── operator │ │ │ ├── cluster-rbac.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-privileged.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── 1.10.6 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ └── patches │ │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ │ ├── filesystem-singlenode.yaml │ │ │ │ │ ├── tmpl-filesystem-Json6902.yaml │ │ │ │ │ └── tmpl-filesystem.yaml │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── crds.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── monitoring │ │ │ ├── ceph-cluster-dashboard.yaml │ │ │ ├── kustomization.yaml │ │ │ └── rook-ceph-servicemonitor.yaml │ │ └── operator │ │ │ ├── cluster-rbac.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-privileged.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── 1.10.8 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ └── patches │ │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ │ ├── filesystem-singlenode.yaml │ │ │ │ │ ├── tmpl-filesystem-Json6902.yaml │ │ │ │ │ └── tmpl-filesystem.yaml │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── crds.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── monitoring │ │ │ ├── ceph-cluster-dashboard.yaml │ │ │ ├── kustomization.yaml │ │ │ └── rook-ceph-servicemonitor.yaml │ │ └── operator │ │ │ ├── cluster-rbac.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-privileged.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── 1.11.2 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ └── patches │ │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ │ ├── filesystem-singlenode.yaml │ │ │ │ │ ├── tmpl-filesystem-Json6902.yaml │ │ │ │ │ └── tmpl-filesystem.yaml │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── crds.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── monitoring │ │ │ ├── ceph-cluster-dashboard.yaml │ │ │ ├── kustomization.yaml │ │ │ └── rook-ceph-servicemonitor.yaml │ │ └── operator │ │ │ ├── cluster-rbac.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-privileged.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── 1.11.3 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ └── patches │ │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ │ ├── filesystem-singlenode.yaml │ │ │ │ │ ├── tmpl-filesystem-Json6902.yaml │ │ │ │ │ └── tmpl-filesystem.yaml │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── crds.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── monitoring │ │ │ ├── ceph-cluster-dashboard.yaml │ │ │ ├── kustomization.yaml │ │ │ └── rook-ceph-servicemonitor.yaml │ │ └── operator │ │ │ ├── cluster-rbac.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-privileged.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── 1.11.4 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ └── patches │ │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ │ ├── filesystem-singlenode.yaml │ │ │ │ │ ├── tmpl-filesystem-Json6902.yaml │ │ │ │ │ └── tmpl-filesystem.yaml │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── cluster-nodes.tmpl.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── crds.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── monitoring │ │ │ ├── ceph-cluster-dashboard.yaml │ │ │ ├── kustomization.yaml │ │ │ └── rook-ceph-servicemonitor.yaml │ │ └── operator │ │ │ ├── cluster-rbac.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-privileged.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── 1.11.5 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ └── patches │ │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ │ ├── filesystem-singlenode.yaml │ │ │ │ │ ├── tmpl-filesystem-Json6902.yaml │ │ │ │ │ └── tmpl-filesystem.yaml │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── cluster-nodes.tmpl.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── crds.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── monitoring │ │ │ ├── ceph-cluster-dashboard.yaml │ │ │ ├── kustomization.yaml │ │ │ └── rook-ceph-servicemonitor.yaml │ │ └── operator │ │ │ ├── cluster-rbac.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-privileged.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── 1.11.6 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ └── patches │ │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ │ ├── filesystem-singlenode.yaml │ │ │ │ │ ├── tmpl-filesystem-Json6902.yaml │ │ │ │ │ └── tmpl-filesystem.yaml │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── cluster-nodes.tmpl.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── crds.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── monitoring │ │ │ ├── ceph-cluster-dashboard.yaml │ │ │ ├── kustomization.yaml │ │ │ └── rook-ceph-servicemonitor.yaml │ │ └── operator │ │ │ ├── cluster-rbac.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-privileged.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── 1.11.7 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ └── patches │ │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ │ ├── filesystem-singlenode.yaml │ │ │ │ │ ├── tmpl-filesystem-Json6902.yaml │ │ │ │ │ └── tmpl-filesystem.yaml │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── cluster-nodes.tmpl.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── crds.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── monitoring │ │ │ ├── ceph-cluster-dashboard.yaml │ │ │ ├── kustomization.yaml │ │ │ └── rook-ceph-servicemonitor.yaml │ │ └── operator │ │ │ ├── cluster-rbac.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-privileged.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── 1.11.8 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ └── patches │ │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ │ ├── filesystem-singlenode.yaml │ │ │ │ │ ├── tmpl-filesystem-Json6902.yaml │ │ │ │ │ └── tmpl-filesystem.yaml │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── cluster-nodes.tmpl.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── crds.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── monitoring │ │ │ ├── ceph-cluster-dashboard.yaml │ │ │ ├── kustomization.yaml │ │ │ └── rook-ceph-servicemonitor.yaml │ │ └── operator │ │ │ ├── cluster-rbac.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-privileged.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── 1.12.0 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ └── patches │ │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ │ ├── filesystem-singlenode.yaml │ │ │ │ │ ├── tmpl-filesystem-Json6902.yaml │ │ │ │ │ └── tmpl-filesystem.yaml │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── cluster-nodes.tmpl.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── crds.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── monitoring │ │ │ ├── ceph-cluster-dashboard.yaml │ │ │ ├── kustomization.yaml │ │ │ └── rook-ceph-servicemonitor.yaml │ │ └── operator │ │ │ ├── cluster-rbac.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-privileged.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── 1.12.1 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ └── patches │ │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ │ ├── filesystem-singlenode.yaml │ │ │ │ │ ├── tmpl-filesystem-Json6902.yaml │ │ │ │ │ └── tmpl-filesystem.yaml │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── cluster-nodes.tmpl.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── crds.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── monitoring │ │ │ ├── ceph-cluster-dashboard.yaml │ │ │ ├── kustomization.yaml │ │ │ └── rook-ceph-servicemonitor.yaml │ │ └── operator │ │ │ ├── cluster-rbac.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-privileged.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── 1.12.2 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ └── patches │ │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ │ ├── filesystem-singlenode.yaml │ │ │ │ │ ├── tmpl-filesystem-Json6902.yaml │ │ │ │ │ └── tmpl-filesystem.yaml │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── cluster-nodes.tmpl.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── crds.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── monitoring │ │ │ ├── ceph-cluster-dashboard.yaml │ │ │ ├── kustomization.yaml │ │ │ └── rook-ceph-servicemonitor.yaml │ │ └── operator │ │ │ ├── cluster-rbac.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-privileged.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── 1.12.3 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ └── patches │ │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ │ ├── filesystem-singlenode.yaml │ │ │ │ │ ├── tmpl-filesystem-Json6902.yaml │ │ │ │ │ └── tmpl-filesystem.yaml │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── cluster-nodes.tmpl.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── crds.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── monitoring │ │ │ ├── ceph-cluster-dashboard.yaml │ │ │ ├── kustomization.yaml │ │ │ └── rook-ceph-servicemonitor.yaml │ │ └── operator │ │ │ ├── cluster-rbac.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-privileged.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── securityContextConstraints.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── 1.12.4 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ └── patches │ │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ │ ├── filesystem-singlenode.yaml │ │ │ │ │ ├── tmpl-filesystem-Json6902.yaml │ │ │ │ │ └── tmpl-filesystem.yaml │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── cluster-nodes.tmpl.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── crds.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── monitoring │ │ │ ├── ceph-cluster-dashboard.yaml │ │ │ ├── kustomization.yaml │ │ │ └── rook-ceph-servicemonitor.yaml │ │ └── operator │ │ │ ├── cluster-rbac.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-privileged.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── securityContextConstraints.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── 1.12.5 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ └── patches │ │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ │ ├── filesystem-singlenode.yaml │ │ │ │ │ ├── tmpl-filesystem-Json6902.yaml │ │ │ │ │ └── tmpl-filesystem.yaml │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── cluster-nodes.tmpl.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── crds.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── monitoring │ │ │ ├── ceph-cluster-dashboard.yaml │ │ │ ├── kustomization.yaml │ │ │ └── rook-ceph-servicemonitor.yaml │ │ └── operator │ │ │ ├── cluster-rbac.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-privileged.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── securityContextConstraints.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── 1.12.6 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ └── patches │ │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ │ ├── filesystem-singlenode.yaml │ │ │ │ │ ├── tmpl-filesystem-Json6902.yaml │ │ │ │ │ └── tmpl-filesystem.yaml │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── cluster-nodes.tmpl.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── crds.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── monitoring │ │ │ ├── ceph-cluster-dashboard.yaml │ │ │ ├── kustomization.yaml │ │ │ └── rook-ceph-servicemonitor.yaml │ │ └── operator │ │ │ ├── cluster-rbac.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-privileged.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── securityContextConstraints.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── 1.12.7 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ └── patches │ │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ │ ├── filesystem-singlenode.yaml │ │ │ │ │ ├── tmpl-filesystem-Json6902.yaml │ │ │ │ │ └── tmpl-filesystem.yaml │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── cluster-nodes.tmpl.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── crds.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── monitoring │ │ │ ├── ceph-cluster-dashboard.yaml │ │ │ ├── kustomization.yaml │ │ │ └── rook-ceph-servicemonitor.yaml │ │ └── operator │ │ │ ├── cluster-rbac.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-privileged.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── securityContextConstraints.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── 1.12.8 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ └── patches │ │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ │ ├── filesystem-singlenode.yaml │ │ │ │ │ ├── tmpl-filesystem-Json6902.yaml │ │ │ │ │ └── tmpl-filesystem.yaml │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── cluster-nodes.tmpl.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── crds.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── monitoring │ │ │ ├── ceph-cluster-dashboard.yaml │ │ │ ├── kustomization.yaml │ │ │ └── rook-ceph-servicemonitor.yaml │ │ └── operator │ │ │ ├── cluster-rbac.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-privileged.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── securityContextConstraints.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── 1.13.10 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ └── patches │ │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ │ ├── filesystem-singlenode.yaml │ │ │ │ │ ├── tmpl-filesystem-Json6902.yaml │ │ │ │ │ └── tmpl-filesystem.yaml │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── cluster-nodes.tmpl.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── crds.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── monitoring │ │ │ ├── ceph-cluster-dashboard.yaml │ │ │ ├── kustomization.yaml │ │ │ └── rook-ceph-servicemonitor.yaml │ │ └── operator │ │ │ ├── cluster-rbac.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-privileged.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── securityContextConstraints.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── 1.14.12 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ └── patches │ │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ │ ├── filesystem-singlenode.yaml │ │ │ │ │ ├── tmpl-filesystem-Json6902.yaml │ │ │ │ │ └── tmpl-filesystem.yaml │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── cluster-nodes.tmpl.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── crds.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── monitoring │ │ │ ├── ceph-cluster-dashboard.yaml │ │ │ ├── kustomization.yaml │ │ │ └── rook-ceph-servicemonitor.yaml │ │ └── operator │ │ │ ├── cluster-rbac.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-privileged.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── securityContextConstraints.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── 1.15.8 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ └── patches │ │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ │ ├── filesystem-singlenode.yaml │ │ │ │ │ ├── tmpl-filesystem-Json6902.yaml │ │ │ │ │ └── tmpl-filesystem.yaml │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── cluster-nodes.tmpl.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── crds.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── monitoring │ │ │ ├── ceph-cluster-dashboard.yaml │ │ │ ├── kustomization.yaml │ │ │ └── rook-ceph-servicemonitor.yaml │ │ └── operator │ │ │ ├── cluster-rbac.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-privileged.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── securityContextConstraints.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── 1.16.3 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ └── patches │ │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ │ ├── filesystem-singlenode.yaml │ │ │ │ │ ├── tmpl-filesystem-Json6902.yaml │ │ │ │ │ └── tmpl-filesystem.yaml │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── cluster-nodes.tmpl.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── crds.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── monitoring │ │ │ ├── ceph-cluster-dashboard.yaml │ │ │ ├── kustomization.yaml │ │ │ └── rook-ceph-servicemonitor.yaml │ │ └── operator │ │ │ ├── cluster-rbac.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-privileged.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── securityContextConstraints.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── 1.16.4 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ └── patches │ │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ │ ├── filesystem-singlenode.yaml │ │ │ │ │ ├── tmpl-filesystem-Json6902.yaml │ │ │ │ │ └── tmpl-filesystem.yaml │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── cluster-nodes.tmpl.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── crds.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── monitoring │ │ │ ├── ceph-cluster-dashboard.yaml │ │ │ ├── kustomization.yaml │ │ │ └── rook-ceph-servicemonitor.yaml │ │ └── operator │ │ │ ├── cluster-rbac.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-privileged.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── securityContextConstraints.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── 1.16.5 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ └── patches │ │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ │ ├── filesystem-singlenode.yaml │ │ │ │ │ ├── tmpl-filesystem-Json6902.yaml │ │ │ │ │ └── tmpl-filesystem.yaml │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── cluster-nodes.tmpl.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── crds.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── monitoring │ │ │ ├── ceph-cluster-dashboard.yaml │ │ │ ├── kustomization.yaml │ │ │ └── rook-ceph-servicemonitor.yaml │ │ └── operator │ │ │ ├── cluster-rbac.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-privileged.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── securityContextConstraints.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── 1.16.6 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ └── patches │ │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ │ ├── filesystem-singlenode.yaml │ │ │ │ │ ├── tmpl-filesystem-Json6902.yaml │ │ │ │ │ └── tmpl-filesystem.yaml │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── cluster-nodes.tmpl.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── crds.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── monitoring │ │ │ ├── ceph-cluster-dashboard.yaml │ │ │ ├── kustomization.yaml │ │ │ └── rook-ceph-servicemonitor.yaml │ │ └── operator │ │ │ ├── cluster-rbac.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-privileged.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── securityContextConstraints.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── 1.17.1 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ └── patches │ │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ │ ├── filesystem-singlenode.yaml │ │ │ │ │ ├── tmpl-filesystem-Json6902.yaml │ │ │ │ │ └── tmpl-filesystem.yaml │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── cluster-nodes.tmpl.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── crds.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── monitoring │ │ │ ├── ceph-cluster-dashboard.yaml │ │ │ ├── kustomization.yaml │ │ │ └── rook-ceph-servicemonitor.yaml │ │ └── operator │ │ │ ├── cluster-rbac.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-privileged.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── securityContextConstraints.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── 1.17.6 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ └── patches │ │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ │ ├── filesystem-singlenode.yaml │ │ │ │ │ ├── tmpl-filesystem-Json6902.yaml │ │ │ │ │ └── tmpl-filesystem.yaml │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── cluster-nodes.tmpl.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── crds.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── monitoring │ │ │ ├── ceph-cluster-dashboard.yaml │ │ │ ├── kustomization.yaml │ │ │ └── rook-ceph-servicemonitor.yaml │ │ └── operator │ │ │ ├── cluster-rbac.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-privileged.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── securityContextConstraints.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── 1.17.7 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ └── patches │ │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ │ ├── filesystem-singlenode.yaml │ │ │ │ │ ├── tmpl-filesystem-Json6902.yaml │ │ │ │ │ └── tmpl-filesystem.yaml │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── cluster-nodes.tmpl.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── crds.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── monitoring │ │ │ ├── ceph-cluster-dashboard.yaml │ │ │ ├── kustomization.yaml │ │ │ └── rook-ceph-servicemonitor.yaml │ │ └── operator │ │ │ ├── cluster-rbac.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-privileged.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── securityContextConstraints.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── 1.4.3 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── ceph-block-pool.yaml │ │ │ ├── ceph-cluster.yaml │ │ │ ├── ceph-object-store.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-mons.yaml │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── tmpl-ceph-block-pool-replicas.yaml │ │ │ │ ├── tmpl-ceph-cluster-block-storage.yaml │ │ │ │ ├── tmpl-ceph-cluster-image.yaml │ │ │ │ └── tmpl-ceph-object-store.yaml │ │ │ ├── shared-fs.yaml │ │ │ └── tmpl-ceph-storage-class.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ └── operator │ │ │ ├── ceph-common.yaml │ │ │ ├── ceph-operator.yaml │ │ │ ├── ceph-toolbox.yaml │ │ │ ├── config-override.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── patches │ │ │ ├── ceph-operator-privileged.yaml │ │ │ ├── ceph-operator-rke2.yaml │ │ │ └── ceph-operator-tolerate.yaml │ │ │ └── priorityclass.yaml │ ├── 1.4.9 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs-storageclass.yaml │ │ │ ├── cluster.yaml │ │ │ ├── filesystem.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem-Json6902.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ └── operator │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-priority-class-16.yaml │ │ │ ├── deployment-priority-class.yaml │ │ │ ├── deployment-privileged.yaml │ │ │ ├── deployment-rke2.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── priority-class.yaml │ │ │ ├── psp.yaml │ │ │ ├── resources.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── 1.5.10 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs-storageclass.yaml │ │ │ ├── cluster.yaml │ │ │ ├── filesystem.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem-Json6902.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ └── operator │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-priority-class-16.yaml │ │ │ ├── deployment-priority-class.yaml │ │ │ ├── deployment-privileged.yaml │ │ │ ├── deployment-rke2.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── priority-class.yaml │ │ │ ├── psp.yaml │ │ │ ├── resources.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── 1.5.11 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs-storageclass.yaml │ │ │ ├── cluster.yaml │ │ │ ├── filesystem.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem-Json6902.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ └── operator │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-priority-class-16.yaml │ │ │ ├── deployment-priority-class.yaml │ │ │ ├── deployment-privileged.yaml │ │ │ ├── deployment-rke2.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── priority-class.yaml │ │ │ ├── psp.yaml │ │ │ ├── resources.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── 1.5.12 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs-storageclass.yaml │ │ │ ├── cluster.yaml │ │ │ ├── filesystem.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem-Json6902.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ └── operator │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-priority-class-16.yaml │ │ │ ├── deployment-priority-class.yaml │ │ │ ├── deployment-privileged.yaml │ │ │ ├── deployment-rke2.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── priority-class.yaml │ │ │ ├── psp.yaml │ │ │ ├── resources.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── 1.5.9 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs-storageclass.yaml │ │ │ ├── cluster.yaml │ │ │ ├── filesystem.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem-Json6902.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ └── operator │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-priority-class-16.yaml │ │ │ ├── deployment-priority-class.yaml │ │ │ ├── deployment-privileged.yaml │ │ │ ├── deployment-rke2.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── priority-class.yaml │ │ │ ├── psp.yaml │ │ │ ├── resources.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── 1.6.11 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ └── patches │ │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ │ ├── filesystem-singlenode.yaml │ │ │ │ │ ├── tmpl-filesystem-Json6902.yaml │ │ │ │ │ └── tmpl-filesystem.yaml │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── crds.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ └── operator │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-priority-class-16.yaml │ │ │ ├── deployment-priority-class.yaml │ │ │ ├── deployment-privileged.yaml │ │ │ ├── deployment-rke2.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── priority-class.yaml │ │ │ ├── psp.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── 1.7.11 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ └── patches │ │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ │ ├── filesystem-singlenode.yaml │ │ │ │ │ ├── tmpl-filesystem-Json6902.yaml │ │ │ │ │ └── tmpl-filesystem.yaml │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── crds.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ └── operator │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-priority-class-16.yaml │ │ │ ├── deployment-priority-class.yaml │ │ │ ├── deployment-privileged.yaml │ │ │ ├── deployment-rke2.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── priority-class.yaml │ │ │ ├── psp.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── 1.8.10 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ └── patches │ │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ │ ├── filesystem-singlenode.yaml │ │ │ │ │ ├── tmpl-filesystem-Json6902.yaml │ │ │ │ │ └── tmpl-filesystem.yaml │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── crds.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ └── operator │ │ │ ├── cluster-rbac.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-priority-class-16.yaml │ │ │ ├── deployment-priority-class.yaml │ │ │ ├── deployment-privileged.yaml │ │ │ ├── deployment-rke2.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── priority-class.yaml │ │ │ ├── psp.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── 1.9.12 │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ ├── filesystem.yaml │ │ │ │ └── patches │ │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ │ ├── filesystem-singlenode.yaml │ │ │ │ │ ├── tmpl-filesystem-Json6902.yaml │ │ │ │ │ └── tmpl-filesystem.yaml │ │ │ ├── cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ ├── object.yaml │ │ │ ├── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── crds.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── monitoring │ │ │ ├── ceph-cluster-dashboard.yaml │ │ │ ├── kustomization.yaml │ │ │ └── rook-ceph-servicemonitor.yaml │ │ └── operator │ │ │ ├── cluster-rbac.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── patches │ │ │ ├── deployment-privileged.yaml │ │ │ ├── deployment-rke2.yaml │ │ │ └── deployment-tolerations.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── toolbox.yaml │ ├── categories.json │ └── template │ │ ├── README.md │ │ ├── base │ │ ├── Manifest │ │ ├── cluster │ │ │ ├── cephfs │ │ │ │ └── patches │ │ │ │ │ ├── cephfs-storageclass.yaml │ │ │ │ │ ├── filesystem-singlenode.yaml │ │ │ │ │ ├── tmpl-filesystem-Json6902.yaml │ │ │ │ │ └── tmpl-filesystem.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── object-user.yaml │ │ │ └── patches │ │ │ │ ├── ceph-cluster-tolerate.yaml │ │ │ │ ├── cluster-nodes.tmpl.yaml │ │ │ │ ├── object-Json6902.yaml │ │ │ │ ├── tmpl-cluster.yaml │ │ │ │ ├── tmpl-object.yaml │ │ │ │ └── tmpl-rbd-storageclass.yaml │ │ ├── host-preflight.yaml │ │ ├── install.sh │ │ ├── monitoring │ │ │ ├── ceph-cluster-dashboard.yaml │ │ │ ├── kustomization.yaml │ │ │ └── rook-ceph-servicemonitor.yaml │ │ └── operator │ │ │ ├── configmap-rook-config-override.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ └── patches │ │ │ ├── deployment-privileged.yaml │ │ │ └── deployment-tolerations.yaml │ │ ├── generate.sh │ │ ├── test │ │ └── install.sh │ │ ├── testgrid │ │ └── k8s-docker.yaml │ │ └── values.yaml ├── rookupgrade │ ├── 10to14 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── rook-ceph-osd-rbac.yaml │ │ ├── rook-ceph-tools-14.yaml │ │ ├── rook-config-override.yaml │ │ ├── upgrade-from-v1.0-apply.yaml │ │ ├── upgrade-from-v1.0-crds.yaml │ │ ├── upgrade-from-v1.0-create.yaml │ │ ├── upgrade-from-v1.1-apply.yaml │ │ ├── upgrade-from-v1.1-crds.yaml │ │ ├── upgrade-from-v1.2-apply.yaml │ │ ├── upgrade-from-v1.2-crds.yaml │ │ ├── upgrade-from-v1.3-apply.yaml │ │ ├── upgrade-from-v1.3-crds.yaml │ │ └── upgrade-from-v1.3-delete.yaml │ └── README.md ├── sonobuoy │ ├── 0.50.0 │ │ ├── Manifest │ │ └── install.sh │ ├── 0.52.0 │ │ ├── Manifest │ │ └── install.sh │ ├── 0.53.0 │ │ ├── Manifest │ │ └── install.sh │ ├── 0.55.1 │ │ ├── Manifest │ │ └── install.sh │ ├── 0.56.10 │ │ ├── Manifest │ │ └── install.sh │ ├── 0.56.11 │ │ ├── Manifest │ │ └── install.sh │ ├── 0.56.12 │ │ ├── Manifest │ │ └── install.sh │ ├── 0.56.13 │ │ ├── Manifest │ │ └── install.sh │ ├── 0.56.14 │ │ ├── Manifest │ │ └── install.sh │ ├── 0.56.15 │ │ ├── Manifest │ │ └── install.sh │ ├── 0.56.16 │ │ ├── Manifest │ │ └── install.sh │ ├── 0.56.17 │ │ ├── Manifest │ │ └── install.sh │ ├── 0.56.7 │ │ ├── Manifest │ │ └── install.sh │ ├── 0.56.8 │ │ ├── Manifest │ │ └── install.sh │ ├── 0.57.0 │ │ ├── Manifest │ │ └── install.sh │ ├── 0.57.1 │ │ ├── Manifest │ │ └── install.sh │ ├── 0.57.2 │ │ ├── Manifest │ │ └── install.sh │ ├── 0.57.3 │ │ ├── Manifest │ │ └── install.sh │ ├── categories.json │ └── template │ │ ├── README.md │ │ ├── base │ │ ├── Manifest │ │ └── install.sh │ │ ├── generate.sh │ │ └── testgrid │ │ └── k8s-docker.yaml ├── velero │ ├── 1.10.1 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── node-agent-daemonset-privileged.yaml │ │ ├── s3-migration-configmap.yaml │ │ ├── tmpl-change-storageclass.yaml │ │ ├── tmpl-internal-snaps-deployment-patch.yaml │ │ ├── tmpl-internal-snaps-ds-patch.yaml │ │ ├── tmpl-internal-snaps-pvc.yaml │ │ ├── tmpl-kotsadm-restore-config.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-node-agent-daemonset-proxy.yaml │ │ ├── tmpl-s3-migration-bsl.yaml │ │ ├── tmpl-s3-migration-deployment-patch.yaml │ │ ├── tmpl-s3-migration-secret.yaml │ │ └── tmpl-velero-deployment-proxy.yaml │ ├── 1.10.2 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── node-agent-daemonset-privileged.yaml │ │ ├── s3-migration-configmap.yaml │ │ ├── tmpl-change-storageclass.yaml │ │ ├── tmpl-internal-snaps-deployment-patch.yaml │ │ ├── tmpl-internal-snaps-ds-patch.yaml │ │ ├── tmpl-internal-snaps-pvc.yaml │ │ ├── tmpl-kotsadm-restore-config.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-node-agent-daemonset-proxy.yaml │ │ ├── tmpl-s3-migration-bsl.yaml │ │ ├── tmpl-s3-migration-deployment-patch.yaml │ │ ├── tmpl-s3-migration-secret.yaml │ │ └── tmpl-velero-deployment-proxy.yaml │ ├── 1.11.0 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── node-agent-daemonset-privileged.yaml │ │ ├── s3-migration-configmap.yaml │ │ ├── tmpl-change-storageclass.yaml │ │ ├── tmpl-internal-snaps-deployment-patch.yaml │ │ ├── tmpl-internal-snaps-ds-patch.yaml │ │ ├── tmpl-internal-snaps-pvc.yaml │ │ ├── tmpl-kotsadm-restore-config.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-node-agent-daemonset-proxy.yaml │ │ ├── tmpl-s3-migration-bsl.yaml │ │ ├── tmpl-s3-migration-deployment-patch.yaml │ │ ├── tmpl-s3-migration-secret.yaml │ │ ├── tmpl-troubleshoot.yaml │ │ └── tmpl-velero-deployment-proxy.yaml │ ├── 1.11.1 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── node-agent-daemonset-privileged.yaml │ │ ├── s3-migration-configmap.yaml │ │ ├── tmpl-change-storageclass.yaml │ │ ├── tmpl-internal-snaps-deployment-patch.yaml │ │ ├── tmpl-internal-snaps-ds-patch.yaml │ │ ├── tmpl-internal-snaps-pvc.yaml │ │ ├── tmpl-kotsadm-restore-config.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-node-agent-daemonset-proxy.yaml │ │ ├── tmpl-s3-migration-bsl.yaml │ │ ├── tmpl-s3-migration-deployment-patch.yaml │ │ ├── tmpl-s3-migration-secret.yaml │ │ ├── tmpl-troubleshoot.yaml │ │ └── tmpl-velero-deployment-proxy.yaml │ ├── 1.12.0 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── node-agent-daemonset-privileged.yaml │ │ ├── s3-migration-configmap.yaml │ │ ├── tmpl-change-storageclass.yaml │ │ ├── tmpl-internal-snaps-deployment-patch.yaml │ │ ├── tmpl-internal-snaps-ds-patch.yaml │ │ ├── tmpl-internal-snaps-pvc.yaml │ │ ├── tmpl-kotsadm-restore-config.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-node-agent-daemonset-proxy.yaml │ │ ├── tmpl-s3-migration-bsl.yaml │ │ ├── tmpl-s3-migration-deployment-patch.yaml │ │ ├── tmpl-s3-migration-secret.yaml │ │ ├── tmpl-troubleshoot.yaml │ │ └── tmpl-velero-deployment-proxy.yaml │ ├── 1.12.1 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── node-agent-daemonset-privileged.yaml │ │ ├── s3-migration-configmap.yaml │ │ ├── tmpl-change-storageclass.yaml │ │ ├── tmpl-internal-snaps-deployment-patch.yaml │ │ ├── tmpl-internal-snaps-ds-patch.yaml │ │ ├── tmpl-internal-snaps-pvc.yaml │ │ ├── tmpl-kotsadm-restore-config.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-node-agent-daemonset-proxy.yaml │ │ ├── tmpl-s3-migration-bsl.yaml │ │ ├── tmpl-s3-migration-deployment-patch.yaml │ │ ├── tmpl-s3-migration-secret.yaml │ │ ├── tmpl-troubleshoot.yaml │ │ └── tmpl-velero-deployment-proxy.yaml │ ├── 1.12.2 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── node-agent-daemonset-privileged.yaml │ │ ├── s3-migration-configmap.yaml │ │ ├── tmpl-change-storageclass.yaml │ │ ├── tmpl-internal-snaps-deployment-patch.yaml │ │ ├── tmpl-internal-snaps-ds-patch.yaml │ │ ├── tmpl-internal-snaps-pvc.yaml │ │ ├── tmpl-kotsadm-restore-config.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-node-agent-daemonset-proxy.yaml │ │ ├── tmpl-s3-migration-bsl.yaml │ │ ├── tmpl-s3-migration-deployment-patch.yaml │ │ ├── tmpl-s3-migration-secret.yaml │ │ ├── tmpl-troubleshoot.yaml │ │ └── tmpl-velero-deployment-proxy.yaml │ ├── 1.12.3 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── node-agent-daemonset-privileged.yaml │ │ ├── s3-migration-configmap.yaml │ │ ├── tmpl-change-storageclass.yaml │ │ ├── tmpl-internal-snaps-deployment-patch.yaml │ │ ├── tmpl-internal-snaps-ds-patch.yaml │ │ ├── tmpl-internal-snaps-pvc.yaml │ │ ├── tmpl-kotsadm-restore-config.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-node-agent-daemonset-proxy.yaml │ │ ├── tmpl-s3-migration-bsl.yaml │ │ ├── tmpl-s3-migration-deployment-patch.yaml │ │ ├── tmpl-s3-migration-secret.yaml │ │ └── tmpl-velero-deployment-proxy.yaml │ ├── 1.13.1 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── node-agent-daemonset-privileged.yaml │ │ ├── s3-migration-configmap.yaml │ │ ├── tmpl-change-storageclass.yaml │ │ ├── tmpl-internal-snaps-deployment-patch.yaml │ │ ├── tmpl-internal-snaps-ds-patch.yaml │ │ ├── tmpl-internal-snaps-pvc.yaml │ │ ├── tmpl-kotsadm-restore-config.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-node-agent-daemonset-proxy.yaml │ │ ├── tmpl-s3-migration-bsl.yaml │ │ ├── tmpl-s3-migration-deployment-patch.yaml │ │ ├── tmpl-s3-migration-secret.yaml │ │ ├── tmpl-troubleshoot.yaml │ │ └── tmpl-velero-deployment-proxy.yaml │ ├── 1.13.2 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── node-agent-daemonset-privileged.yaml │ │ ├── s3-migration-configmap.yaml │ │ ├── tmpl-change-storageclass.yaml │ │ ├── tmpl-internal-snaps-deployment-patch.yaml │ │ ├── tmpl-internal-snaps-ds-patch.yaml │ │ ├── tmpl-internal-snaps-pvc.yaml │ │ ├── tmpl-kotsadm-restore-config.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-node-agent-daemonset-proxy.yaml │ │ ├── tmpl-s3-migration-bsl.yaml │ │ ├── tmpl-s3-migration-deployment-patch.yaml │ │ ├── tmpl-s3-migration-secret.yaml │ │ ├── tmpl-troubleshoot.yaml │ │ └── tmpl-velero-deployment-proxy.yaml │ ├── 1.14.0 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── node-agent-daemonset-privileged.yaml │ │ ├── s3-migration-configmap.yaml │ │ ├── tmpl-change-storageclass.yaml │ │ ├── tmpl-internal-snaps-deployment-patch.yaml │ │ ├── tmpl-internal-snaps-ds-patch.yaml │ │ ├── tmpl-internal-snaps-pvc.yaml │ │ ├── tmpl-kotsadm-restore-config.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-node-agent-daemonset-proxy.yaml │ │ ├── tmpl-s3-migration-bsl.yaml │ │ ├── tmpl-s3-migration-deployment-patch.yaml │ │ ├── tmpl-s3-migration-secret.yaml │ │ ├── tmpl-troubleshoot.yaml │ │ └── tmpl-velero-deployment-proxy.yaml │ ├── 1.15.2 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── node-agent-daemonset-privileged.yaml │ │ ├── s3-migration-configmap.yaml │ │ ├── tmpl-change-storageclass.yaml │ │ ├── tmpl-internal-snaps-deployment-patch.yaml │ │ ├── tmpl-internal-snaps-ds-patch.yaml │ │ ├── tmpl-internal-snaps-pvc.yaml │ │ ├── tmpl-kotsadm-restore-config.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-node-agent-daemonset-proxy.yaml │ │ ├── tmpl-s3-migration-bsl.yaml │ │ ├── tmpl-s3-migration-deployment-patch.yaml │ │ ├── tmpl-s3-migration-secret.yaml │ │ ├── tmpl-troubleshoot.yaml │ │ └── tmpl-velero-deployment-proxy.yaml │ ├── 1.16.2 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── node-agent-daemonset-privileged.yaml │ │ ├── s3-migration-configmap.yaml │ │ ├── tmpl-change-storageclass.yaml │ │ ├── tmpl-internal-snaps-deployment-patch.yaml │ │ ├── tmpl-internal-snaps-ds-patch.yaml │ │ ├── tmpl-internal-snaps-pvc.yaml │ │ ├── tmpl-kotsadm-restore-config.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-node-agent-daemonset-proxy.yaml │ │ ├── tmpl-s3-migration-bsl.yaml │ │ ├── tmpl-s3-migration-deployment-patch.yaml │ │ ├── tmpl-s3-migration-secret.yaml │ │ ├── tmpl-troubleshoot.yaml │ │ └── tmpl-velero-deployment-proxy.yaml │ ├── 1.2.0 │ │ ├── Manifest │ │ ├── crd │ │ │ ├── backups.yaml │ │ │ ├── backupstoragelocations.yaml │ │ │ ├── deletebackuprequests.yaml │ │ │ ├── downloadrequests.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── podvolumebackups.yaml │ │ │ ├── podvolumerestores.yaml │ │ │ ├── resticrepositories.yaml │ │ │ ├── restores.yaml │ │ │ ├── schedules.yaml │ │ │ ├── servicestatusrequests.yaml │ │ │ └── volumesnapshotlocations.yaml │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── rbac.yaml │ │ ├── restic-daemonset.yaml │ │ ├── tmpl-kotsadm-local-backend.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ └── velero-args-json-patch.yaml │ ├── 1.5.1 │ │ ├── Manifest │ │ ├── crd │ │ │ ├── backups.yaml │ │ │ ├── backupstoragelocations.yaml │ │ │ ├── deletebackuprequests.yaml │ │ │ ├── downloadrequests.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── podvolumebackups.yaml │ │ │ ├── podvolumerestores.yaml │ │ │ ├── resticrepositories.yaml │ │ │ ├── restores.yaml │ │ │ ├── schedules.yaml │ │ │ ├── servicestatusrequests.yaml │ │ │ └── volumesnapshotlocations.yaml │ │ ├── deployment.yaml │ │ ├── install.sh │ │ ├── rbac.yaml │ │ ├── restic-daemonset-privileged.yaml │ │ ├── restic-daemonset.yaml │ │ ├── tmpl-change-storageclass.yaml │ │ ├── tmpl-kotsadm-local-backend.yaml │ │ ├── tmpl-kotsadm-restore-config.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-namespace.yaml │ │ ├── tmpl-restic-daemonset-proxy.yaml │ │ ├── tmpl-velero-deployment-proxy.yaml │ │ └── velero-args-json-patch.yaml │ ├── 1.5.3 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── kustomization.yaml │ │ ├── restic-daemonset-privileged.yaml │ │ ├── tmpl-change-storageclass.yaml │ │ ├── tmpl-kotsadm-restore-config.yaml │ │ ├── tmpl-restic-daemonset-proxy.yaml │ │ ├── tmpl-velero-deployment-proxy.yaml │ │ └── velero-args-json-patch.yaml │ ├── 1.5.4 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── kustomization.yaml │ │ ├── restic-daemonset-privileged.yaml │ │ ├── tmpl-change-storageclass.yaml │ │ ├── tmpl-kotsadm-restore-config.yaml │ │ ├── tmpl-restic-daemonset-proxy.yaml │ │ ├── tmpl-velero-deployment-proxy.yaml │ │ └── velero-args-json-patch.yaml │ ├── 1.6.0 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── kustomization.yaml │ │ ├── restic-daemonset-privileged.yaml │ │ ├── s3-migration-configmap.yaml │ │ ├── tmpl-change-storageclass.yaml │ │ ├── tmpl-internal-snaps-deployment-patch.yaml │ │ ├── tmpl-internal-snaps-ds-patch.yaml │ │ ├── tmpl-internal-snaps-pvc.yaml │ │ ├── tmpl-kotsadm-restore-config.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-restic-daemonset-proxy.yaml │ │ ├── tmpl-s3-migration-bsl.yaml │ │ ├── tmpl-s3-migration-deployment-patch.yaml │ │ ├── tmpl-s3-migration-secret.yaml │ │ ├── tmpl-velero-deployment-proxy.yaml │ │ └── velero-args-json-patch.yaml │ ├── 1.6.1 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── restic-daemonset-privileged.yaml │ │ ├── s3-migration-configmap.yaml │ │ ├── tmpl-change-storageclass.yaml │ │ ├── tmpl-internal-snaps-deployment-patch.yaml │ │ ├── tmpl-internal-snaps-ds-patch.yaml │ │ ├── tmpl-internal-snaps-pvc.yaml │ │ ├── tmpl-kotsadm-restore-config.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-restic-daemonset-proxy.yaml │ │ ├── tmpl-s3-migration-bsl.yaml │ │ ├── tmpl-s3-migration-deployment-patch.yaml │ │ ├── tmpl-s3-migration-secret.yaml │ │ ├── tmpl-velero-deployment-proxy.yaml │ │ └── velero-args-json-patch.yaml │ ├── 1.6.2 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── restic-daemonset-privileged.yaml │ │ ├── s3-migration-configmap.yaml │ │ ├── tmpl-change-storageclass.yaml │ │ ├── tmpl-internal-snaps-deployment-patch.yaml │ │ ├── tmpl-internal-snaps-ds-patch.yaml │ │ ├── tmpl-internal-snaps-pvc.yaml │ │ ├── tmpl-kotsadm-restore-config.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-restic-daemonset-proxy.yaml │ │ ├── tmpl-s3-migration-bsl.yaml │ │ ├── tmpl-s3-migration-deployment-patch.yaml │ │ ├── tmpl-s3-migration-secret.yaml │ │ ├── tmpl-velero-deployment-proxy.yaml │ │ └── velero-args-json-patch.yaml │ ├── 1.7.1 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── restic-daemonset-privileged.yaml │ │ ├── s3-migration-configmap.yaml │ │ ├── tmpl-change-storageclass.yaml │ │ ├── tmpl-internal-snaps-deployment-patch.yaml │ │ ├── tmpl-internal-snaps-ds-patch.yaml │ │ ├── tmpl-internal-snaps-pvc.yaml │ │ ├── tmpl-kotsadm-restore-config.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-restic-daemonset-proxy.yaml │ │ ├── tmpl-s3-migration-bsl.yaml │ │ ├── tmpl-s3-migration-deployment-patch.yaml │ │ ├── tmpl-s3-migration-secret.yaml │ │ ├── tmpl-velero-deployment-proxy.yaml │ │ └── velero-args-json-patch.yaml │ ├── 1.8.1 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── restic-daemonset-privileged.yaml │ │ ├── s3-migration-configmap.yaml │ │ ├── tmpl-change-storageclass.yaml │ │ ├── tmpl-internal-snaps-deployment-patch.yaml │ │ ├── tmpl-internal-snaps-ds-patch.yaml │ │ ├── tmpl-internal-snaps-pvc.yaml │ │ ├── tmpl-kotsadm-restore-config.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-restic-daemonset-proxy.yaml │ │ ├── tmpl-s3-migration-bsl.yaml │ │ ├── tmpl-s3-migration-deployment-patch.yaml │ │ ├── tmpl-s3-migration-secret.yaml │ │ ├── tmpl-velero-deployment-proxy.yaml │ │ └── velero-args-json-patch.yaml │ ├── 1.9.0 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── restic-daemonset-privileged.yaml │ │ ├── s3-migration-configmap.yaml │ │ ├── tmpl-change-storageclass.yaml │ │ ├── tmpl-internal-snaps-deployment-patch.yaml │ │ ├── tmpl-internal-snaps-ds-patch.yaml │ │ ├── tmpl-internal-snaps-pvc.yaml │ │ ├── tmpl-kotsadm-restore-config.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-restic-daemonset-proxy.yaml │ │ ├── tmpl-s3-migration-bsl.yaml │ │ ├── tmpl-s3-migration-deployment-patch.yaml │ │ ├── tmpl-s3-migration-secret.yaml │ │ ├── tmpl-velero-deployment-proxy.yaml │ │ └── velero-args-json-patch.yaml │ ├── 1.9.1 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── restic-daemonset-privileged.yaml │ │ ├── s3-migration-configmap.yaml │ │ ├── tmpl-change-storageclass.yaml │ │ ├── tmpl-internal-snaps-deployment-patch.yaml │ │ ├── tmpl-internal-snaps-ds-patch.yaml │ │ ├── tmpl-internal-snaps-pvc.yaml │ │ ├── tmpl-kotsadm-restore-config.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-restic-daemonset-proxy.yaml │ │ ├── tmpl-s3-migration-bsl.yaml │ │ ├── tmpl-s3-migration-deployment-patch.yaml │ │ ├── tmpl-s3-migration-secret.yaml │ │ ├── tmpl-velero-deployment-proxy.yaml │ │ └── velero-args-json-patch.yaml │ ├── 1.9.2 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── restic-daemonset-privileged.yaml │ │ ├── s3-migration-configmap.yaml │ │ ├── tmpl-change-storageclass.yaml │ │ ├── tmpl-internal-snaps-deployment-patch.yaml │ │ ├── tmpl-internal-snaps-ds-patch.yaml │ │ ├── tmpl-internal-snaps-pvc.yaml │ │ ├── tmpl-kotsadm-restore-config.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-restic-daemonset-proxy.yaml │ │ ├── tmpl-s3-migration-bsl.yaml │ │ ├── tmpl-s3-migration-deployment-patch.yaml │ │ ├── tmpl-s3-migration-secret.yaml │ │ ├── tmpl-velero-deployment-proxy.yaml │ │ └── velero-args-json-patch.yaml │ ├── 1.9.3 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── restic-daemonset-privileged.yaml │ │ ├── s3-migration-configmap.yaml │ │ ├── tmpl-change-storageclass.yaml │ │ ├── tmpl-internal-snaps-deployment-patch.yaml │ │ ├── tmpl-internal-snaps-ds-patch.yaml │ │ ├── tmpl-internal-snaps-pvc.yaml │ │ ├── tmpl-kotsadm-restore-config.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-restic-daemonset-proxy.yaml │ │ ├── tmpl-s3-migration-bsl.yaml │ │ ├── tmpl-s3-migration-deployment-patch.yaml │ │ ├── tmpl-s3-migration-secret.yaml │ │ ├── tmpl-velero-deployment-proxy.yaml │ │ └── velero-args-json-patch.yaml │ ├── 1.9.4 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── restic-daemonset-privileged.yaml │ │ ├── s3-migration-configmap.yaml │ │ ├── tmpl-change-storageclass.yaml │ │ ├── tmpl-internal-snaps-deployment-patch.yaml │ │ ├── tmpl-internal-snaps-ds-patch.yaml │ │ ├── tmpl-internal-snaps-pvc.yaml │ │ ├── tmpl-kotsadm-restore-config.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-restic-daemonset-proxy.yaml │ │ ├── tmpl-s3-migration-bsl.yaml │ │ ├── tmpl-s3-migration-deployment-patch.yaml │ │ ├── tmpl-s3-migration-secret.yaml │ │ ├── tmpl-velero-deployment-proxy.yaml │ │ └── velero-args-json-patch.yaml │ ├── 1.9.5 │ │ ├── Manifest │ │ ├── install.sh │ │ ├── restic-daemonset-privileged.yaml │ │ ├── s3-migration-configmap.yaml │ │ ├── tmpl-change-storageclass.yaml │ │ ├── tmpl-internal-snaps-deployment-patch.yaml │ │ ├── tmpl-internal-snaps-ds-patch.yaml │ │ ├── tmpl-internal-snaps-pvc.yaml │ │ ├── tmpl-kotsadm-restore-config.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-restic-daemonset-proxy.yaml │ │ ├── tmpl-s3-migration-bsl.yaml │ │ ├── tmpl-s3-migration-deployment-patch.yaml │ │ ├── tmpl-s3-migration-secret.yaml │ │ └── tmpl-velero-deployment-proxy.yaml │ ├── categories.json │ └── template │ │ ├── base │ │ ├── Manifest.tmpl │ │ ├── install.tmpl.sh │ │ ├── node-agent-daemonset-privileged.yaml │ │ ├── s3-migration-configmap.yaml │ │ ├── tmpl-change-storageclass.yaml │ │ ├── tmpl-internal-snaps-deployment-patch.yaml │ │ ├── tmpl-internal-snaps-ds-patch.yaml │ │ ├── tmpl-internal-snaps-pvc.yaml │ │ ├── tmpl-kotsadm-restore-config.yaml │ │ ├── tmpl-kustomization.yaml │ │ ├── tmpl-node-agent-daemonset-proxy.yaml │ │ ├── tmpl-s3-migration-bsl.yaml │ │ ├── tmpl-s3-migration-deployment-patch.yaml │ │ ├── tmpl-s3-migration-secret.yaml │ │ ├── tmpl-troubleshoot.yaml │ │ └── tmpl-velero-deployment-proxy.yaml │ │ ├── generate.sh │ │ └── testgrid │ │ └── k8s-docker.yaml └── weave │ ├── 2.5.2 │ ├── Manifest │ ├── daemonset.yaml │ ├── encrypt.yaml │ ├── host-preflight.yaml │ ├── install.sh │ ├── kustomization.yaml │ ├── rbac.yaml │ ├── tmpl-ip-alloc-range.yaml │ ├── tmpl-patch-no-masq-local.yaml │ └── tmpl-secret.yaml │ ├── 2.6.4 │ ├── Manifest │ ├── daemonset.yaml │ ├── encrypt.yaml │ ├── host-preflight.yaml │ ├── install.sh │ ├── kustomization.yaml │ ├── rbac.yaml │ ├── tmpl-ip-alloc-range.yaml │ ├── tmpl-patch-no-masq-local.yaml │ └── tmpl-secret.yaml │ ├── 2.6.5-20220616 │ ├── Manifest │ ├── daemonset.yaml │ ├── encrypt.yaml │ ├── host-preflight.yaml │ ├── install.sh │ ├── kustomization.yaml │ ├── rbac.yaml │ ├── tmpl-ip-alloc-range.yaml │ ├── tmpl-patch-no-masq-local.yaml │ └── tmpl-secret.yaml │ ├── 2.6.5-20220720 │ ├── Manifest │ ├── host-preflight.yaml │ ├── install.sh │ ├── kustomization.yaml │ ├── patch-daemonset.yaml │ ├── patch-encrypt.yaml │ ├── tmpl-patch-ip-alloc-range.yaml │ ├── tmpl-patch-no-masq-local.yaml │ ├── tmpl-secret.yaml │ └── weave-daemonset-k8s-1.11.yaml │ ├── 2.6.5-20220825 │ ├── Manifest │ ├── host-preflight.yaml │ ├── install.sh │ ├── kustomization.yaml │ ├── patch-daemonset.yaml │ ├── patch-encrypt.yaml │ ├── tmpl-patch-ip-alloc-range.yaml │ ├── tmpl-patch-no-masq-local.yaml │ ├── tmpl-secret.yaml │ └── weave-daemonset-k8s-1.11.yaml │ ├── 2.6.5-20221006 │ ├── Manifest │ ├── host-preflight.yaml │ ├── install.sh │ ├── kustomization.yaml │ ├── patch-daemonset.yaml │ ├── patch-encrypt.yaml │ ├── tmpl-patch-ip-alloc-range.yaml │ ├── tmpl-patch-no-masq-local.yaml │ ├── tmpl-secret.yaml │ └── weave-daemonset-k8s-1.11.yaml │ ├── 2.6.5-20221025 │ ├── Manifest │ ├── host-preflight.yaml │ ├── install.sh │ ├── kustomization.yaml │ ├── patch-daemonset.yaml │ ├── patch-encrypt.yaml │ ├── tmpl-patch-ip-alloc-range.yaml │ ├── tmpl-patch-no-masq-local.yaml │ ├── tmpl-secret.yaml │ └── weave-daemonset-k8s-1.11.yaml │ ├── 2.6.5-20221122 │ ├── Manifest │ ├── host-preflight.yaml │ ├── install.sh │ ├── kustomization.yaml │ ├── patch-daemonset.yaml │ ├── patch-encrypt.yaml │ ├── tmpl-patch-ip-alloc-range.yaml │ ├── tmpl-patch-no-masq-local.yaml │ ├── tmpl-secret.yaml │ └── weave-daemonset-k8s-1.11.yaml │ ├── 2.6.5-20230222 │ ├── Manifest │ ├── host-preflight.yaml │ ├── install.sh │ ├── kustomization.yaml │ ├── patch-daemonset.yaml │ ├── patch-encrypt.yaml │ ├── tmpl-patch-ip-alloc-range.yaml │ ├── tmpl-patch-no-masq-local.yaml │ ├── tmpl-secret.yaml │ └── weave-daemonset-k8s-1.11.yaml │ ├── 2.6.5-20230417 │ ├── Manifest │ ├── host-preflight.yaml │ ├── install.sh │ ├── kustomization.yaml │ ├── patch-daemonset.yaml │ ├── patch-encrypt.yaml │ ├── tmpl-patch-ip-alloc-range.yaml │ ├── tmpl-patch-no-masq-local.yaml │ ├── tmpl-secret.yaml │ └── weave-daemonset-k8s-1.11.yaml │ ├── 2.6.5 │ ├── Manifest │ ├── build-images │ │ ├── README.md │ │ ├── weave-kube │ │ │ ├── .trivyignore.rego │ │ │ ├── Dockerfile │ │ │ └── Makefile │ │ ├── weave-npc │ │ │ ├── .trivyignore.rego │ │ │ ├── Dockerfile │ │ │ └── Makefile │ │ └── weaveexec │ │ │ ├── .trivyignore.rego │ │ │ ├── Dockerfile │ │ │ └── Makefile │ ├── daemonset.yaml │ ├── encrypt.yaml │ ├── host-preflight.yaml │ ├── install.sh │ ├── kustomization.yaml │ ├── rbac.yaml │ ├── tmpl-ip-alloc-range.yaml │ ├── tmpl-patch-no-masq-local.yaml │ └── tmpl-secret.yaml │ ├── 2.7.0 │ ├── Manifest │ ├── host-preflight.yaml │ ├── install.sh │ ├── kustomization.yaml │ ├── patch-daemonset.yaml │ ├── patch-encrypt.yaml │ ├── tmpl-patch-ip-alloc-range.yaml │ ├── tmpl-patch-no-masq-local.yaml │ ├── tmpl-secret.yaml │ └── weave-daemonset-k8s-1.11.yaml │ ├── 2.8.1-20220616 │ ├── Manifest │ ├── host-preflight.yaml │ ├── install.sh │ ├── kustomization.yaml │ ├── patch-daemonset.yaml │ ├── patch-encrypt.yaml │ ├── tmpl-patch-ip-alloc-range.yaml │ ├── tmpl-patch-no-masq-local.yaml │ ├── tmpl-secret.yaml │ └── weave-daemonset-k8s-1.11.yaml │ ├── 2.8.1-20220720 │ ├── Manifest │ ├── host-preflight.yaml │ ├── install.sh │ ├── kustomization.yaml │ ├── patch-daemonset.yaml │ ├── patch-encrypt.yaml │ ├── tmpl-patch-ip-alloc-range.yaml │ ├── tmpl-patch-no-masq-local.yaml │ ├── tmpl-secret.yaml │ └── weave-daemonset-k8s-1.11.yaml │ ├── 2.8.1-20220825 │ ├── Manifest │ ├── host-preflight.yaml │ ├── install.sh │ ├── kustomization.yaml │ ├── patch-daemonset.yaml │ ├── patch-encrypt.yaml │ ├── tmpl-patch-ip-alloc-range.yaml │ ├── tmpl-patch-no-masq-local.yaml │ ├── tmpl-secret.yaml │ └── weave-daemonset-k8s-1.11.yaml │ ├── 2.8.1-20221006 │ ├── Manifest │ ├── host-preflight.yaml │ ├── install.sh │ ├── kustomization.yaml │ ├── patch-daemonset.yaml │ ├── patch-encrypt.yaml │ ├── tmpl-patch-ip-alloc-range.yaml │ ├── tmpl-patch-no-masq-local.yaml │ ├── tmpl-secret.yaml │ └── weave-daemonset-k8s-1.11.yaml │ ├── 2.8.1-20221025 │ ├── Manifest │ ├── host-preflight.yaml │ ├── install.sh │ ├── kustomization.yaml │ ├── patch-daemonset.yaml │ ├── patch-encrypt.yaml │ ├── tmpl-patch-ip-alloc-range.yaml │ ├── tmpl-patch-no-masq-local.yaml │ ├── tmpl-secret.yaml │ └── weave-daemonset-k8s-1.11.yaml │ ├── 2.8.1-20221122 │ ├── Manifest │ ├── host-preflight.yaml │ ├── install.sh │ ├── kustomization.yaml │ ├── patch-daemonset.yaml │ ├── patch-encrypt.yaml │ ├── tmpl-patch-ip-alloc-range.yaml │ ├── tmpl-patch-no-masq-local.yaml │ ├── tmpl-secret.yaml │ └── weave-daemonset-k8s-1.11.yaml │ ├── 2.8.1-20230130 │ ├── Manifest │ ├── host-preflight.yaml │ ├── install.sh │ ├── kustomization.yaml │ ├── patch-daemonset.yaml │ ├── patch-encrypt.yaml │ ├── tmpl-patch-ip-alloc-range.yaml │ ├── tmpl-patch-no-masq-local.yaml │ ├── tmpl-secret.yaml │ └── weave-daemonset-k8s-1.11.yaml │ ├── 2.8.1-20230222 │ ├── Manifest │ ├── host-preflight.yaml │ ├── install.sh │ ├── kustomization.yaml │ ├── patch-daemonset.yaml │ ├── patch-encrypt.yaml │ ├── tmpl-patch-ip-alloc-range.yaml │ ├── tmpl-patch-no-masq-local.yaml │ ├── tmpl-secret.yaml │ └── weave-daemonset-k8s-1.11.yaml │ ├── 2.8.1-20230324 │ ├── Manifest │ ├── host-preflight.yaml │ ├── install.sh │ ├── kustomization.yaml │ ├── patch-daemonset.yaml │ ├── patch-encrypt.yaml │ ├── tmpl-patch-ip-alloc-range.yaml │ ├── tmpl-patch-no-masq-local.yaml │ ├── tmpl-secret.yaml │ └── weave-daemonset-k8s-1.11.yaml │ ├── 2.8.1-20230406 │ ├── Manifest │ ├── host-preflight.yaml │ ├── install.sh │ ├── kustomization.yaml │ ├── patch-daemonset.yaml │ ├── patch-encrypt.yaml │ ├── tmpl-patch-ip-alloc-range.yaml │ ├── tmpl-patch-no-masq-local.yaml │ ├── tmpl-secret.yaml │ └── weave-daemonset-k8s-1.11.yaml │ ├── 2.8.1-20230417 │ ├── Manifest │ ├── host-preflight.yaml │ ├── install.sh │ ├── kustomization.yaml │ ├── patch-daemonset.yaml │ ├── patch-encrypt.yaml │ ├── tmpl-patch-ip-alloc-range.yaml │ ├── tmpl-patch-no-masq-local.yaml │ ├── tmpl-secret.yaml │ └── weave-daemonset-k8s-1.11.yaml │ ├── 2.8.1 │ ├── Manifest │ ├── build-images │ │ ├── README.md │ │ ├── weave-kube │ │ │ ├── .trivyignore.rego │ │ │ ├── Dockerfile │ │ │ └── Makefile │ │ ├── weave-npc │ │ │ ├── .trivyignore.rego │ │ │ ├── Dockerfile │ │ │ └── Makefile │ │ └── weaveexec │ │ │ ├── .trivyignore.rego │ │ │ ├── Dockerfile │ │ │ └── Makefile │ ├── host-preflight.yaml │ ├── install.sh │ ├── kustomization.yaml │ ├── patch-daemonset.yaml │ ├── patch-encrypt.yaml │ ├── tmpl-patch-ip-alloc-range.yaml │ ├── tmpl-patch-no-masq-local.yaml │ ├── tmpl-secret.yaml │ └── weave-daemonset-k8s-1.11.yaml │ ├── categories.json │ └── template │ ├── base │ ├── Manifest │ ├── host-preflight.yaml │ ├── install.sh │ ├── kustomization.yaml │ ├── patch-daemonset.yaml │ ├── patch-encrypt.yaml │ ├── tmpl-patch-ip-alloc-range.yaml │ ├── tmpl-patch-no-masq-local.yaml │ └── tmpl-secret.yaml │ ├── generate.sh │ └── testgrid │ └── k8s-docker.yaml ├── bin ├── addon-has-changes-matrix.sh ├── build-addon-package.sh ├── cleanup-staging-s3.sh ├── containertools │ ├── Dockerfile.amazon2023 │ ├── Dockerfile.rhel9 │ ├── builddeps.sh │ ├── createrepo.sh │ └── yumdownloader.sh ├── generate-addons.js ├── list-all-packages-actions-matrix.sh ├── list-all-packages.sh ├── list-packages-s3.sh ├── run-kube-bench.sh ├── s3cmd-get-latest-tag.sh ├── save-manifest-assets.sh ├── scan-images │ ├── addons-test.js │ ├── addons.js │ ├── matrix.js │ ├── package-lock.json │ └── package.json ├── tag-and-release.sh ├── test-addon.sh ├── upload-dist-staging.sh ├── upload-dist-versioned.sh ├── verify-tag.sh ├── verify-testgrid-run.sh └── watchrsync.js ├── bundles ├── README.md ├── helm │ └── Dockerfile ├── k8s-amazon2023 │ ├── Dockerfile │ ├── containertools │ │ ├── builddeps.sh │ │ ├── createrepo.sh │ │ └── yumdownloader.sh │ └── kubernetes.repo ├── k8s-rhel7-force │ ├── Dockerfile │ └── kubernetes.repo ├── k8s-rhel7 │ ├── Dockerfile │ └── kubernetes.repo ├── k8s-rhel8 │ ├── Dockerfile │ └── kubernetes.repo ├── k8s-rhel9 │ ├── Dockerfile │ ├── containertools │ │ ├── builddeps.sh │ │ ├── createrepo.sh │ │ └── yumdownloader.sh │ └── kubernetes.repo ├── k8s-ubuntu1604 │ ├── Dockerfile │ └── kubernetes.list ├── k8s-ubuntu1804 │ ├── Dockerfile │ └── kubernetes.list ├── k8s-ubuntu2004 │ ├── Dockerfile │ └── kubernetes.list ├── k8s-ubuntu2204 │ ├── Dockerfile │ └── kubernetes.list ├── k8s-ubuntu2404 │ ├── Dockerfile │ └── kubernetes.list └── krew │ └── Dockerfile ├── cmd └── kurl │ └── main.go ├── design ├── assets │ └── Testgrid Nighty.png ├── proxy.md └── tg-branches.md ├── docs ├── arch │ ├── README.md │ ├── adr-001-use-openebs.md │ ├── adr-002-rook-distributed.md │ ├── adr-003-external-addons.md │ ├── adr-004-installer-objects-linter.md │ ├── adr-005-host-packages.md │ ├── adr-006-flannel-cni.md │ ├── adr-007-deprecate-k3s-and-rke2.md │ ├── adr-008-weave-to-flannel-migration.md │ ├── adr-009-storage-migration.md │ └── adr-010-new-versioning-scheme.md └── ipv6.md ├── go.mod ├── go.sum ├── hack ├── test-shell │ ├── Dockerfile.rhel-7 │ ├── Dockerfile.rhel-8 │ ├── Dockerfile.rhel-9 │ ├── Dockerfile.ubuntu-20.04 │ └── Dockerfile.ubuntu-22.04 └── testdata │ └── manifest │ └── clean ├── kurl_util ├── .gitignore ├── Makefile ├── README.md ├── cmd │ ├── bashmerge │ │ ├── main.go │ │ └── main_test.go │ ├── bcrypt │ │ └── main.go │ ├── config │ │ └── main.go │ ├── docker │ │ └── main.go │ ├── htpasswd │ │ └── main.go │ ├── installermerge │ │ ├── main.go │ │ └── main_test.go │ ├── network │ │ └── main.go │ ├── pvmigrate │ │ └── main.go │ ├── subnet │ │ ├── main.go │ │ ├── main_test.go │ │ └── netlink │ │ │ ├── netlink.go │ │ │ ├── netlink_linux.go │ │ │ └── netlink_other.go │ ├── toml │ │ ├── main.go │ │ └── main_test.go │ ├── veleroplugin │ │ ├── main.go │ │ └── main_test.go │ ├── vendorflights │ │ ├── README.md │ │ ├── main.go │ │ ├── main_test.go │ │ └── testdata │ │ │ ├── basic │ │ │ ├── expected_preflights.yaml │ │ │ └── installer.yaml │ │ │ ├── missing-preflight │ │ │ └── installer.yaml │ │ │ └── v1beta1 │ │ │ └── installer.yaml │ ├── yamltobash │ │ ├── main.go │ │ ├── main_test.go │ │ └── testdata │ │ │ ├── expected │ │ │ ├── weave_no_masq_local_default │ │ │ └── weave_no_masq_local_unset │ │ │ └── yaml │ │ │ ├── weave_no_masq_local_default.yaml │ │ │ ├── weave_no_masq_local_set.yaml │ │ │ └── weave_no_masq_local_unset.yaml │ └── yamlutil │ │ ├── main.go │ │ ├── main_test.go │ │ └── testfiles │ │ ├── complex.yaml │ │ └── latest.yaml └── deploy │ └── Dockerfile ├── package.json ├── packages ├── host │ ├── fio │ │ └── Manifest │ ├── longhorn │ │ └── Manifest │ └── openssl │ │ └── Manifest └── kubernetes │ ├── 1.16.4 │ └── Manifest │ ├── 1.17.13 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.17.3 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.17.7 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.18.10 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.18.17 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.18.18 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.18.19 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.18.20 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.18.4 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.18.9 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.19.10 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.19.11 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.19.12 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.19.13 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.19.15 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.19.16 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.19.2 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.19.3 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.19.7 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.19.9 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.20.0 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.20.1 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.20.10 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.20.11 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.20.14 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.20.15 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.20.2 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.20.4 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.20.5 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.20.6 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.20.7 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.20.8 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.20.9 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.21.0 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.21.1 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.21.11 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.21.12 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.21.14 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.21.2 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.21.3 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.21.4 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.21.5 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.21.8 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.21.9 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.22.12 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.22.13 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.22.14 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.22.15 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.22.16 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.22.17 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.22.5 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.22.6 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.22.8 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.22.9 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.23.10 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.23.11 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.23.12 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.23.13 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.23.14 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.23.15 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.23.16 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.23.17 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.23.2 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.23.3 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.23.5 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.23.6 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.23.9 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.24.0 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.24.10 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.24.11 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.24.12 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.24.13 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.24.14 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.24.15 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.24.16 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.24.17 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.24.3 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.24.4 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.24.5 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.24.6 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.24.7 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.24.8 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.24.9 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.25.0 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.25.1 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.25.10 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.25.11 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.25.12 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.25.13 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.25.14 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.25.2 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.25.3 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.25.4 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.25.5 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.25.6 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.25.7 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.25.8 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.25.9 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.26.0 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.26.1 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.26.11 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.26.12 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.26.13 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.26.14 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.26.15 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.26.2 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.26.3 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.26.4 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.26.5 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.26.6 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.26.7 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.26.8 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.26.9 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.27.0 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.27.1 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.27.10 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.27.11 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.27.12 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.27.13 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.27.14 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.27.15 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.27.16 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.27.2 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.27.3 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.27.4 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.27.5 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.27.6 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.27.8 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.27.9 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.28.0 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.28.1 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.28.10 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.28.11 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.28.12 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.28.13 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.28.14 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.28.15 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.28.2 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.28.4 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.28.5 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.28.6 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.28.7 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.28.8 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.28.9 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.29.0 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.29.1 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.29.10 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.29.11 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.29.12 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.29.13 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.29.14 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.29.15 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.29.2 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.29.3 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.29.4 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.29.5 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.29.6 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.29.7 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.29.8 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.29.9 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.30.0 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.30.1 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.30.10 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.30.11 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.30.12 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.30.14 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.30.2 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.30.3 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.30.4 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.30.5 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.30.6 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.30.7 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.30.8 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.30.9 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.31.0 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.31.1 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.31.11 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.31.12 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.31.13 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.31.2 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.31.3 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.31.4 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.31.5 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.31.6 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.31.7 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.31.8 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.32.2 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.32.3 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.32.4 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.32.7 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.32.8 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.32.9 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.33.4 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.33.5 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── 1.34.1 │ ├── Manifest │ └── conformance │ │ └── Manifest │ ├── README.md │ └── template │ ├── Dockerfile.131 │ ├── Dockerfile.132 │ ├── Dockerfile.133 │ ├── Dockerfile.134 │ └── script.sh ├── pkg ├── cli │ ├── cli.go │ ├── cluster.go │ ├── cluster_free_disk_space.go │ ├── cluster_free_disk_space_test.go │ ├── cluster_images.go │ ├── cluster_migrate_multinode_storage.go │ ├── colors.go │ ├── commands.go │ ├── errors.go │ ├── format_address.go │ ├── host.go │ ├── host_preflight.go │ ├── host_preflight_test.go │ ├── host_protectedid.go │ ├── hostname.go │ ├── longhorn.go │ ├── longhorn_test.go │ ├── mock │ │ └── mock_cli.go │ ├── netutil.go │ ├── nodes_connectivity.go │ ├── object_store.go │ ├── rook.go │ ├── rook_flexvolume_to_csi.go │ ├── rook_has_sufficient_blockdevices.go │ ├── rook_health.go │ ├── rook_hostpath_to_block.go │ ├── rook_wait_for_health.go │ ├── rook_wait_for_version.go │ ├── root.go │ └── version.go ├── cluster │ ├── nodes.go │ ├── nodes_test.go │ └── space │ │ ├── openebs_disk_space_validator.go │ │ ├── openebs_disk_space_validator_test.go │ │ ├── openebs_free_disk_space_getter.go │ │ ├── openebs_free_disk_space_getter_test.go │ │ ├── rook_disk_space_validator.go │ │ ├── rook_disk_space_validator_test.go │ │ ├── rook_free_disk_space_getter.go │ │ └── rook_free_disk_space_getter_test.go ├── host │ ├── hostname.go │ └── protectedid.go ├── installer │ ├── installer.go │ ├── template.go │ └── template_test.go ├── k8sutil │ ├── apply.go │ ├── daemonset.go │ ├── deployment.go │ ├── exec.go │ ├── job.go │ ├── labels.go │ ├── node.go │ ├── pod.go │ ├── pod_test.go │ ├── storage.go │ └── storage_test.go ├── netutils │ └── iface.go ├── preflight │ ├── assets │ │ ├── host-preflights.yaml │ │ └── preflights.yaml │ ├── builtin.go │ ├── builtin_test.go │ ├── mock │ │ └── mock_runner.go │ ├── preflight.go │ └── runner.go ├── rook │ ├── cephtypes │ │ └── status.go │ ├── flexvolume.go │ ├── flexvolume_test.go │ ├── health.go │ ├── health_test.go │ ├── migrate.go │ ├── migrate_test.go │ ├── output.go │ ├── static │ │ ├── flexmigrator │ │ │ ├── kustomize │ │ │ │ ├── base │ │ │ │ │ ├── flex-migrator.yaml │ │ │ │ │ └── kustomization.yaml │ │ │ │ └── overlays │ │ │ │ │ └── kurl │ │ │ │ │ ├── flex-migrator.patch.yaml │ │ │ │ │ └── kustomization.yaml │ │ │ └── static.go │ │ ├── static.go │ │ └── toolbox.yaml │ ├── testfiles │ │ ├── 6 blockdevice pods.json │ │ ├── autoscalerCephStatus.json │ │ ├── globalRecoveryEventCephStatus.json │ │ ├── healthyCephStatus1.json │ │ ├── hostpathpods.json │ │ ├── hypotheticalCheckHealthWarnCephStatus.json │ │ ├── listPVCsByStorageClass.json │ │ ├── noreplicasCephStatus.json │ │ ├── poolPgNumNotPowerOfTwoCephStatus.json │ │ ├── rebalanceCephStatus1.json │ │ ├── rebalanceCephStatus2.json │ │ ├── rebalanceCephStatusFull.json │ │ ├── rebalanceCephStatusMultinode.json │ │ ├── recentCrashCephStatus.json │ │ ├── rook-6osd-deployments.json │ │ ├── rook-hostpath-deployments.json │ │ ├── rookBlockSpec.yaml │ │ ├── rookHostpathSpec.yaml │ │ ├── scalePodOwnerDeploy.json │ │ ├── scalePodOwnerSts.json │ │ ├── static.go │ │ ├── tooManyPgsPerOsd.json │ │ ├── upgradedNode.json │ │ ├── upgradedNodeLess50Images.json │ │ ├── waitForRookVersionAllReady.json │ │ ├── waitForRookVersionAllReadyWithEmptyVersion.json │ │ ├── waitForRookVersionNotReady.json │ │ └── waitForRookVersionOldVersions.json │ ├── toolbox.go │ ├── toolbox_test.go │ ├── upgrade.go │ └── upgrade_test.go ├── static │ └── nodes_connectivity │ │ ├── kustomize │ │ ├── base-listeners │ │ │ ├── daemonset.yaml │ │ │ └── kustomization.yaml │ │ ├── pinger │ │ │ ├── job.yaml │ │ │ └── kustomization.yaml │ │ ├── tcp-listeners │ │ │ ├── daemonset.yaml │ │ │ └── kustomization.yaml │ │ └── udp-listeners │ │ │ ├── daemonset.yaml │ │ │ └── kustomization.yaml │ │ └── static.go └── version │ └── build.go ├── proposals └── goldpinger_migration.md ├── scripts ├── Manifest ├── common │ ├── addon-test.sh │ ├── addon.sh │ ├── common-test.sh │ ├── common.sh │ ├── containerd.sh │ ├── discover.sh │ ├── docker.sh │ ├── helm.sh │ ├── host-packages.sh │ ├── kubernetes-test.sh │ ├── kubernetes.sh │ ├── kurl.sh │ ├── longhorn.sh │ ├── object_store.sh │ ├── plugins.sh │ ├── preflights.sh │ ├── prompts.sh │ ├── proxy-test.sh │ ├── proxy.sh │ ├── reporting.sh │ ├── rook-upgrade-test.sh │ ├── rook-upgrade.sh │ ├── rook.sh │ ├── test │ │ ├── common-test.sh │ │ ├── discover-test.sh │ │ ├── docker-version-test.sh │ │ ├── ip-address-test.sh │ │ └── semver-test.sh │ ├── upgrade.sh │ ├── utilbinaries.sh │ ├── yaml-test.sh │ └── yaml.sh ├── distro │ ├── interface.sh │ └── kubeadm │ │ └── distro.sh ├── initialize-build.sh ├── install.sh ├── join.sh ├── kustomize │ └── kubeadm │ │ ├── init-orig │ │ ├── audit.yaml │ │ ├── kubeadm-cluster-config-v1beta2.yml │ │ ├── kubeadm-cluster-config-v1beta3.yml │ │ ├── kubeadm-init-config-v1beta2.yml │ │ ├── kubeadm-init-config-v1beta3.yml │ │ ├── kubeadm-init-hostname.patch.tmpl.yaml │ │ ├── kubelet-args-pause-image.patch.tmpl.yaml │ │ ├── kubelet-config-v1beta1.yaml │ │ ├── kubeproxy-config-v1alpha1.yml │ │ ├── kustomization.yaml │ │ ├── patch-certificate-key.yaml │ │ ├── patch-cluster-config-cis-compliance-insecure-port.yaml │ │ ├── patch-cluster-config-cis-compliance.yaml │ │ ├── patch-kubelet-21.yaml │ │ ├── patch-kubelet-cis-compliance.yaml │ │ ├── patch-kubelet-container-log-max-files.tpl │ │ ├── patch-kubelet-container-log-max-size.tpl │ │ ├── patch-kubelet-eviction-threshold.tpl │ │ ├── patch-kubelet-max-pods.tmpl.yaml │ │ ├── patch-kubelet-pre21.yaml │ │ ├── patch-kubelet-reserve-compute-resources.tpl │ │ ├── patch-kubelet-system-reserved.tpl │ │ ├── patch-load-balancer-address.yaml │ │ ├── patch-public-address.yaml │ │ ├── patch-public-and-load-balancer-address.yaml │ │ └── pod-security-policy-privileged.yaml │ │ └── join-orig │ │ ├── audit.yaml │ │ ├── kubeadm-join-config-v1beta2.yaml │ │ ├── kubeadm-join-config-v1beta3.yaml │ │ ├── kubeadm-join-hostname.patch.tmpl.yaml │ │ ├── kubelet-args-pause-image.patch.tmpl.yaml │ │ ├── kustomization.yaml │ │ └── patch-control-plane.yaml ├── manifests │ └── troubleshoot.yaml ├── tasks.sh └── upgrade.sh ├── testgrid └── specs │ ├── customer-migration-specs.yaml │ ├── deploy.yaml │ ├── full.yaml │ ├── k8s-upgrade.yaml │ ├── latest.yaml │ ├── os-customer-common.yaml │ ├── os-firstlast.yaml │ ├── os-full.yaml │ ├── os-latest.yaml │ ├── os-removed.yaml │ └── storage-migration.yaml ├── tools └── tools.go └── web └── src └── installers └── versions.js /.claude/.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/.claude/.manifest -------------------------------------------------------------------------------- /.claude/agents/ci-developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/.claude/agents/ci-developer.md -------------------------------------------------------------------------------- /.claude/agents/frontend-developer.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.claude/agents/go-dep-updater.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/.claude/agents/go-dep-updater.md -------------------------------------------------------------------------------- /.claude/agents/go-developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/.claude/agents/go-developer.md -------------------------------------------------------------------------------- /.claude/agents/researcher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/.claude/agents/researcher.md -------------------------------------------------------------------------------- /.claude/agents/shortcut.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/.claude/agents/shortcut.md -------------------------------------------------------------------------------- /.claude/agents/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/.claude/agents/testing.md -------------------------------------------------------------------------------- /.claude/commands/go-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/.claude/commands/go-update.md -------------------------------------------------------------------------------- /.claude/commands/implement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/.claude/commands/implement.md -------------------------------------------------------------------------------- /.claude/commands/proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/.claude/commands/proposal.md -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | kurl_util/bin/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actions/import-external-addons/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.github/actions/import-external-addons/dist/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /.github/actions/testgrid-checker/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.github/actions/testgrid-checker/dist/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/license.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/.github/workflows/license.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.bck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/.golangci.bck.yml -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 14 2 | -------------------------------------------------------------------------------- /.stignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/.stignore -------------------------------------------------------------------------------- /ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/ARCHITECTURE.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/README.md -------------------------------------------------------------------------------- /addons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/README.md -------------------------------------------------------------------------------- /addons/antrea/0.13.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/antrea/0.13.1/Manifest -------------------------------------------------------------------------------- /addons/antrea/0.13.1/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/antrea/0.13.1/install.sh -------------------------------------------------------------------------------- /addons/antrea/0.13.1/ipsec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/antrea/0.13.1/ipsec.yaml -------------------------------------------------------------------------------- /addons/antrea/0.13.1/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | -------------------------------------------------------------------------------- /addons/antrea/1.0.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/antrea/1.0.0/Manifest -------------------------------------------------------------------------------- /addons/antrea/1.0.0/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/antrea/1.0.0/install.sh -------------------------------------------------------------------------------- /addons/antrea/1.0.0/ipsec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/antrea/1.0.0/ipsec.yaml -------------------------------------------------------------------------------- /addons/antrea/1.0.0/kubeadm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/antrea/1.0.0/kubeadm.yaml -------------------------------------------------------------------------------- /addons/antrea/1.0.0/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | -------------------------------------------------------------------------------- /addons/antrea/1.0.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/antrea/1.0.1/Manifest -------------------------------------------------------------------------------- /addons/antrea/1.0.1/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/antrea/1.0.1/install.sh -------------------------------------------------------------------------------- /addons/antrea/1.0.1/ipsec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/antrea/1.0.1/ipsec.yaml -------------------------------------------------------------------------------- /addons/antrea/1.0.1/kubeadm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/antrea/1.0.1/kubeadm.yaml -------------------------------------------------------------------------------- /addons/antrea/1.0.1/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | -------------------------------------------------------------------------------- /addons/antrea/1.1.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/antrea/1.1.0/Manifest -------------------------------------------------------------------------------- /addons/antrea/1.1.0/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/antrea/1.1.0/install.sh -------------------------------------------------------------------------------- /addons/antrea/1.1.0/ipsec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/antrea/1.1.0/ipsec.yaml -------------------------------------------------------------------------------- /addons/antrea/1.1.0/kubeadm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/antrea/1.1.0/kubeadm.yaml -------------------------------------------------------------------------------- /addons/antrea/1.1.0/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | -------------------------------------------------------------------------------- /addons/antrea/1.2.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/antrea/1.2.0/Manifest -------------------------------------------------------------------------------- /addons/antrea/1.2.0/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/antrea/1.2.0/install.sh -------------------------------------------------------------------------------- /addons/antrea/1.2.0/ipsec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/antrea/1.2.0/ipsec.yaml -------------------------------------------------------------------------------- /addons/antrea/1.2.0/kubeadm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/antrea/1.2.0/kubeadm.yaml -------------------------------------------------------------------------------- /addons/antrea/1.2.0/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | -------------------------------------------------------------------------------- /addons/antrea/1.2.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/antrea/1.2.1/Manifest -------------------------------------------------------------------------------- /addons/antrea/1.2.1/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/antrea/1.2.1/install.sh -------------------------------------------------------------------------------- /addons/antrea/1.2.1/ipsec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/antrea/1.2.1/ipsec.yaml -------------------------------------------------------------------------------- /addons/antrea/1.2.1/kubeadm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/antrea/1.2.1/kubeadm.yaml -------------------------------------------------------------------------------- /addons/antrea/1.2.1/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | -------------------------------------------------------------------------------- /addons/antrea/1.4.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/antrea/1.4.0/Manifest -------------------------------------------------------------------------------- /addons/antrea/1.4.0/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/antrea/1.4.0/install.sh -------------------------------------------------------------------------------- /addons/antrea/1.4.0/ipsec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/antrea/1.4.0/ipsec.yaml -------------------------------------------------------------------------------- /addons/antrea/1.4.0/kubeadm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/antrea/1.4.0/kubeadm.yaml -------------------------------------------------------------------------------- /addons/antrea/1.4.0/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | -------------------------------------------------------------------------------- /addons/antrea/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/antrea/categories.json -------------------------------------------------------------------------------- /addons/antrea/template/base/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | -------------------------------------------------------------------------------- /addons/aws/0.0.1/Manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addons/aws/0.0.1/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/aws/0.0.1/install.sh -------------------------------------------------------------------------------- /addons/aws/0.0.1/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - storageclass.yaml 3 | -------------------------------------------------------------------------------- /addons/aws/0.1.0/Manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addons/aws/0.1.0/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/aws/0.1.0/install.sh -------------------------------------------------------------------------------- /addons/aws/0.1.0/kustomization.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addons/aws/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/aws/categories.json -------------------------------------------------------------------------------- /addons/calico/3.9.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/calico/3.9.1/Manifest -------------------------------------------------------------------------------- /addons/calico/3.9.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/calico/3.9.1/README.md -------------------------------------------------------------------------------- /addons/calico/3.9.1/calico.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/calico/3.9.1/calico.yaml -------------------------------------------------------------------------------- /addons/calico/3.9.1/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/calico/3.9.1/install.sh -------------------------------------------------------------------------------- /addons/calico/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/calico/categories.json -------------------------------------------------------------------------------- /addons/cert-manager/1.0.3/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - cert-manager.yaml 3 | -------------------------------------------------------------------------------- /addons/cert-manager/1.13.2/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - cert-manager.yaml 3 | -------------------------------------------------------------------------------- /addons/cert-manager/1.17.1/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - cert-manager.yaml 3 | -------------------------------------------------------------------------------- /addons/cert-manager/1.9.1/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - cert-manager.yaml 3 | -------------------------------------------------------------------------------- /addons/collectd/v5/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/collectd/v5/Manifest -------------------------------------------------------------------------------- /addons/collectd/v5/collectd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/collectd/v5/collectd.conf -------------------------------------------------------------------------------- /addons/collectd/v5/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/collectd/v5/install.sh -------------------------------------------------------------------------------- /addons/containerd/1.3.7/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/containerd/1.3.7/Manifest -------------------------------------------------------------------------------- /addons/containerd/1.3.9/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/containerd/1.3.9/Manifest -------------------------------------------------------------------------------- /addons/containerd/1.4.3/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/containerd/1.4.3/Manifest -------------------------------------------------------------------------------- /addons/containerd/1.4.4/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/containerd/1.4.4/Manifest -------------------------------------------------------------------------------- /addons/containerd/1.4.6/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/containerd/1.4.6/Manifest -------------------------------------------------------------------------------- /addons/containerd/1.4.8/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/containerd/1.4.8/Manifest -------------------------------------------------------------------------------- /addons/containerd/1.4.9/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/containerd/1.4.9/Manifest -------------------------------------------------------------------------------- /addons/containerd/1.6.4/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/containerd/1.6.4/Manifest -------------------------------------------------------------------------------- /addons/containerd/1.6.6/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/containerd/1.6.6/Manifest -------------------------------------------------------------------------------- /addons/containerd/1.6.7/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/containerd/1.6.7/Manifest -------------------------------------------------------------------------------- /addons/containerd/1.6.8/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/containerd/1.6.8/Manifest -------------------------------------------------------------------------------- /addons/containerd/1.6.9/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/containerd/1.6.9/Manifest -------------------------------------------------------------------------------- /addons/containerd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/containerd/README.md -------------------------------------------------------------------------------- /addons/contour/1.0.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.0.1/Manifest -------------------------------------------------------------------------------- /addons/contour/1.0.1/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.0.1/common.yaml -------------------------------------------------------------------------------- /addons/contour/1.0.1/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.0.1/install.sh -------------------------------------------------------------------------------- /addons/contour/1.0.1/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.0.1/rbac.yaml -------------------------------------------------------------------------------- /addons/contour/1.10.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.10.1/Manifest -------------------------------------------------------------------------------- /addons/contour/1.10.1/batch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.10.1/batch.yaml -------------------------------------------------------------------------------- /addons/contour/1.10.1/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.10.1/install.sh -------------------------------------------------------------------------------- /addons/contour/1.11.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.11.0/Manifest -------------------------------------------------------------------------------- /addons/contour/1.11.0/batch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.11.0/batch.yaml -------------------------------------------------------------------------------- /addons/contour/1.11.0/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.11.0/install.sh -------------------------------------------------------------------------------- /addons/contour/1.12.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.12.0/Manifest -------------------------------------------------------------------------------- /addons/contour/1.12.0/batch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.12.0/batch.yaml -------------------------------------------------------------------------------- /addons/contour/1.12.0/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.12.0/install.sh -------------------------------------------------------------------------------- /addons/contour/1.13.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.13.0/Manifest -------------------------------------------------------------------------------- /addons/contour/1.13.0/batch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.13.0/batch.yaml -------------------------------------------------------------------------------- /addons/contour/1.13.0/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.13.0/install.sh -------------------------------------------------------------------------------- /addons/contour/1.13.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.13.1/Manifest -------------------------------------------------------------------------------- /addons/contour/1.13.1/batch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.13.1/batch.yaml -------------------------------------------------------------------------------- /addons/contour/1.13.1/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.13.1/install.sh -------------------------------------------------------------------------------- /addons/contour/1.14.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.14.0/Manifest -------------------------------------------------------------------------------- /addons/contour/1.14.0/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.14.0/install.sh -------------------------------------------------------------------------------- /addons/contour/1.14.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.14.1/Manifest -------------------------------------------------------------------------------- /addons/contour/1.14.1/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.14.1/install.sh -------------------------------------------------------------------------------- /addons/contour/1.15.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.15.1/Manifest -------------------------------------------------------------------------------- /addons/contour/1.15.1/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.15.1/install.sh -------------------------------------------------------------------------------- /addons/contour/1.16.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.16.0/Manifest -------------------------------------------------------------------------------- /addons/contour/1.16.0/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.16.0/install.sh -------------------------------------------------------------------------------- /addons/contour/1.18.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.18.0/Manifest -------------------------------------------------------------------------------- /addons/contour/1.18.0/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.18.0/install.sh -------------------------------------------------------------------------------- /addons/contour/1.19.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.19.1/Manifest -------------------------------------------------------------------------------- /addons/contour/1.19.1/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.19.1/install.sh -------------------------------------------------------------------------------- /addons/contour/1.20.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.20.0/Manifest -------------------------------------------------------------------------------- /addons/contour/1.20.0/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.20.0/install.sh -------------------------------------------------------------------------------- /addons/contour/1.20.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.20.1/Manifest -------------------------------------------------------------------------------- /addons/contour/1.20.1/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.20.1/install.sh -------------------------------------------------------------------------------- /addons/contour/1.21.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.21.0/Manifest -------------------------------------------------------------------------------- /addons/contour/1.21.0/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.21.0/install.sh -------------------------------------------------------------------------------- /addons/contour/1.21.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.21.1/Manifest -------------------------------------------------------------------------------- /addons/contour/1.21.1/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.21.1/install.sh -------------------------------------------------------------------------------- /addons/contour/1.22.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.22.0/Manifest -------------------------------------------------------------------------------- /addons/contour/1.22.0/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.22.0/install.sh -------------------------------------------------------------------------------- /addons/contour/1.22.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.22.1/Manifest -------------------------------------------------------------------------------- /addons/contour/1.22.1/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.22.1/install.sh -------------------------------------------------------------------------------- /addons/contour/1.23.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.23.0/Manifest -------------------------------------------------------------------------------- /addons/contour/1.23.0/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.23.0/install.sh -------------------------------------------------------------------------------- /addons/contour/1.23.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.23.1/Manifest -------------------------------------------------------------------------------- /addons/contour/1.23.1/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.23.1/install.sh -------------------------------------------------------------------------------- /addons/contour/1.23.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.23.2/Manifest -------------------------------------------------------------------------------- /addons/contour/1.23.2/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.23.2/install.sh -------------------------------------------------------------------------------- /addons/contour/1.24.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.24.0/Manifest -------------------------------------------------------------------------------- /addons/contour/1.24.0/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.24.0/install.sh -------------------------------------------------------------------------------- /addons/contour/1.24.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.24.1/Manifest -------------------------------------------------------------------------------- /addons/contour/1.24.1/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.24.1/install.sh -------------------------------------------------------------------------------- /addons/contour/1.24.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.24.2/Manifest -------------------------------------------------------------------------------- /addons/contour/1.24.2/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.24.2/install.sh -------------------------------------------------------------------------------- /addons/contour/1.24.3/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.24.3/Manifest -------------------------------------------------------------------------------- /addons/contour/1.24.3/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.24.3/install.sh -------------------------------------------------------------------------------- /addons/contour/1.24.4/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.24.4/Manifest -------------------------------------------------------------------------------- /addons/contour/1.24.4/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.24.4/install.sh -------------------------------------------------------------------------------- /addons/contour/1.25.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.25.0/Manifest -------------------------------------------------------------------------------- /addons/contour/1.25.0/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.25.0/install.sh -------------------------------------------------------------------------------- /addons/contour/1.25.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.25.2/Manifest -------------------------------------------------------------------------------- /addons/contour/1.25.2/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.25.2/install.sh -------------------------------------------------------------------------------- /addons/contour/1.26.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.26.0/Manifest -------------------------------------------------------------------------------- /addons/contour/1.26.0/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.26.0/install.sh -------------------------------------------------------------------------------- /addons/contour/1.26.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.26.1/Manifest -------------------------------------------------------------------------------- /addons/contour/1.26.1/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.26.1/install.sh -------------------------------------------------------------------------------- /addons/contour/1.27.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.27.0/Manifest -------------------------------------------------------------------------------- /addons/contour/1.27.0/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.27.0/install.sh -------------------------------------------------------------------------------- /addons/contour/1.28.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.28.2/Manifest -------------------------------------------------------------------------------- /addons/contour/1.28.2/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.28.2/install.sh -------------------------------------------------------------------------------- /addons/contour/1.28.3/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.28.3/Manifest -------------------------------------------------------------------------------- /addons/contour/1.28.3/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.28.3/install.sh -------------------------------------------------------------------------------- /addons/contour/1.29.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.29.0/Manifest -------------------------------------------------------------------------------- /addons/contour/1.29.0/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.29.0/install.sh -------------------------------------------------------------------------------- /addons/contour/1.30.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.30.0/Manifest -------------------------------------------------------------------------------- /addons/contour/1.30.0/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.30.0/install.sh -------------------------------------------------------------------------------- /addons/contour/1.32.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.32.0/Manifest -------------------------------------------------------------------------------- /addons/contour/1.32.0/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.32.0/install.sh -------------------------------------------------------------------------------- /addons/contour/1.32.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.32.1/Manifest -------------------------------------------------------------------------------- /addons/contour/1.32.1/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.32.1/install.sh -------------------------------------------------------------------------------- /addons/contour/1.7.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.7.0/Manifest -------------------------------------------------------------------------------- /addons/contour/1.7.0/batch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.7.0/batch.yaml -------------------------------------------------------------------------------- /addons/contour/1.7.0/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/1.7.0/install.sh -------------------------------------------------------------------------------- /addons/contour/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/contour/categories.json -------------------------------------------------------------------------------- /addons/contour/template/base/Manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addons/ekco/0.28.12/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/ekco/0.28.12/Manifest -------------------------------------------------------------------------------- /addons/ekco/0.28.12/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/ekco/0.28.12/README.md -------------------------------------------------------------------------------- /addons/ekco/0.28.12/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/ekco/0.28.12/install.sh -------------------------------------------------------------------------------- /addons/ekco/0.28.12/namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: kurl 5 | -------------------------------------------------------------------------------- /addons/ekco/0.28.12/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/ekco/0.28.12/rbac.yaml -------------------------------------------------------------------------------- /addons/ekco/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/ekco/categories.json -------------------------------------------------------------------------------- /addons/ekco/template/base/namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: kurl 5 | -------------------------------------------------------------------------------- /addons/flannel/0.20.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/flannel/0.20.0/Manifest -------------------------------------------------------------------------------- /addons/flannel/0.20.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/flannel/0.20.1/Manifest -------------------------------------------------------------------------------- /addons/flannel/0.20.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/flannel/0.20.2/Manifest -------------------------------------------------------------------------------- /addons/flannel/0.21.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/flannel/0.21.0/Manifest -------------------------------------------------------------------------------- /addons/flannel/0.21.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/flannel/0.21.1/Manifest -------------------------------------------------------------------------------- /addons/flannel/0.21.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/flannel/0.21.2/Manifest -------------------------------------------------------------------------------- /addons/flannel/0.21.3/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/flannel/0.21.3/Manifest -------------------------------------------------------------------------------- /addons/flannel/0.21.4/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/flannel/0.21.4/Manifest -------------------------------------------------------------------------------- /addons/flannel/0.21.5/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/flannel/0.21.5/Manifest -------------------------------------------------------------------------------- /addons/flannel/0.22.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/flannel/0.22.0/Manifest -------------------------------------------------------------------------------- /addons/flannel/0.22.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/flannel/0.22.1/Manifest -------------------------------------------------------------------------------- /addons/flannel/0.22.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/flannel/0.22.2/Manifest -------------------------------------------------------------------------------- /addons/flannel/0.22.3/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/flannel/0.22.3/Manifest -------------------------------------------------------------------------------- /addons/flannel/0.23.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/flannel/0.23.0/Manifest -------------------------------------------------------------------------------- /addons/flannel/0.24.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/flannel/0.24.0/Manifest -------------------------------------------------------------------------------- /addons/flannel/0.24.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/flannel/0.24.1/Manifest -------------------------------------------------------------------------------- /addons/flannel/0.24.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/flannel/0.24.2/Manifest -------------------------------------------------------------------------------- /addons/flannel/0.24.4/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/flannel/0.24.4/Manifest -------------------------------------------------------------------------------- /addons/flannel/0.25.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/flannel/0.25.1/Manifest -------------------------------------------------------------------------------- /addons/flannel/0.25.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/flannel/0.25.2/Manifest -------------------------------------------------------------------------------- /addons/flannel/0.25.3/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/flannel/0.25.3/Manifest -------------------------------------------------------------------------------- /addons/flannel/0.25.4/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/flannel/0.25.4/Manifest -------------------------------------------------------------------------------- /addons/flannel/0.25.5/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/flannel/0.25.5/Manifest -------------------------------------------------------------------------------- /addons/flannel/0.25.6/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/flannel/0.25.6/Manifest -------------------------------------------------------------------------------- /addons/flannel/0.25.7/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/flannel/0.25.7/Manifest -------------------------------------------------------------------------------- /addons/flannel/0.26.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/flannel/0.26.0/Manifest -------------------------------------------------------------------------------- /addons/flannel/0.26.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/flannel/0.26.1/Manifest -------------------------------------------------------------------------------- /addons/flannel/0.26.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/flannel/0.26.2/Manifest -------------------------------------------------------------------------------- /addons/flannel/0.26.3/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/flannel/0.26.3/Manifest -------------------------------------------------------------------------------- /addons/flannel/0.26.4/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/flannel/0.26.4/Manifest -------------------------------------------------------------------------------- /addons/flannel/0.26.5/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/flannel/0.26.5/Manifest -------------------------------------------------------------------------------- /addons/flannel/0.27.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/flannel/0.27.1/Manifest -------------------------------------------------------------------------------- /addons/flannel/0.27.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/flannel/0.27.2/Manifest -------------------------------------------------------------------------------- /addons/flannel/0.27.3/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/flannel/0.27.3/Manifest -------------------------------------------------------------------------------- /addons/flannel/0.27.4/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/flannel/0.27.4/Manifest -------------------------------------------------------------------------------- /addons/flannel/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/flannel/categories.json -------------------------------------------------------------------------------- /addons/flannel/template/base/Manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addons/fluentd/1.7.4/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/fluentd/1.7.4/Manifest -------------------------------------------------------------------------------- /addons/fluentd/1.7.4/logging/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - create-logging-ns.yaml 3 | -------------------------------------------------------------------------------- /addons/fluentd/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/fluentd/categories.json -------------------------------------------------------------------------------- /addons/goldpinger/3.2.0-4.1.1/kustomization.yaml: -------------------------------------------------------------------------------- 1 | namespace: kurl 2 | 3 | resources: 4 | - goldpinger.yaml 5 | -------------------------------------------------------------------------------- /addons/goldpinger/3.2.0-4.2.1/kustomization.yaml: -------------------------------------------------------------------------------- 1 | namespace: kurl 2 | 3 | resources: 4 | - goldpinger.yaml 5 | -------------------------------------------------------------------------------- /addons/goldpinger/3.2.0-5.0.0/kustomization.yaml: -------------------------------------------------------------------------------- 1 | namespace: kurl 2 | 3 | resources: 4 | - goldpinger.yaml 5 | -------------------------------------------------------------------------------- /addons/goldpinger/3.3.0-5.1.0/kustomization.yaml: -------------------------------------------------------------------------------- 1 | namespace: kurl 2 | 3 | resources: 4 | - goldpinger.yaml 5 | -------------------------------------------------------------------------------- /addons/goldpinger/template/base/Manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addons/kotsadm/0.9.10/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/0.9.10/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/0.9.10/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/0.9.10/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/0.9.10/web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/0.9.10/web.yaml -------------------------------------------------------------------------------- /addons/kotsadm/0.9.11/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/0.9.11/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/0.9.11/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/0.9.11/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/0.9.11/web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/0.9.11/web.yaml -------------------------------------------------------------------------------- /addons/kotsadm/0.9.12/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/0.9.12/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/0.9.12/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/0.9.12/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/0.9.12/web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/0.9.12/web.yaml -------------------------------------------------------------------------------- /addons/kotsadm/0.9.13/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/0.9.13/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/0.9.13/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/0.9.13/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/0.9.13/web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/0.9.13/web.yaml -------------------------------------------------------------------------------- /addons/kotsadm/0.9.14/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/0.9.14/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/0.9.14/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/0.9.14/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/0.9.14/web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/0.9.14/web.yaml -------------------------------------------------------------------------------- /addons/kotsadm/0.9.15/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/0.9.15/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/0.9.15/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/0.9.15/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/0.9.15/web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/0.9.15/web.yaml -------------------------------------------------------------------------------- /addons/kotsadm/0.9.9/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/0.9.9/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/0.9.9/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/0.9.9/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/0.9.9/web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/0.9.9/web.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.0.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.0.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.0.0/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.0.0/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.0.0/web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.0.0/web.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.0.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.0.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.0.1/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.0.1/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.0.1/web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.0.1/web.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.1.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.1.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.1.0/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.1.0/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.1.0/web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.1.0/web.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.10.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.10.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.10.0/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.10.0/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.10.0/web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.10.0/web.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.10.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.10.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.10.1/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.10.1/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.10.1/web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.10.1/web.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.10.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.10.2/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.10.2/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.10.2/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.10.2/web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.10.2/web.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.10.3/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.10.3/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.10.3/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.10.3/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.10.3/web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.10.3/web.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.11.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.11.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.11.1/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.11.1/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.11.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.11.2/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.11.2/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.11.2/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.11.3/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.11.3/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.11.3/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.11.3/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.11.4/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.11.4/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.11.4/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.11.4/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.12.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.12.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.12.0/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.12.0/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.12.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.12.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.12.1/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.12.1/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.12.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.12.2/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.12.2/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.12.2/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.13.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.13.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.13.0/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.13.0/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.13.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.13.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.13.1/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.13.1/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.13.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.13.2/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.13.2/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.13.2/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.13.3/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.13.3/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.13.3/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.13.3/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.13.4/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.13.4/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.13.4/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.13.4/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.13.5/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.13.5/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.13.5/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.13.5/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.13.6/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.13.6/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.13.6/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.13.6/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.13.8/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.13.8/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.13.8/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.13.8/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.13.9/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.13.9/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.13.9/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.13.9/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.14.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.14.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.14.0/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.14.0/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.14.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.14.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.14.1/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.14.1/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.14.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.14.2/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.14.2/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.14.2/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.15.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.15.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.15.0/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.15.0/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.15.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.15.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.15.1/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.15.1/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.15.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.15.2/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.15.2/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.15.2/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.15.3/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.15.3/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.15.3/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.15.3/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.15.4/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.15.4/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.15.4/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.15.4/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.15.5/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.15.5/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.15.5/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.15.5/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.16.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.16.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.16.0/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.16.0/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.16.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.16.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.16.1/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.16.1/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.16.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.16.2/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.16.2/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.16.2/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.17.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.17.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.17.0/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.17.0/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.17.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.17.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.17.1/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.17.1/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.17.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.17.2/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.17.2/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.17.2/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.18.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.18.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.18.0/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.18.0/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.18.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.18.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.18.1/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.18.1/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.19.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.19.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.19.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.19.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.19.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.19.2/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.19.3/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.19.3/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.19.4/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.19.4/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.19.5/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.19.5/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.19.6/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.19.6/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.2.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.2.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.2.0/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.2.0/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.2.0/web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.2.0/web.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.20.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.20.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.20.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.20.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.20.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.20.2/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.20.3/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.20.3/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.21.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.21.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.21.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.21.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.21.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.21.2/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.21.3/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.21.3/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.22.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.22.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.22.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.22.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.22.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.22.2/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.22.3/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.22.3/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.22.4/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.22.4/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.23.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.23.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.23.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.23.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.24.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.24.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.24.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.24.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.24.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.24.2/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.25.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.25.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.25.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.25.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.25.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.25.2/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.26.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.26.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.27.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.27.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.27.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.27.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.28.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.28.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.29.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.29.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.29.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.29.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.29.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.29.2/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.29.3/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.29.3/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.3.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.3.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.3.0/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.3.0/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.3.0/web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.3.0/web.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.30.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.30.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.31.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.31.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.31.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.31.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.32.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.32.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.33.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.33.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.33.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.33.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.33.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.33.2/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.34.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.34.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.35.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.35.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.36.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.36.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.36.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.36.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.37.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.37.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.38.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.38.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.38.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.38.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.39.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.39.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.39.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.39.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.4.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.4.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.4.0/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.4.0/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.4.0/web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.4.0/web.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.4.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.4.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.4.1/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.4.1/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.4.1/web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.4.1/web.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.40.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.40.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.41.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.41.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.41.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.41.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.42.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.42.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.42.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.42.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.43.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.43.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.43.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.43.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.43.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.43.2/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.44.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.44.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.44.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.44.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.45.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.45.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.46.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.46.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.47.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.47.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.47.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.47.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.47.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.47.2/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.47.3/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.47.3/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.48.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.48.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.48.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.48.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.49.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.49.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.5.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.5.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.5.0/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.5.0/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.5.0/web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.5.0/web.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.50.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.50.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.50.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.50.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.50.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.50.2/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.51.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.51.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.52.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.52.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.52.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.52.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.53.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.53.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.54.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.54.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.55.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.55.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.56.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.56.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.57.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.57.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.58.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.58.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.58.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.58.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.58.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.58.2/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.59.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.59.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.59.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.59.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.59.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.59.2/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.59.3/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.59.3/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.6.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.6.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.6.0/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.6.0/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.6.0/web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.6.0/web.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.60.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.60.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.61.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.61.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.62.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.62.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.63.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.63.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.64.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.64.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.65.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.65.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.66.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.66.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.67.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.67.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.68.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.68.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.69.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.69.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.69.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.69.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.7.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.7.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.7.0/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.7.0/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.7.0/web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.7.0/web.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.70.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.70.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.70.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.70.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.71.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.71.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.72.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.72.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.72.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.72.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.72.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.72.2/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.73.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.73.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.74.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.74.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.75.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.75.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.76.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.76.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.76.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.76.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.77.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.77.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.78.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.78.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.79.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.79.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.8.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.8.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.8.0/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.8.0/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.8.0/web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.8.0/web.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.80.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.80.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.81.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.81.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.81.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.81.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.82.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.82.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.83.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.83.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.84.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.84.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.85.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.85.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.86.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.86.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.9.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.9.0/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.9.0/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.9.0/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.9.0/web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.9.0/web.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.9.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.9.1/Manifest -------------------------------------------------------------------------------- /addons/kotsadm/1.9.1/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.9.1/api.yaml -------------------------------------------------------------------------------- /addons/kotsadm/1.9.1/web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/1.9.1/web.yaml -------------------------------------------------------------------------------- /addons/kotsadm/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/kotsadm/categories.json -------------------------------------------------------------------------------- /addons/longhorn/1.1.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/longhorn/1.1.0/Manifest -------------------------------------------------------------------------------- /addons/longhorn/1.1.0/psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/longhorn/1.1.0/psp.yaml -------------------------------------------------------------------------------- /addons/longhorn/1.1.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/longhorn/1.1.1/Manifest -------------------------------------------------------------------------------- /addons/longhorn/1.1.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/longhorn/1.1.2/Manifest -------------------------------------------------------------------------------- /addons/longhorn/1.2.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/longhorn/1.2.2/Manifest -------------------------------------------------------------------------------- /addons/longhorn/1.2.4/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/longhorn/1.2.4/Manifest -------------------------------------------------------------------------------- /addons/longhorn/1.3.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/longhorn/1.3.1/Manifest -------------------------------------------------------------------------------- /addons/metrics-server/template/base/Manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addons/minio/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/minio/categories.json -------------------------------------------------------------------------------- /addons/nodeless/0.0.1/Manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addons/nodeless/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/nodeless/README.md -------------------------------------------------------------------------------- /addons/nodeless/categories.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /addons/openebs/3.10.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/openebs/3.10.0/Manifest -------------------------------------------------------------------------------- /addons/openebs/3.10.0/spec/crds/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - crds.yaml 3 | -------------------------------------------------------------------------------- /addons/openebs/3.10.0/spec/storage/kustomization.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addons/openebs/3.2.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/openebs/3.2.0/Manifest -------------------------------------------------------------------------------- /addons/openebs/3.2.0/spec/crds/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - crds.yaml 3 | -------------------------------------------------------------------------------- /addons/openebs/3.2.0/spec/storage/kustomization.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addons/openebs/3.3.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/openebs/3.3.0/Manifest -------------------------------------------------------------------------------- /addons/openebs/3.3.0/spec/crds/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - crds.yaml 3 | -------------------------------------------------------------------------------- /addons/openebs/3.3.0/spec/storage/kustomization.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addons/openebs/3.4.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/openebs/3.4.0/Manifest -------------------------------------------------------------------------------- /addons/openebs/3.4.0/spec/crds/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - crds.yaml 3 | -------------------------------------------------------------------------------- /addons/openebs/3.4.0/spec/storage/kustomization.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addons/openebs/3.5.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/openebs/3.5.0/Manifest -------------------------------------------------------------------------------- /addons/openebs/3.5.0/spec/crds/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - crds.yaml 3 | -------------------------------------------------------------------------------- /addons/openebs/3.5.0/spec/storage/kustomization.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addons/openebs/3.6.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/openebs/3.6.0/Manifest -------------------------------------------------------------------------------- /addons/openebs/3.6.0/spec/crds/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - crds.yaml 3 | -------------------------------------------------------------------------------- /addons/openebs/3.6.0/spec/storage/kustomization.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addons/openebs/3.7.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/openebs/3.7.0/Manifest -------------------------------------------------------------------------------- /addons/openebs/3.7.0/spec/crds/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - crds.yaml 3 | -------------------------------------------------------------------------------- /addons/openebs/3.7.0/spec/storage/kustomization.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addons/openebs/3.8.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/openebs/3.8.0/Manifest -------------------------------------------------------------------------------- /addons/openebs/3.8.0/spec/crds/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - crds.yaml 3 | -------------------------------------------------------------------------------- /addons/openebs/3.8.0/spec/storage/kustomization.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addons/openebs/3.9.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/openebs/3.9.0/Manifest -------------------------------------------------------------------------------- /addons/openebs/3.9.0/spec/crds/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - crds.yaml 3 | -------------------------------------------------------------------------------- /addons/openebs/3.9.0/spec/storage/kustomization.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addons/openebs/4.0.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/openebs/4.0.0/Manifest -------------------------------------------------------------------------------- /addons/openebs/4.0.0/spec/crds/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - crds.yaml 3 | -------------------------------------------------------------------------------- /addons/openebs/4.0.0/spec/storage/kustomization.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addons/openebs/4.1.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/openebs/4.1.0/Manifest -------------------------------------------------------------------------------- /addons/openebs/4.1.0/spec/storage/kustomization.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addons/openebs/4.1.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/openebs/4.1.2/Manifest -------------------------------------------------------------------------------- /addons/openebs/4.1.2/spec/storage/kustomization.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addons/openebs/4.2.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/openebs/4.2.0/Manifest -------------------------------------------------------------------------------- /addons/openebs/4.2.0/spec/storage/kustomization.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addons/openebs/4.3.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/openebs/4.3.0/Manifest -------------------------------------------------------------------------------- /addons/openebs/4.3.0/spec/storage/kustomization.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addons/openebs/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/openebs/categories.json -------------------------------------------------------------------------------- /addons/openebs/template/base/Manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addons/openebs/template/base/spec/storage/kustomization.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addons/prometheus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/prometheus/README.md -------------------------------------------------------------------------------- /addons/prometheus/template/base/Manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addons/registry/2.7.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/registry/2.7.1/Manifest -------------------------------------------------------------------------------- /addons/registry/2.7.1/kustomization.yaml: -------------------------------------------------------------------------------- 1 | namespace: kurl 2 | 3 | resources: 4 | -------------------------------------------------------------------------------- /addons/registry/2.8.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/registry/2.8.1/Manifest -------------------------------------------------------------------------------- /addons/registry/2.8.1/kustomization.yaml: -------------------------------------------------------------------------------- 1 | namespace: kurl 2 | 3 | resources: 4 | -------------------------------------------------------------------------------- /addons/registry/2.8.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/registry/2.8.2/Manifest -------------------------------------------------------------------------------- /addons/registry/2.8.2/kustomization.yaml: -------------------------------------------------------------------------------- 1 | namespace: kurl 2 | 3 | resources: 4 | -------------------------------------------------------------------------------- /addons/registry/2.8.3/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/registry/2.8.3/Manifest -------------------------------------------------------------------------------- /addons/registry/2.8.3/kustomization.yaml: -------------------------------------------------------------------------------- 1 | namespace: kurl 2 | 3 | resources: 4 | -------------------------------------------------------------------------------- /addons/registry/3.0.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/registry/3.0.0/Manifest -------------------------------------------------------------------------------- /addons/registry/3.0.0/kustomization.yaml: -------------------------------------------------------------------------------- 1 | namespace: kurl 2 | 3 | resources: 4 | -------------------------------------------------------------------------------- /addons/registry/template/base/kustomization.yaml: -------------------------------------------------------------------------------- 1 | namespace: kurl 2 | 3 | resources: 4 | -------------------------------------------------------------------------------- /addons/rook/1.0.4/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.0.4/Manifest -------------------------------------------------------------------------------- /addons/rook/1.0.4/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.0.4/install.sh -------------------------------------------------------------------------------- /addons/rook/1.10.11/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.10.11/Manifest -------------------------------------------------------------------------------- /addons/rook/1.10.11/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.10.11/crds.yaml -------------------------------------------------------------------------------- /addons/rook/1.10.11/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.10.11/install.sh -------------------------------------------------------------------------------- /addons/rook/1.10.6/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.10.6/Manifest -------------------------------------------------------------------------------- /addons/rook/1.10.6/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.10.6/crds.yaml -------------------------------------------------------------------------------- /addons/rook/1.10.6/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.10.6/install.sh -------------------------------------------------------------------------------- /addons/rook/1.10.8/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.10.8/Manifest -------------------------------------------------------------------------------- /addons/rook/1.10.8/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.10.8/crds.yaml -------------------------------------------------------------------------------- /addons/rook/1.10.8/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.10.8/install.sh -------------------------------------------------------------------------------- /addons/rook/1.11.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.11.2/Manifest -------------------------------------------------------------------------------- /addons/rook/1.11.2/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.11.2/crds.yaml -------------------------------------------------------------------------------- /addons/rook/1.11.2/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.11.2/install.sh -------------------------------------------------------------------------------- /addons/rook/1.11.3/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.11.3/Manifest -------------------------------------------------------------------------------- /addons/rook/1.11.3/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.11.3/crds.yaml -------------------------------------------------------------------------------- /addons/rook/1.11.3/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.11.3/install.sh -------------------------------------------------------------------------------- /addons/rook/1.11.4/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.11.4/Manifest -------------------------------------------------------------------------------- /addons/rook/1.11.4/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.11.4/crds.yaml -------------------------------------------------------------------------------- /addons/rook/1.11.4/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.11.4/install.sh -------------------------------------------------------------------------------- /addons/rook/1.11.5/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.11.5/Manifest -------------------------------------------------------------------------------- /addons/rook/1.11.5/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.11.5/crds.yaml -------------------------------------------------------------------------------- /addons/rook/1.11.5/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.11.5/install.sh -------------------------------------------------------------------------------- /addons/rook/1.11.6/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.11.6/Manifest -------------------------------------------------------------------------------- /addons/rook/1.11.6/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.11.6/crds.yaml -------------------------------------------------------------------------------- /addons/rook/1.11.6/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.11.6/install.sh -------------------------------------------------------------------------------- /addons/rook/1.11.7/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.11.7/Manifest -------------------------------------------------------------------------------- /addons/rook/1.11.7/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.11.7/crds.yaml -------------------------------------------------------------------------------- /addons/rook/1.11.7/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.11.7/install.sh -------------------------------------------------------------------------------- /addons/rook/1.11.8/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.11.8/Manifest -------------------------------------------------------------------------------- /addons/rook/1.11.8/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.11.8/crds.yaml -------------------------------------------------------------------------------- /addons/rook/1.11.8/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.11.8/install.sh -------------------------------------------------------------------------------- /addons/rook/1.12.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.12.0/Manifest -------------------------------------------------------------------------------- /addons/rook/1.12.0/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.12.0/crds.yaml -------------------------------------------------------------------------------- /addons/rook/1.12.0/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.12.0/install.sh -------------------------------------------------------------------------------- /addons/rook/1.12.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.12.1/Manifest -------------------------------------------------------------------------------- /addons/rook/1.12.1/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.12.1/crds.yaml -------------------------------------------------------------------------------- /addons/rook/1.12.1/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.12.1/install.sh -------------------------------------------------------------------------------- /addons/rook/1.12.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.12.2/Manifest -------------------------------------------------------------------------------- /addons/rook/1.12.2/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.12.2/crds.yaml -------------------------------------------------------------------------------- /addons/rook/1.12.2/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.12.2/install.sh -------------------------------------------------------------------------------- /addons/rook/1.12.3/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.12.3/Manifest -------------------------------------------------------------------------------- /addons/rook/1.12.3/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.12.3/crds.yaml -------------------------------------------------------------------------------- /addons/rook/1.12.3/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.12.3/install.sh -------------------------------------------------------------------------------- /addons/rook/1.12.4/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.12.4/Manifest -------------------------------------------------------------------------------- /addons/rook/1.12.4/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.12.4/crds.yaml -------------------------------------------------------------------------------- /addons/rook/1.12.4/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.12.4/install.sh -------------------------------------------------------------------------------- /addons/rook/1.12.5/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.12.5/Manifest -------------------------------------------------------------------------------- /addons/rook/1.12.5/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.12.5/crds.yaml -------------------------------------------------------------------------------- /addons/rook/1.12.5/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.12.5/install.sh -------------------------------------------------------------------------------- /addons/rook/1.12.6/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.12.6/Manifest -------------------------------------------------------------------------------- /addons/rook/1.12.6/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.12.6/crds.yaml -------------------------------------------------------------------------------- /addons/rook/1.12.6/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.12.6/install.sh -------------------------------------------------------------------------------- /addons/rook/1.12.7/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.12.7/Manifest -------------------------------------------------------------------------------- /addons/rook/1.12.7/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.12.7/crds.yaml -------------------------------------------------------------------------------- /addons/rook/1.12.7/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.12.7/install.sh -------------------------------------------------------------------------------- /addons/rook/1.12.8/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.12.8/Manifest -------------------------------------------------------------------------------- /addons/rook/1.12.8/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.12.8/crds.yaml -------------------------------------------------------------------------------- /addons/rook/1.12.8/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.12.8/install.sh -------------------------------------------------------------------------------- /addons/rook/1.13.10/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.13.10/Manifest -------------------------------------------------------------------------------- /addons/rook/1.13.10/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.13.10/crds.yaml -------------------------------------------------------------------------------- /addons/rook/1.13.10/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.13.10/install.sh -------------------------------------------------------------------------------- /addons/rook/1.14.12/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.14.12/Manifest -------------------------------------------------------------------------------- /addons/rook/1.14.12/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.14.12/crds.yaml -------------------------------------------------------------------------------- /addons/rook/1.14.12/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.14.12/install.sh -------------------------------------------------------------------------------- /addons/rook/1.15.8/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.15.8/Manifest -------------------------------------------------------------------------------- /addons/rook/1.15.8/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.15.8/crds.yaml -------------------------------------------------------------------------------- /addons/rook/1.15.8/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.15.8/install.sh -------------------------------------------------------------------------------- /addons/rook/1.16.3/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.16.3/Manifest -------------------------------------------------------------------------------- /addons/rook/1.16.3/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.16.3/crds.yaml -------------------------------------------------------------------------------- /addons/rook/1.16.3/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.16.3/install.sh -------------------------------------------------------------------------------- /addons/rook/1.16.4/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.16.4/Manifest -------------------------------------------------------------------------------- /addons/rook/1.16.4/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.16.4/crds.yaml -------------------------------------------------------------------------------- /addons/rook/1.16.4/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.16.4/install.sh -------------------------------------------------------------------------------- /addons/rook/1.16.5/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.16.5/Manifest -------------------------------------------------------------------------------- /addons/rook/1.16.5/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.16.5/crds.yaml -------------------------------------------------------------------------------- /addons/rook/1.16.5/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.16.5/install.sh -------------------------------------------------------------------------------- /addons/rook/1.16.6/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.16.6/Manifest -------------------------------------------------------------------------------- /addons/rook/1.16.6/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.16.6/crds.yaml -------------------------------------------------------------------------------- /addons/rook/1.16.6/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.16.6/install.sh -------------------------------------------------------------------------------- /addons/rook/1.17.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.17.1/Manifest -------------------------------------------------------------------------------- /addons/rook/1.17.1/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.17.1/crds.yaml -------------------------------------------------------------------------------- /addons/rook/1.17.1/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.17.1/install.sh -------------------------------------------------------------------------------- /addons/rook/1.17.6/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.17.6/Manifest -------------------------------------------------------------------------------- /addons/rook/1.17.6/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.17.6/crds.yaml -------------------------------------------------------------------------------- /addons/rook/1.17.6/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.17.6/install.sh -------------------------------------------------------------------------------- /addons/rook/1.17.7/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.17.7/Manifest -------------------------------------------------------------------------------- /addons/rook/1.17.7/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.17.7/crds.yaml -------------------------------------------------------------------------------- /addons/rook/1.17.7/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.17.7/install.sh -------------------------------------------------------------------------------- /addons/rook/1.4.3/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.4.3/Manifest -------------------------------------------------------------------------------- /addons/rook/1.4.3/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.4.3/install.sh -------------------------------------------------------------------------------- /addons/rook/1.4.9/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.4.9/Manifest -------------------------------------------------------------------------------- /addons/rook/1.4.9/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.4.9/install.sh -------------------------------------------------------------------------------- /addons/rook/1.5.10/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.5.10/Manifest -------------------------------------------------------------------------------- /addons/rook/1.5.10/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.5.10/install.sh -------------------------------------------------------------------------------- /addons/rook/1.5.11/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.5.11/Manifest -------------------------------------------------------------------------------- /addons/rook/1.5.11/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.5.11/install.sh -------------------------------------------------------------------------------- /addons/rook/1.5.12/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.5.12/Manifest -------------------------------------------------------------------------------- /addons/rook/1.5.12/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.5.12/install.sh -------------------------------------------------------------------------------- /addons/rook/1.5.9/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.5.9/Manifest -------------------------------------------------------------------------------- /addons/rook/1.5.9/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.5.9/install.sh -------------------------------------------------------------------------------- /addons/rook/1.6.11/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.6.11/Manifest -------------------------------------------------------------------------------- /addons/rook/1.6.11/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.6.11/crds.yaml -------------------------------------------------------------------------------- /addons/rook/1.6.11/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.6.11/install.sh -------------------------------------------------------------------------------- /addons/rook/1.7.11/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.7.11/Manifest -------------------------------------------------------------------------------- /addons/rook/1.7.11/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.7.11/crds.yaml -------------------------------------------------------------------------------- /addons/rook/1.7.11/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.7.11/install.sh -------------------------------------------------------------------------------- /addons/rook/1.8.10/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.8.10/Manifest -------------------------------------------------------------------------------- /addons/rook/1.8.10/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.8.10/crds.yaml -------------------------------------------------------------------------------- /addons/rook/1.8.10/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.8.10/install.sh -------------------------------------------------------------------------------- /addons/rook/1.9.12/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.9.12/Manifest -------------------------------------------------------------------------------- /addons/rook/1.9.12/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.9.12/crds.yaml -------------------------------------------------------------------------------- /addons/rook/1.9.12/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/1.9.12/install.sh -------------------------------------------------------------------------------- /addons/rook/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/categories.json -------------------------------------------------------------------------------- /addons/rook/template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rook/template/README.md -------------------------------------------------------------------------------- /addons/rookupgrade/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/rookupgrade/README.md -------------------------------------------------------------------------------- /addons/velero/1.10.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.10.1/Manifest -------------------------------------------------------------------------------- /addons/velero/1.10.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.10.2/Manifest -------------------------------------------------------------------------------- /addons/velero/1.11.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.11.0/Manifest -------------------------------------------------------------------------------- /addons/velero/1.11.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.11.1/Manifest -------------------------------------------------------------------------------- /addons/velero/1.12.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.12.0/Manifest -------------------------------------------------------------------------------- /addons/velero/1.12.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.12.1/Manifest -------------------------------------------------------------------------------- /addons/velero/1.12.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.12.2/Manifest -------------------------------------------------------------------------------- /addons/velero/1.12.3/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.12.3/Manifest -------------------------------------------------------------------------------- /addons/velero/1.13.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.13.1/Manifest -------------------------------------------------------------------------------- /addons/velero/1.13.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.13.2/Manifest -------------------------------------------------------------------------------- /addons/velero/1.14.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.14.0/Manifest -------------------------------------------------------------------------------- /addons/velero/1.15.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.15.2/Manifest -------------------------------------------------------------------------------- /addons/velero/1.16.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.16.2/Manifest -------------------------------------------------------------------------------- /addons/velero/1.2.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.2.0/Manifest -------------------------------------------------------------------------------- /addons/velero/1.2.0/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.2.0/install.sh -------------------------------------------------------------------------------- /addons/velero/1.2.0/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.2.0/rbac.yaml -------------------------------------------------------------------------------- /addons/velero/1.5.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.5.1/Manifest -------------------------------------------------------------------------------- /addons/velero/1.5.1/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.5.1/install.sh -------------------------------------------------------------------------------- /addons/velero/1.5.1/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.5.1/rbac.yaml -------------------------------------------------------------------------------- /addons/velero/1.5.3/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.5.3/Manifest -------------------------------------------------------------------------------- /addons/velero/1.5.3/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.5.3/install.sh -------------------------------------------------------------------------------- /addons/velero/1.5.3/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - velero.yaml 3 | -------------------------------------------------------------------------------- /addons/velero/1.5.4/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.5.4/Manifest -------------------------------------------------------------------------------- /addons/velero/1.5.4/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.5.4/install.sh -------------------------------------------------------------------------------- /addons/velero/1.5.4/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - velero.yaml 3 | -------------------------------------------------------------------------------- /addons/velero/1.6.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.6.0/Manifest -------------------------------------------------------------------------------- /addons/velero/1.6.0/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.6.0/install.sh -------------------------------------------------------------------------------- /addons/velero/1.6.0/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - velero.yaml 3 | -------------------------------------------------------------------------------- /addons/velero/1.6.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.6.1/Manifest -------------------------------------------------------------------------------- /addons/velero/1.6.1/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.6.1/install.sh -------------------------------------------------------------------------------- /addons/velero/1.6.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.6.2/Manifest -------------------------------------------------------------------------------- /addons/velero/1.6.2/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.6.2/install.sh -------------------------------------------------------------------------------- /addons/velero/1.7.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.7.1/Manifest -------------------------------------------------------------------------------- /addons/velero/1.7.1/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.7.1/install.sh -------------------------------------------------------------------------------- /addons/velero/1.8.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.8.1/Manifest -------------------------------------------------------------------------------- /addons/velero/1.8.1/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.8.1/install.sh -------------------------------------------------------------------------------- /addons/velero/1.9.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.9.0/Manifest -------------------------------------------------------------------------------- /addons/velero/1.9.0/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.9.0/install.sh -------------------------------------------------------------------------------- /addons/velero/1.9.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.9.1/Manifest -------------------------------------------------------------------------------- /addons/velero/1.9.1/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.9.1/install.sh -------------------------------------------------------------------------------- /addons/velero/1.9.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.9.2/Manifest -------------------------------------------------------------------------------- /addons/velero/1.9.2/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.9.2/install.sh -------------------------------------------------------------------------------- /addons/velero/1.9.3/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.9.3/Manifest -------------------------------------------------------------------------------- /addons/velero/1.9.3/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.9.3/install.sh -------------------------------------------------------------------------------- /addons/velero/1.9.4/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.9.4/Manifest -------------------------------------------------------------------------------- /addons/velero/1.9.4/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.9.4/install.sh -------------------------------------------------------------------------------- /addons/velero/1.9.5/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.9.5/Manifest -------------------------------------------------------------------------------- /addons/velero/1.9.5/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/1.9.5/install.sh -------------------------------------------------------------------------------- /addons/velero/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/velero/categories.json -------------------------------------------------------------------------------- /addons/weave/2.5.2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/weave/2.5.2/Manifest -------------------------------------------------------------------------------- /addons/weave/2.5.2/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/weave/2.5.2/install.sh -------------------------------------------------------------------------------- /addons/weave/2.5.2/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/weave/2.5.2/rbac.yaml -------------------------------------------------------------------------------- /addons/weave/2.6.4/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/weave/2.6.4/Manifest -------------------------------------------------------------------------------- /addons/weave/2.6.4/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/weave/2.6.4/install.sh -------------------------------------------------------------------------------- /addons/weave/2.6.4/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/weave/2.6.4/rbac.yaml -------------------------------------------------------------------------------- /addons/weave/2.6.5/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/weave/2.6.5/Manifest -------------------------------------------------------------------------------- /addons/weave/2.6.5/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/weave/2.6.5/install.sh -------------------------------------------------------------------------------- /addons/weave/2.6.5/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/weave/2.6.5/rbac.yaml -------------------------------------------------------------------------------- /addons/weave/2.7.0/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/weave/2.7.0/Manifest -------------------------------------------------------------------------------- /addons/weave/2.7.0/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/weave/2.7.0/install.sh -------------------------------------------------------------------------------- /addons/weave/2.8.1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/weave/2.8.1/Manifest -------------------------------------------------------------------------------- /addons/weave/2.8.1/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/weave/2.8.1/install.sh -------------------------------------------------------------------------------- /addons/weave/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/addons/weave/categories.json -------------------------------------------------------------------------------- /bin/build-addon-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/bin/build-addon-package.sh -------------------------------------------------------------------------------- /bin/cleanup-staging-s3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/bin/cleanup-staging-s3.sh -------------------------------------------------------------------------------- /bin/generate-addons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/bin/generate-addons.js -------------------------------------------------------------------------------- /bin/list-all-packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/bin/list-all-packages.sh -------------------------------------------------------------------------------- /bin/list-packages-s3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/bin/list-packages-s3.sh -------------------------------------------------------------------------------- /bin/run-kube-bench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/bin/run-kube-bench.sh -------------------------------------------------------------------------------- /bin/s3cmd-get-latest-tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/bin/s3cmd-get-latest-tag.sh -------------------------------------------------------------------------------- /bin/save-manifest-assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/bin/save-manifest-assets.sh -------------------------------------------------------------------------------- /bin/scan-images/addons-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/bin/scan-images/addons-test.js -------------------------------------------------------------------------------- /bin/scan-images/addons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/bin/scan-images/addons.js -------------------------------------------------------------------------------- /bin/scan-images/matrix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/bin/scan-images/matrix.js -------------------------------------------------------------------------------- /bin/scan-images/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/bin/scan-images/package.json -------------------------------------------------------------------------------- /bin/tag-and-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/bin/tag-and-release.sh -------------------------------------------------------------------------------- /bin/test-addon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/bin/test-addon.sh -------------------------------------------------------------------------------- /bin/upload-dist-staging.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/bin/upload-dist-staging.sh -------------------------------------------------------------------------------- /bin/upload-dist-versioned.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/bin/upload-dist-versioned.sh -------------------------------------------------------------------------------- /bin/verify-tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/bin/verify-tag.sh -------------------------------------------------------------------------------- /bin/verify-testgrid-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/bin/verify-testgrid-run.sh -------------------------------------------------------------------------------- /bin/watchrsync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/bin/watchrsync.js -------------------------------------------------------------------------------- /bundles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/bundles/README.md -------------------------------------------------------------------------------- /bundles/helm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/bundles/helm/Dockerfile -------------------------------------------------------------------------------- /bundles/k8s-rhel7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/bundles/k8s-rhel7/Dockerfile -------------------------------------------------------------------------------- /bundles/k8s-rhel8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/bundles/k8s-rhel8/Dockerfile -------------------------------------------------------------------------------- /bundles/k8s-rhel9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/bundles/k8s-rhel9/Dockerfile -------------------------------------------------------------------------------- /bundles/k8s-ubuntu2404/kubernetes.list: -------------------------------------------------------------------------------- 1 | deb http://pkgs.k8s.io/ kubernetes-noble main 2 | -------------------------------------------------------------------------------- /bundles/krew/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/bundles/krew/Dockerfile -------------------------------------------------------------------------------- /cmd/kurl/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/cmd/kurl/main.go -------------------------------------------------------------------------------- /design/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/design/proxy.md -------------------------------------------------------------------------------- /design/tg-branches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/design/tg-branches.md -------------------------------------------------------------------------------- /docs/arch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/docs/arch/README.md -------------------------------------------------------------------------------- /docs/ipv6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/docs/ipv6.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/go.sum -------------------------------------------------------------------------------- /hack/testdata/manifest/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/hack/testdata/manifest/clean -------------------------------------------------------------------------------- /kurl_util/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | *DS_Store 3 | /vendor/ 4 | /.tmp/ 5 | -------------------------------------------------------------------------------- /kurl_util/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/kurl_util/Makefile -------------------------------------------------------------------------------- /kurl_util/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/kurl_util/README.md -------------------------------------------------------------------------------- /kurl_util/cmd/bcrypt/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/kurl_util/cmd/bcrypt/main.go -------------------------------------------------------------------------------- /kurl_util/cmd/config/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/kurl_util/cmd/config/main.go -------------------------------------------------------------------------------- /kurl_util/cmd/docker/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/kurl_util/cmd/docker/main.go -------------------------------------------------------------------------------- /kurl_util/cmd/htpasswd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/kurl_util/cmd/htpasswd/main.go -------------------------------------------------------------------------------- /kurl_util/cmd/network/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/kurl_util/cmd/network/main.go -------------------------------------------------------------------------------- /kurl_util/cmd/subnet/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/kurl_util/cmd/subnet/main.go -------------------------------------------------------------------------------- /kurl_util/cmd/toml/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/kurl_util/cmd/toml/main.go -------------------------------------------------------------------------------- /kurl_util/cmd/yamlutil/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/kurl_util/cmd/yamlutil/main.go -------------------------------------------------------------------------------- /kurl_util/deploy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/kurl_util/deploy/Dockerfile -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/package.json -------------------------------------------------------------------------------- /packages/host/fio/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/packages/host/fio/Manifest -------------------------------------------------------------------------------- /packages/host/openssl/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/packages/host/openssl/Manifest -------------------------------------------------------------------------------- /packages/kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/packages/kubernetes/README.md -------------------------------------------------------------------------------- /pkg/cli/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/cli/cli.go -------------------------------------------------------------------------------- /pkg/cli/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/cli/cluster.go -------------------------------------------------------------------------------- /pkg/cli/cluster_images.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/cli/cluster_images.go -------------------------------------------------------------------------------- /pkg/cli/colors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/cli/colors.go -------------------------------------------------------------------------------- /pkg/cli/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/cli/commands.go -------------------------------------------------------------------------------- /pkg/cli/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/cli/errors.go -------------------------------------------------------------------------------- /pkg/cli/format_address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/cli/format_address.go -------------------------------------------------------------------------------- /pkg/cli/host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/cli/host.go -------------------------------------------------------------------------------- /pkg/cli/host_preflight.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/cli/host_preflight.go -------------------------------------------------------------------------------- /pkg/cli/host_preflight_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/cli/host_preflight_test.go -------------------------------------------------------------------------------- /pkg/cli/host_protectedid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/cli/host_protectedid.go -------------------------------------------------------------------------------- /pkg/cli/hostname.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/cli/hostname.go -------------------------------------------------------------------------------- /pkg/cli/longhorn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/cli/longhorn.go -------------------------------------------------------------------------------- /pkg/cli/longhorn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/cli/longhorn_test.go -------------------------------------------------------------------------------- /pkg/cli/mock/mock_cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/cli/mock/mock_cli.go -------------------------------------------------------------------------------- /pkg/cli/netutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/cli/netutil.go -------------------------------------------------------------------------------- /pkg/cli/nodes_connectivity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/cli/nodes_connectivity.go -------------------------------------------------------------------------------- /pkg/cli/object_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/cli/object_store.go -------------------------------------------------------------------------------- /pkg/cli/rook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/cli/rook.go -------------------------------------------------------------------------------- /pkg/cli/rook_health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/cli/rook_health.go -------------------------------------------------------------------------------- /pkg/cli/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/cli/root.go -------------------------------------------------------------------------------- /pkg/cli/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/cli/version.go -------------------------------------------------------------------------------- /pkg/cluster/nodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/cluster/nodes.go -------------------------------------------------------------------------------- /pkg/cluster/nodes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/cluster/nodes_test.go -------------------------------------------------------------------------------- /pkg/host/hostname.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/host/hostname.go -------------------------------------------------------------------------------- /pkg/host/protectedid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/host/protectedid.go -------------------------------------------------------------------------------- /pkg/installer/installer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/installer/installer.go -------------------------------------------------------------------------------- /pkg/installer/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/installer/template.go -------------------------------------------------------------------------------- /pkg/installer/template_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/installer/template_test.go -------------------------------------------------------------------------------- /pkg/k8sutil/apply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/k8sutil/apply.go -------------------------------------------------------------------------------- /pkg/k8sutil/daemonset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/k8sutil/daemonset.go -------------------------------------------------------------------------------- /pkg/k8sutil/deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/k8sutil/deployment.go -------------------------------------------------------------------------------- /pkg/k8sutil/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/k8sutil/exec.go -------------------------------------------------------------------------------- /pkg/k8sutil/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/k8sutil/job.go -------------------------------------------------------------------------------- /pkg/k8sutil/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/k8sutil/labels.go -------------------------------------------------------------------------------- /pkg/k8sutil/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/k8sutil/node.go -------------------------------------------------------------------------------- /pkg/k8sutil/pod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/k8sutil/pod.go -------------------------------------------------------------------------------- /pkg/k8sutil/pod_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/k8sutil/pod_test.go -------------------------------------------------------------------------------- /pkg/k8sutil/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/k8sutil/storage.go -------------------------------------------------------------------------------- /pkg/k8sutil/storage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/k8sutil/storage_test.go -------------------------------------------------------------------------------- /pkg/netutils/iface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/netutils/iface.go -------------------------------------------------------------------------------- /pkg/preflight/builtin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/preflight/builtin.go -------------------------------------------------------------------------------- /pkg/preflight/builtin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/preflight/builtin_test.go -------------------------------------------------------------------------------- /pkg/preflight/preflight.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/preflight/preflight.go -------------------------------------------------------------------------------- /pkg/preflight/runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/preflight/runner.go -------------------------------------------------------------------------------- /pkg/rook/cephtypes/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/rook/cephtypes/status.go -------------------------------------------------------------------------------- /pkg/rook/flexvolume.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/rook/flexvolume.go -------------------------------------------------------------------------------- /pkg/rook/flexvolume_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/rook/flexvolume_test.go -------------------------------------------------------------------------------- /pkg/rook/health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/rook/health.go -------------------------------------------------------------------------------- /pkg/rook/health_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/rook/health_test.go -------------------------------------------------------------------------------- /pkg/rook/migrate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/rook/migrate.go -------------------------------------------------------------------------------- /pkg/rook/migrate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/rook/migrate_test.go -------------------------------------------------------------------------------- /pkg/rook/output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/rook/output.go -------------------------------------------------------------------------------- /pkg/rook/static/flexmigrator/kustomize/base/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - flex-migrator.yaml 3 | -------------------------------------------------------------------------------- /pkg/rook/static/static.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/rook/static/static.go -------------------------------------------------------------------------------- /pkg/rook/static/toolbox.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/rook/static/toolbox.yaml -------------------------------------------------------------------------------- /pkg/rook/testfiles/static.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/rook/testfiles/static.go -------------------------------------------------------------------------------- /pkg/rook/toolbox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/rook/toolbox.go -------------------------------------------------------------------------------- /pkg/rook/toolbox_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/rook/toolbox_test.go -------------------------------------------------------------------------------- /pkg/rook/upgrade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/rook/upgrade.go -------------------------------------------------------------------------------- /pkg/rook/upgrade_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/rook/upgrade_test.go -------------------------------------------------------------------------------- /pkg/static/nodes_connectivity/kustomize/base-listeners/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - daemonset.yaml 3 | -------------------------------------------------------------------------------- /pkg/static/nodes_connectivity/kustomize/pinger/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - job.yaml 3 | -------------------------------------------------------------------------------- /pkg/version/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/pkg/version/build.go -------------------------------------------------------------------------------- /scripts/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/scripts/Manifest -------------------------------------------------------------------------------- /scripts/common/addon-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/scripts/common/addon-test.sh -------------------------------------------------------------------------------- /scripts/common/addon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/scripts/common/addon.sh -------------------------------------------------------------------------------- /scripts/common/common-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/scripts/common/common-test.sh -------------------------------------------------------------------------------- /scripts/common/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/scripts/common/common.sh -------------------------------------------------------------------------------- /scripts/common/containerd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/scripts/common/containerd.sh -------------------------------------------------------------------------------- /scripts/common/discover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/scripts/common/discover.sh -------------------------------------------------------------------------------- /scripts/common/docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/scripts/common/docker.sh -------------------------------------------------------------------------------- /scripts/common/helm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/scripts/common/helm.sh -------------------------------------------------------------------------------- /scripts/common/kubernetes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/scripts/common/kubernetes.sh -------------------------------------------------------------------------------- /scripts/common/kurl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/scripts/common/kurl.sh -------------------------------------------------------------------------------- /scripts/common/longhorn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/scripts/common/longhorn.sh -------------------------------------------------------------------------------- /scripts/common/object_store.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/scripts/common/object_store.sh -------------------------------------------------------------------------------- /scripts/common/plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/scripts/common/plugins.sh -------------------------------------------------------------------------------- /scripts/common/preflights.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/scripts/common/preflights.sh -------------------------------------------------------------------------------- /scripts/common/prompts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/scripts/common/prompts.sh -------------------------------------------------------------------------------- /scripts/common/proxy-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/scripts/common/proxy-test.sh -------------------------------------------------------------------------------- /scripts/common/proxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/scripts/common/proxy.sh -------------------------------------------------------------------------------- /scripts/common/reporting.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/scripts/common/reporting.sh -------------------------------------------------------------------------------- /scripts/common/rook-upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/scripts/common/rook-upgrade.sh -------------------------------------------------------------------------------- /scripts/common/rook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/scripts/common/rook.sh -------------------------------------------------------------------------------- /scripts/common/upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/scripts/common/upgrade.sh -------------------------------------------------------------------------------- /scripts/common/utilbinaries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/scripts/common/utilbinaries.sh -------------------------------------------------------------------------------- /scripts/common/yaml-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/scripts/common/yaml-test.sh -------------------------------------------------------------------------------- /scripts/common/yaml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/scripts/common/yaml.sh -------------------------------------------------------------------------------- /scripts/distro/interface.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/scripts/distro/interface.sh -------------------------------------------------------------------------------- /scripts/initialize-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/scripts/initialize-build.sh -------------------------------------------------------------------------------- /scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/scripts/install.sh -------------------------------------------------------------------------------- /scripts/join.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/scripts/join.sh -------------------------------------------------------------------------------- /scripts/tasks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/scripts/tasks.sh -------------------------------------------------------------------------------- /scripts/upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/scripts/upgrade.sh -------------------------------------------------------------------------------- /testgrid/specs/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/testgrid/specs/deploy.yaml -------------------------------------------------------------------------------- /testgrid/specs/full.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/testgrid/specs/full.yaml -------------------------------------------------------------------------------- /testgrid/specs/latest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/testgrid/specs/latest.yaml -------------------------------------------------------------------------------- /testgrid/specs/os-full.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/testgrid/specs/os-full.yaml -------------------------------------------------------------------------------- /testgrid/specs/os-latest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/testgrid/specs/os-latest.yaml -------------------------------------------------------------------------------- /testgrid/specs/os-removed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/testgrid/specs/os-removed.yaml -------------------------------------------------------------------------------- /tools/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/tools/tools.go -------------------------------------------------------------------------------- /web/src/installers/versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicatedhq/kURL/HEAD/web/src/installers/versions.js --------------------------------------------------------------------------------