├── .github ├── ISSUE_TEMPLATE │ ├── autobuild-apps.md │ └── autobuild-docker-apps.md ├── actions │ └── parse-title-body │ │ ├── Dockerfile │ │ ├── action.yml │ │ ├── index.js │ │ ├── package-lock.json │ │ └── package.json ├── scripts │ ├── apps.sh │ ├── apps │ │ ├── common │ │ └── common.sh │ ├── configs.sh │ ├── dockers.sh │ ├── download.sh │ ├── manifest-docker.sh │ └── manifest-other.sh └── workflows │ ├── add-tips-c.yml │ ├── add-tips.yml │ ├── autobuild-apps-entry.yml │ ├── autobuild-apps-on-issue-comment.yml │ ├── autobuild-apps-tag.yml │ ├── autobuild-apps.yml │ ├── autobuild-dockerfiles-entry.yml │ ├── autobuild-dockerfiles-on-issue-comment.yml │ ├── autobuild-dockerfiles.yml │ ├── resolve-image-info.yml │ └── sync-sealos-cron.yml ├── .gitignore ├── LICENSE ├── README.md ├── applications ├── README.md ├── affine │ ├── README.md │ └── latest │ │ ├── Dockerfile │ │ └── manifests │ │ └── affine.yaml ├── apisix │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── argo-events │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── argo-rollouts │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── argo-workflows │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── argocd │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── athenaserving │ └── v2.0.0rc1 │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── Kubefile │ │ ├── charts │ │ ├── atoms │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── hpa.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── tests │ │ │ │ │ └── test-connection.yaml │ │ │ └── values.yaml │ │ ├── loadbalance │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── hpa.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── tests │ │ │ │ │ └── test-connection.yaml │ │ │ └── values.yaml │ │ ├── mmocr_ase │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── demo.py │ │ │ ├── demo_text_det.jpg │ │ │ ├── demo_text_ocr.jpg │ │ │ ├── demo_text_recog.jpg │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── hpa.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── tests │ │ │ │ │ └── test-connection.yaml │ │ │ └── values.yaml │ │ ├── mysql │ │ │ ├── .helmignore │ │ │ ├── Chart.lock │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── bak │ │ │ ├── charts │ │ │ │ └── common │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── README.md │ │ │ │ │ ├── templates │ │ │ │ │ ├── _affinities.tpl │ │ │ │ │ ├── _capabilities.tpl │ │ │ │ │ ├── _errors.tpl │ │ │ │ │ ├── _images.tpl │ │ │ │ │ ├── _ingress.tpl │ │ │ │ │ ├── _labels.tpl │ │ │ │ │ ├── _names.tpl │ │ │ │ │ ├── _secrets.tpl │ │ │ │ │ ├── _storage.tpl │ │ │ │ │ ├── _tplvalues.tpl │ │ │ │ │ ├── _utils.tpl │ │ │ │ │ ├── _warnings.tpl │ │ │ │ │ └── validations │ │ │ │ │ │ ├── _cassandra.tpl │ │ │ │ │ │ ├── _mariadb.tpl │ │ │ │ │ │ ├── _mongodb.tpl │ │ │ │ │ │ ├── _postgresql.tpl │ │ │ │ │ │ ├── _redis.tpl │ │ │ │ │ │ └── _validations.tpl │ │ │ │ │ └── values.yaml │ │ │ ├── ci │ │ │ │ └── values-production-with-rbac.yaml │ │ │ ├── init_polaris.sql │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── extra-list.yaml │ │ │ │ ├── init_polaris.yaml │ │ │ │ ├── metrics-svc.yaml │ │ │ │ ├── networkpolicy.yaml │ │ │ │ ├── primary │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── initialization-configmap.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── statefulset.yaml │ │ │ │ │ ├── svc-headless.yaml │ │ │ │ │ └── svc.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── secondary │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── statefulset.yaml │ │ │ │ │ ├── svc-headless.yaml │ │ │ │ │ └── svc.yaml │ │ │ │ ├── secrets.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ ├── values.schema.json │ │ │ └── values.yaml │ │ ├── polaris │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── application.yml │ │ │ ├── start_companion.sh │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── cm.yaml │ │ │ │ ├── companion.yaml │ │ │ │ ├── cynosure.yaml │ │ │ │ ├── hpa.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── initjob.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── tests │ │ │ │ │ └── test-connection.yaml │ │ │ └── values.yaml │ │ ├── webgate │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── hpa.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── tests │ │ │ │ │ └── test-connection.yaml │ │ │ └── values.yaml │ │ └── zookeeper │ │ │ ├── .helmignore │ │ │ ├── Chart.lock │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── charts │ │ │ └── common │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── templates │ │ │ │ ├── _affinities.tpl │ │ │ │ ├── _capabilities.tpl │ │ │ │ ├── _errors.tpl │ │ │ │ ├── _images.tpl │ │ │ │ ├── _ingress.tpl │ │ │ │ ├── _labels.tpl │ │ │ │ ├── _names.tpl │ │ │ │ ├── _secrets.tpl │ │ │ │ ├── _storage.tpl │ │ │ │ ├── _tplvalues.tpl │ │ │ │ ├── _utils.tpl │ │ │ │ ├── _warnings.tpl │ │ │ │ └── validations │ │ │ │ │ ├── _cassandra.tpl │ │ │ │ │ ├── _mariadb.tpl │ │ │ │ │ ├── _mongodb.tpl │ │ │ │ │ ├── _postgresql.tpl │ │ │ │ │ ├── _redis.tpl │ │ │ │ │ └── _validations.tpl │ │ │ │ └── values.yaml │ │ │ ├── ci │ │ │ └── values-with-auth-tls-and-metrics.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── extra-list.yaml │ │ │ ├── metrics-svc.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── prometheusrule.yaml │ │ │ ├── scripts-configmap.yaml │ │ │ ├── secrets.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ ├── statefulset.yaml │ │ │ ├── svc-headless.yaml │ │ │ ├── svc.yaml │ │ │ └── tls-secrets.yaml │ │ │ └── values.yaml │ │ └── values.yaml ├── automq-operator │ └── latest │ │ └── init.sh ├── awx-operator │ ├── README.md │ ├── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh │ └── v1.1.0 │ │ ├── Kubefile │ │ ├── charts │ │ └── awx-operator │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── crds │ │ │ ├── customresourcedefinition-awxbackups.awx.ansible.com.yaml │ │ │ ├── customresourcedefinition-awxrestores.awx.ansible.com.yaml │ │ │ └── customresourcedefinition-awxs.awx.ansible.com.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── awx-deploy.yaml │ │ │ ├── clusterrole-awx-operator-metrics-reader.yaml │ │ │ ├── clusterrole-awx-operator-proxy-role.yaml │ │ │ ├── clusterrolebinding-awx-operator-proxy-rolebinding.yaml │ │ │ ├── configmap-awx-operator-awx-manager-config.yaml │ │ │ ├── deployment-awx-operator-controller-manager.yaml │ │ │ ├── postgres-config.yaml │ │ │ ├── role-awx-operator-awx-manager-role.yaml │ │ │ ├── role-awx-operator-leader-election-role.yaml │ │ │ ├── rolebinding-awx-operator-awx-manager-rolebinding.yaml │ │ │ ├── rolebinding-awx-operator-leader-election-rolebinding.yaml │ │ │ ├── service-awx-operator-controller-manager-metrics-service.yaml │ │ │ └── serviceaccount-awx-operator-controller-manager.yaml │ │ │ └── values.yaml │ │ └── images │ │ └── shim │ │ └── awxImages ├── bitnami-apache │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── bitnami-apisix │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── bitnami-clickhouse │ └── latest │ │ ├── init.sh │ │ └── install.sh ├── bitnami-elasticsearch │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── bitnami-etcd │ └── latest │ │ └── init.sh ├── bitnami-fluent-bit │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── bitnami-fluentd │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── bitnami-kafka │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── bitnami-kibana │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── bitnami-mariadb-galera │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── bitnami-mariadb │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── bitnami-minio │ ├── README.md │ └── latest │ │ └── init.sh ├── bitnami-mongodb-sharded │ └── 6.0.2 │ │ ├── Kubefile │ │ ├── README.md │ │ └── charts │ │ └── mongodb-sharded │ │ ├── .helmignore │ │ ├── Chart.lock │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── charts │ │ └── common │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ ├── _affinities.tpl │ │ │ ├── _capabilities.tpl │ │ │ ├── _errors.tpl │ │ │ ├── _images.tpl │ │ │ ├── _ingress.tpl │ │ │ ├── _labels.tpl │ │ │ ├── _names.tpl │ │ │ ├── _secrets.tpl │ │ │ ├── _storage.tpl │ │ │ ├── _tplvalues.tpl │ │ │ ├── _utils.tpl │ │ │ ├── _warnings.tpl │ │ │ └── validations │ │ │ │ ├── _cassandra.tpl │ │ │ │ ├── _mariadb.tpl │ │ │ │ ├── _mongodb.tpl │ │ │ │ ├── _mysql.tpl │ │ │ │ ├── _postgresql.tpl │ │ │ │ ├── _redis.tpl │ │ │ │ └── _validations.tpl │ │ │ └── values.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── config-server │ │ │ ├── config-server-configmap.yaml │ │ │ ├── config-server-poddisruptionbudget.yaml │ │ │ ├── config-server-podmonitor.yaml │ │ │ └── config-server-statefulset.yaml │ │ ├── extra-list.yaml │ │ ├── headless-service.yaml │ │ ├── mongos │ │ │ ├── mongos-configmap.yaml │ │ │ ├── mongos-dep-sts.yaml │ │ │ ├── mongos-poddisruptionbudget.yaml │ │ │ ├── mongos-podmonitor.yaml │ │ │ ├── mongos-service-per-replica.yaml │ │ │ └── mongos-service.yaml │ │ ├── replicaset-entrypoint-configmap.yaml │ │ ├── secrets.yaml │ │ ├── serviceaccount.yaml │ │ └── shard │ │ │ ├── shard-arbiter-configmap.yaml │ │ │ ├── shard-arbiter-statefulset.yaml │ │ │ ├── shard-data-configmap.yaml │ │ │ ├── shard-data-poddisruptionbudget.yaml │ │ │ ├── shard-data-podmonitor.yaml │ │ │ └── shard-data-statefulset.yaml │ │ └── values.yaml ├── bitnami-mongodb │ └── 6.0.2 │ │ ├── Kubefile │ │ ├── README.md │ │ └── charts │ │ └── mongodb │ │ ├── .helmignore │ │ ├── Chart.lock │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── charts │ │ └── common │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ ├── _affinities.tpl │ │ │ ├── _capabilities.tpl │ │ │ ├── _errors.tpl │ │ │ ├── _images.tpl │ │ │ ├── _ingress.tpl │ │ │ ├── _labels.tpl │ │ │ ├── _names.tpl │ │ │ ├── _secrets.tpl │ │ │ ├── _storage.tpl │ │ │ ├── _tplvalues.tpl │ │ │ ├── _utils.tpl │ │ │ ├── _warnings.tpl │ │ │ └── validations │ │ │ │ ├── _cassandra.tpl │ │ │ │ ├── _mariadb.tpl │ │ │ │ ├── _mongodb.tpl │ │ │ │ ├── _mysql.tpl │ │ │ │ ├── _postgresql.tpl │ │ │ │ ├── _redis.tpl │ │ │ │ └── _validations.tpl │ │ │ └── values.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── arbiter │ │ │ ├── configmap.yaml │ │ │ ├── headless-svc.yaml │ │ │ ├── pdb.yaml │ │ │ └── statefulset.yaml │ │ ├── common-scripts-cm.yaml │ │ ├── configmap.yaml │ │ ├── extra-list.yaml │ │ ├── hidden │ │ │ ├── configmap.yaml │ │ │ ├── external-access-svc.yaml │ │ │ ├── headless-svc.yaml │ │ │ ├── pdb.yaml │ │ │ └── statefulset.yaml │ │ ├── initialization-configmap.yaml │ │ ├── metrics-svc.yaml │ │ ├── prometheusrule.yaml │ │ ├── psp.yaml │ │ ├── replicaset │ │ │ ├── external-access-svc.yaml │ │ │ ├── headless-svc.yaml │ │ │ ├── pdb.yaml │ │ │ ├── scripts-configmap.yaml │ │ │ ├── statefulset.yaml │ │ │ └── svc.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── secrets-ca.yaml │ │ ├── secrets.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ └── standalone │ │ │ ├── dep-sts.yaml │ │ │ ├── pvc.yaml │ │ │ └── svc.yaml │ │ ├── values.schema.json │ │ └── values.yaml ├── bitnami-mysql │ └── latest │ │ └── init.sh ├── bitnami-postgresql-ha │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── bitnami-postgresql │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── bitnami-redis-cluster │ ├── README.md │ └── latest │ │ └── init.sh ├── bitnami-thanos │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── bitnami-zookeeper │ └── latest │ │ ├── init.sh │ │ └── install.sh ├── bond-cni │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── calico │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── calicoctl │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── ceph-csi-cephfs │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── ceph-csi-cephfs.sh │ │ └── init.sh ├── ceph-csi-rbd │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── ceph-csi-rbd.sh │ │ └── init.sh ├── cert-manager │ ├── README.md │ ├── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh │ ├── v1.12.6 │ │ ├── Kubefile │ │ └── init.sh │ └── v1.8.0 │ │ ├── Dockerfile │ │ └── manifests │ │ └── cert-manager.yaml ├── chaos-mesh-containerd │ └── latest │ │ └── init.sh ├── chaos-mesh-crio │ └── latest │ │ └── init.sh ├── chaos-mesh │ └── latest │ │ └── init.sh ├── chatbot-ui │ └── main │ │ ├── Dockerfile │ │ └── manifests │ │ └── chatbot-ui.yaml ├── cilium │ ├── README.md │ ├── latest │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ └── init.sh │ └── v1.12.0 │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── charts │ │ └── cilium │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── README.md.gotmpl │ │ │ ├── files │ │ │ └── nodeinit │ │ │ │ ├── poststart-eni.bash │ │ │ │ ├── prestop.bash │ │ │ │ └── startup.bash │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── cilium-agent │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── daemonset.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ ├── cilium-ca-secret.yaml │ │ │ ├── cilium-configmap.yaml │ │ │ ├── cilium-ingress-class.yaml │ │ │ ├── cilium-nodeinit │ │ │ │ └── daemonset.yaml │ │ │ ├── cilium-operator │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── secret.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ ├── cilium-preflight │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── daemonset.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ ├── cilium-resource-quota.yaml │ │ │ ├── cilium-secrets-namespace.yaml │ │ │ ├── clustermesh-apiserver │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── tls-certmanager │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── admin-secret.yaml │ │ │ │ │ ├── client-secret.yaml │ │ │ │ │ ├── clustermesh-apiserver-issuer.yaml │ │ │ │ │ ├── remote-secret.yaml │ │ │ │ │ └── server-secret.yaml │ │ │ │ ├── tls-cronjob │ │ │ │ │ ├── _job-spec.tpl │ │ │ │ │ ├── ca-secret.yaml │ │ │ │ │ ├── cronjob.yaml │ │ │ │ │ ├── job.yaml │ │ │ │ │ ├── role.yaml │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ ├── tls-helm │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── admin-secret.yaml │ │ │ │ │ ├── ca-secret.yaml │ │ │ │ │ ├── client-secret.yaml │ │ │ │ │ ├── remote-secret.yaml │ │ │ │ │ └── server-secret.yaml │ │ │ │ └── tls-provided │ │ │ │ │ ├── admin-secret.yaml │ │ │ │ │ ├── ca-secret.yaml │ │ │ │ │ ├── client-secret.yaml │ │ │ │ │ ├── remote-secret.yaml │ │ │ │ │ └── server-secret.yaml │ │ │ ├── clustermesh-config │ │ │ │ ├── _helpers.tpl │ │ │ │ └── clustermesh-secret.yaml │ │ │ ├── etcd-operator │ │ │ │ ├── cilium-etcd-operator-clusterrole.yaml │ │ │ │ ├── cilium-etcd-operator-clusterrolebinding.yaml │ │ │ │ ├── cilium-etcd-operator-deployment.yaml │ │ │ │ ├── cilium-etcd-operator-serviceaccount.yaml │ │ │ │ ├── etcd-operator-clusterrole.yaml │ │ │ │ ├── etcd-operator-clusterrolebinding.yaml │ │ │ │ ├── etcd-operator-serviceaccount.yaml │ │ │ │ └── poddisruptionbudget.yaml │ │ │ ├── hubble-relay │ │ │ │ ├── configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── metrics-service.yaml │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ ├── hubble-ui │ │ │ │ ├── _nginx.tpl │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ ├── hubble │ │ │ │ ├── metrics-service.yaml │ │ │ │ ├── peer-service.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ ├── tls-certmanager │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── hubble-issuer.yaml │ │ │ │ │ ├── relay-client-secret.yaml │ │ │ │ │ ├── relay-server-secret.yaml │ │ │ │ │ ├── server-secret.yaml │ │ │ │ │ └── ui-client-certs.yaml │ │ │ │ ├── tls-cronjob │ │ │ │ │ ├── _job-spec.tpl │ │ │ │ │ ├── ca-secret.yaml │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── cronjob.yaml │ │ │ │ │ ├── job.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ ├── tls-helm │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── ca-secret.yaml │ │ │ │ │ ├── relay-client-secret.yaml │ │ │ │ │ ├── relay-server-secret.yaml │ │ │ │ │ ├── server-secret.yaml │ │ │ │ │ └── ui-client-certs.yaml │ │ │ │ └── tls-provided │ │ │ │ │ ├── ca-secret.yaml │ │ │ │ │ ├── relay-client-secret.yaml │ │ │ │ │ ├── relay-server-secret.yaml │ │ │ │ │ ├── server-secret.yaml │ │ │ │ │ └── ui-client-certs.yaml │ │ │ └── validate.yaml │ │ │ ├── values.yaml │ │ │ └── values.yaml.tmpl.bak │ │ ├── images │ │ └── shim │ │ │ └── ciliumImages │ │ └── init.sh ├── clickhouse │ └── 0.18.4 │ │ ├── Dockerfile │ │ ├── clickhouse │ │ ├── clickhouse-operator.yaml │ │ └── cr.yaml │ │ └── images │ │ └── shim │ │ └── clickhouseImages ├── cni-plugins │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── cockroach │ ├── README.md │ ├── latest │ │ ├── Kubefile │ │ ├── images │ │ │ └── shim │ │ │ │ └── imageList │ │ ├── manifests │ │ │ └── operator.yaml │ │ └── scripts │ │ │ └── init.sh │ └── v2.12.0 │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ ├── images │ │ └── shim │ │ │ └── imageList │ │ └── manifests │ │ └── deploy.yaml.tmpl ├── code-server │ ├── latest │ │ └── init.sh │ └── v4.8.2 │ │ ├── Kubefile │ │ ├── charts │ │ └── code-server │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ ├── pvc.yaml │ │ │ ├── secrets.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── tests │ │ │ │ └── test-connection.yaml │ │ │ └── values.yaml │ │ └── init.sh ├── containerd-shim-wasmedge │ └── latest │ │ ├── init.sh │ │ └── install.sh ├── containerd-shim-wasmer │ └── latest │ │ ├── init.sh │ │ └── install.sh ├── containerd-shim-wasmtime │ └── latest │ │ ├── init.sh │ │ └── install.sh ├── contour │ └── v1.23.0 │ │ ├── Kubefile │ │ └── manifests │ │ └── contour.yaml ├── coredns │ └── v0.0.1 │ │ ├── Kubefile │ │ ├── README.md │ │ └── manifests │ │ └── coredns.sh ├── cowboysysop-vertical-pod-autoscaler │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── crunchy-postgres-operator │ ├── v5.2.0 │ │ ├── Kubefile │ │ ├── README.md │ │ ├── charts │ │ │ └── crunchy-postgres-operator │ │ │ │ ├── .gitattributes │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── crds │ │ │ │ ├── postgres-operator.crunchydata.com_pgupgrades.yaml │ │ │ │ └── postgres-operator.crunchydata.com_postgresclusters.yaml │ │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── manager-upgrade.yaml │ │ │ │ ├── manager.yaml │ │ │ │ ├── role-upgrade.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── role_binding.yaml │ │ │ │ └── service_account.yaml │ │ │ │ └── values.yaml │ │ └── manifests │ │ │ └── postgres-operator-examples │ │ │ └── kustomize │ │ │ ├── azure │ │ │ ├── .gitignore │ │ │ ├── azure.conf.example │ │ │ ├── kustomization.yaml │ │ │ └── postgres.yaml │ │ │ ├── certmanager │ │ │ ├── README.md │ │ │ ├── certman │ │ │ │ ├── ca-cert.yaml │ │ │ │ ├── ca-issuer.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── selfsigned-clusterissuer.yaml │ │ │ │ └── selfsigned-issuer.yaml │ │ │ └── postgres │ │ │ │ ├── cert-repl.yaml │ │ │ │ ├── cert.yaml │ │ │ │ ├── kustomization.yaml │ │ │ │ └── postgres.yaml │ │ │ ├── gcs │ │ │ ├── .gitignore │ │ │ ├── gcs.conf │ │ │ ├── kustomization.yaml │ │ │ └── postgres.yaml │ │ │ ├── high-availability │ │ │ ├── ha-postgres.yaml │ │ │ └── kustomization.yaml │ │ │ ├── install │ │ │ ├── crd │ │ │ │ ├── bases │ │ │ │ │ ├── postgres-operator.crunchydata.com_pgupgrades.yaml │ │ │ │ │ └── postgres-operator.crunchydata.com_postgresclusters.yaml │ │ │ │ └── kustomization.yaml │ │ │ ├── default │ │ │ │ ├── kustomization.yaml │ │ │ │ └── selectors.yaml │ │ │ ├── manager │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── manager-upgrade.yaml │ │ │ │ └── manager.yaml │ │ │ ├── namespace │ │ │ │ ├── kustomization.yaml │ │ │ │ └── namespace.yaml │ │ │ ├── rbac │ │ │ │ ├── cluster │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ ├── role-upgrade.yaml │ │ │ │ │ ├── role.yaml │ │ │ │ │ ├── role_binding-upgrade.yaml │ │ │ │ │ ├── role_binding.yaml │ │ │ │ │ ├── service_account-upgrade.yaml │ │ │ │ │ └── service_account.yaml │ │ │ │ └── namespace │ │ │ │ │ ├── kustomization.yaml │ │ │ │ │ ├── role-upgrade.yaml │ │ │ │ │ ├── role.yaml │ │ │ │ │ ├── role_binding-upgrade.yaml │ │ │ │ │ ├── role_binding.yaml │ │ │ │ │ ├── service_account-upgrade.yaml │ │ │ │ │ └── service_account.yaml │ │ │ └── singlenamespace │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── manager-target-upgrade.yaml │ │ │ │ ├── manager-target.yaml │ │ │ │ └── selectors.yaml │ │ │ ├── keycloak │ │ │ ├── keycloak.yaml │ │ │ ├── kustomization.yaml │ │ │ └── postgres.yaml │ │ │ ├── monitoring │ │ │ ├── README.md │ │ │ ├── alertmanager-config.yaml │ │ │ ├── alertmanager-rules-config.yaml │ │ │ ├── crunchy_grafana_dashboards.yml │ │ │ ├── dashboards │ │ │ │ ├── crud_details.json │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── pgbackrest.json │ │ │ │ ├── pod_details.json │ │ │ │ ├── pod_details2.json │ │ │ │ ├── postgres_overview.json │ │ │ │ ├── postgresql_details.json │ │ │ │ ├── postgresql_service_health.json │ │ │ │ ├── prometheus_alerts.json │ │ │ │ └── query_statistics.json │ │ │ ├── deploy-alertmanager.yaml │ │ │ ├── deploy-grafana.yaml │ │ │ ├── deploy-prometheus.yaml │ │ │ ├── grafana-datasources.yaml │ │ │ ├── grafana-secret.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── prometheus-config.yaml │ │ │ ├── pvcs.yaml │ │ │ ├── rbac-cr.yaml │ │ │ ├── rbac-crb.yaml │ │ │ ├── rbac-sa.yaml │ │ │ └── service.yaml │ │ │ ├── multi-backup-repo │ │ │ ├── .gitignore │ │ │ ├── azure.conf.example │ │ │ ├── gcs.conf │ │ │ ├── kustomization.yaml │ │ │ ├── postgres.yaml │ │ │ └── s3.conf.example │ │ │ ├── postgres │ │ │ ├── kustomization.yaml │ │ │ └── postgres.yaml │ │ │ └── s3 │ │ │ ├── .gitignore │ │ │ ├── kustomization.yaml │ │ │ ├── postgres.yaml │ │ │ └── s3.conf.example │ └── v5.3.1 │ │ ├── Kubefile │ │ ├── README.md │ │ ├── helm │ │ ├── install │ │ │ ├── .gitattributes │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── crds │ │ │ │ ├── postgres-operator.crunchydata.com_pgupgrades.yaml │ │ │ │ └── postgres-operator.crunchydata.com_postgresclusters.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── manager-upgrade.yaml │ │ │ │ ├── manager.yaml │ │ │ │ ├── role-upgrade.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── role_binding.yaml │ │ │ │ └── service_account.yaml │ │ │ └── values.yaml │ │ └── postgres │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _azure.tpl │ │ │ ├── _gcs.tpl │ │ │ ├── _s3.tpl │ │ │ ├── pgbackrest-secret.yaml │ │ │ └── postgres.yaml │ │ │ └── values.yaml │ │ ├── images │ │ └── shim │ │ │ └── crunchy-postgres-operator │ │ └── kustomize │ │ ├── azure │ │ ├── .gitignore │ │ ├── azure.conf.example │ │ ├── kustomization.yaml │ │ └── postgres.yaml │ │ ├── certmanager │ │ ├── README.md │ │ ├── certman │ │ │ ├── ca-cert.yaml │ │ │ ├── ca-issuer.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── selfsigned-clusterissuer.yaml │ │ │ └── selfsigned-issuer.yaml │ │ └── postgres │ │ │ ├── cert-repl.yaml │ │ │ ├── cert.yaml │ │ │ ├── kustomization.yaml │ │ │ └── postgres.yaml │ │ ├── gcs │ │ ├── .gitignore │ │ ├── gcs.conf │ │ ├── kustomization.yaml │ │ └── postgres.yaml │ │ ├── high-availability │ │ ├── ha-postgres.yaml │ │ └── kustomization.yaml │ │ ├── install │ │ ├── crd │ │ │ ├── bases │ │ │ │ ├── postgres-operator.crunchydata.com_pgupgrades.yaml │ │ │ │ └── postgres-operator.crunchydata.com_postgresclusters.yaml │ │ │ └── kustomization.yaml │ │ ├── default │ │ │ ├── kustomization.yaml │ │ │ └── selectors.yaml │ │ ├── manager │ │ │ ├── kustomization.yaml │ │ │ ├── manager-upgrade.yaml │ │ │ └── manager.yaml │ │ ├── namespace │ │ │ ├── kustomization.yaml │ │ │ └── namespace.yaml │ │ ├── rbac │ │ │ ├── cluster │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── role-upgrade.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── role_binding-upgrade.yaml │ │ │ │ ├── role_binding.yaml │ │ │ │ ├── service_account-upgrade.yaml │ │ │ │ └── service_account.yaml │ │ │ └── namespace │ │ │ │ ├── kustomization.yaml │ │ │ │ ├── role-upgrade.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── role_binding-upgrade.yaml │ │ │ │ ├── role_binding.yaml │ │ │ │ ├── service_account-upgrade.yaml │ │ │ │ └── service_account.yaml │ │ └── singlenamespace │ │ │ ├── kustomization.yaml │ │ │ ├── manager-target-upgrade.yaml │ │ │ ├── manager-target.yaml │ │ │ └── selectors.yaml │ │ ├── keycloak │ │ ├── keycloak.yaml │ │ ├── kustomization.yaml │ │ └── postgres.yaml │ │ ├── monitoring │ │ ├── README.md │ │ ├── alertmanager-config.yaml │ │ ├── alertmanager-rules-config.yaml │ │ ├── crunchy_grafana_dashboards.yml │ │ ├── dashboards │ │ │ ├── crud_details.json │ │ │ ├── kustomization.yaml │ │ │ ├── pgbackrest.json │ │ │ ├── pod_details.json │ │ │ ├── pod_details2.json │ │ │ ├── postgres_overview.json │ │ │ ├── postgresql_details.json │ │ │ ├── postgresql_service_health.json │ │ │ ├── prometheus_alerts.json │ │ │ └── query_statistics.json │ │ ├── deploy-alertmanager.yaml │ │ ├── deploy-grafana.yaml │ │ ├── deploy-prometheus.yaml │ │ ├── grafana-datasources.yaml │ │ ├── grafana-secret.yaml │ │ ├── kustomization.yaml │ │ ├── prometheus-config.yaml │ │ ├── pvcs.yaml │ │ ├── rbac-cr.yaml │ │ ├── rbac-crb.yaml │ │ ├── rbac-sa.yaml │ │ └── service.yaml │ │ ├── multi-backup-repo │ │ ├── .gitignore │ │ ├── azure.conf.example │ │ ├── gcs.conf │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ └── s3.conf.example │ │ ├── postgres │ │ ├── kustomization.yaml │ │ └── postgres.yaml │ │ └── s3 │ │ ├── .gitignore │ │ ├── kustomization.yaml │ │ ├── postgres.yaml │ │ └── s3.conf.example ├── csi-driver-nfs │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── csi-driver-nfs.sh │ │ ├── init.sh │ │ └── manifests │ │ └── storageclass-nfs.yaml.tmpl ├── cubefs │ ├── README.md │ └── v3.3.0 │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── dapr-dashboard │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── dapr │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── deepflow │ ├── latest │ │ ├── Kubefile │ │ └── init.sh │ └── stable │ │ ├── Dockerfile │ │ └── init.sh ├── descheduler │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── discourse │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── eck-operator │ ├── 2.4.0 │ │ ├── Kubefile │ │ ├── README.md │ │ ├── charts │ │ │ └── eck-operator │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.lock │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── charts │ │ │ │ └── eck-operator-crds │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── README.md │ │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ └── all-crds.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── profile-global.yaml │ │ │ │ ├── profile-istio.yaml │ │ │ │ ├── profile-restricted.yaml │ │ │ │ ├── profile-soft-multi-tenancy.yaml │ │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── cluster-roles.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── managed-namespaces.yaml │ │ │ │ ├── managed-ns-network-policy.yaml │ │ │ │ ├── operator-namespace.yaml │ │ │ │ ├── operator-network-policy.yaml │ │ │ │ ├── podMonitor.yaml │ │ │ │ ├── role-bindings.yaml │ │ │ │ ├── service-account.yaml │ │ │ │ ├── statefulset.yaml │ │ │ │ ├── validate-chart.yaml │ │ │ │ └── webhook.yaml │ │ │ │ └── values.yaml │ │ ├── images │ │ │ └── shim │ │ │ │ └── eckoperatorImages │ │ └── manifests │ │ │ └── filebeat_no_autodiscover.yaml │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── init.sh │ │ └── manifests │ │ ├── eck_secret.yaml │ │ ├── filebeat_no_autodiscover_example.yaml │ │ ├── kustomization.yaml │ │ └── patch.yaml ├── elasticsearch │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── endpoints-operator │ ├── latest │ │ └── init.sh │ ├── v0.1.1 │ │ ├── Dockerfile │ │ ├── charts │ │ │ └── endpoints-operator │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── crds │ │ │ │ └── sealyun.com_clusterendpoints.yaml │ │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── rbac.yaml │ │ │ │ └── service.yaml │ │ │ │ └── values.yaml │ │ └── images │ │ │ └── shim │ │ │ └── cepctl │ └── v0.2.0 │ │ ├── Dockerfile │ │ ├── charts │ │ └── endpoints-operator │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── crds │ │ │ └── sealos.io_clusterendpoints.yaml │ │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ ├── rbac.yaml │ │ │ └── service.yaml │ │ │ └── values.yaml │ │ └── images │ │ └── shim │ │ └── cepctl ├── enovy-gateway │ └── latest │ │ ├── init.sh │ │ └── install.sh ├── etcdctl │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ ├── init.sh │ │ └── scripts │ │ ├── disable.sh │ │ ├── enable.sh │ │ └── etcdctl.sh ├── filebeat │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── flannel │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── flink-kubernetes-operator │ └── 1.2.0 │ │ ├── Kubefile │ │ ├── README.md │ │ ├── charts │ │ └── flink-kubernetes-operator │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── conf │ │ │ ├── flink-conf.yaml │ │ │ ├── log4j-console.properties │ │ │ └── log4j-operator.properties │ │ │ ├── crds │ │ │ ├── flinkdeployments.flink.apache.org-v1.yml │ │ │ └── flinksessionjobs.flink.apache.org-v1.yml │ │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── flink-operator.yaml │ │ │ ├── rbac.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── webhook.yaml │ │ │ └── values.yaml │ │ └── manifests │ │ └── basic.yaml ├── fluent-bit │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── fluent-operator │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── fluxcd │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── gatekeeper │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── gitea │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── gitlab-operator │ ├── README.md │ └── v0.21.2 │ │ ├── Kubefile │ │ ├── gitlab-operator.sh │ │ ├── images │ │ └── shim │ │ │ └── gitalb-operator-images.txt │ │ ├── init.sh │ │ └── manifests │ │ └── gitlab.yaml.tmpl ├── gitlab-runner │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── gitlab-runner.sh │ │ └── init.sh ├── gitlab │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── gitness │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── gloo │ └── latest │ │ └── init.sh ├── golang-vim-dev │ └── 1.18.4 │ │ ├── Dockerfile │ │ └── images │ │ └── shim │ │ └── dev ├── gpu-operator │ ├── latest │ │ ├── .gitignore │ │ └── init.sh │ └── v1.10.1 │ │ ├── Dockerfile │ │ ├── gpu-operator-v1.10.1.tgz │ │ └── images │ │ └── shim │ │ └── gpuImages ├── grafana-operator │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ ├── init.sh │ │ └── manifests │ │ └── resources.yaml ├── grafana │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── harbor │ ├── README.md │ ├── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh │ └── v2.6.1 │ │ ├── Kubefile │ │ ├── charts │ │ └── harbor │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cert │ │ │ ├── tls.crt │ │ │ └── tls.key │ │ │ ├── conf │ │ │ ├── notary-server.json │ │ │ └── notary-signer.json │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── chartmuseum │ │ │ │ ├── chartmuseum-cm.yaml │ │ │ │ ├── chartmuseum-dpl.yaml │ │ │ │ ├── chartmuseum-pvc.yaml │ │ │ │ ├── chartmuseum-secret.yaml │ │ │ │ ├── chartmuseum-svc.yaml │ │ │ │ └── chartmuseum-tls.yaml │ │ │ ├── core │ │ │ │ ├── core-cm.yaml │ │ │ │ ├── core-dpl.yaml │ │ │ │ ├── core-pre-upgrade-job.yaml │ │ │ │ ├── core-secret.yaml │ │ │ │ ├── core-svc.yaml │ │ │ │ └── core-tls.yaml │ │ │ ├── database │ │ │ │ ├── database-secret.yaml │ │ │ │ ├── database-ss.yaml │ │ │ │ └── database-svc.yaml │ │ │ ├── exporter │ │ │ │ ├── exporter-cm-env.yaml │ │ │ │ ├── exporter-dpl.yaml │ │ │ │ ├── exporter-secret.yaml │ │ │ │ └── exporter-svc.yaml │ │ │ ├── ingress │ │ │ │ ├── ingress.yaml │ │ │ │ └── secret.yaml │ │ │ ├── internal │ │ │ │ └── auto-tls.yaml │ │ │ ├── jobservice │ │ │ │ ├── jobservice-cm-env.yaml │ │ │ │ ├── jobservice-cm.yaml │ │ │ │ ├── jobservice-dpl.yaml │ │ │ │ ├── jobservice-pvc-scandata.yaml │ │ │ │ ├── jobservice-pvc.yaml │ │ │ │ ├── jobservice-secrets.yaml │ │ │ │ ├── jobservice-svc.yaml │ │ │ │ └── jobservice-tls.yaml │ │ │ ├── metrics │ │ │ │ └── metrics-svcmon.yaml │ │ │ ├── nginx │ │ │ │ ├── configmap-http.yaml │ │ │ │ ├── configmap-https.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── secret.yaml │ │ │ │ └── service.yaml │ │ │ ├── notary │ │ │ │ ├── notary-secret.yaml │ │ │ │ ├── notary-server.yaml │ │ │ │ ├── notary-signer.yaml │ │ │ │ └── notary-svc.yaml │ │ │ ├── portal │ │ │ │ ├── configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── tls.yaml │ │ │ ├── redis │ │ │ │ ├── service.yaml │ │ │ │ └── statefulset.yaml │ │ │ ├── registry │ │ │ │ ├── registry-cm.yaml │ │ │ │ ├── registry-dpl.yaml │ │ │ │ ├── registry-pvc.yaml │ │ │ │ ├── registry-secret.yaml │ │ │ │ ├── registry-svc.yaml │ │ │ │ ├── registry-tls.yaml │ │ │ │ ├── registryctl-cm.yaml │ │ │ │ └── registryctl-secret.yaml │ │ │ └── trivy │ │ │ │ ├── trivy-secret.yaml │ │ │ │ ├── trivy-sts.yaml │ │ │ │ ├── trivy-svc.yaml │ │ │ │ └── trivy-tls.yaml │ │ │ └── values.yaml │ │ └── init.sh ├── helm-dashboard │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── helm │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── helmfile │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── higress │ ├── README.md │ └── latest │ │ ├── init.sh │ │ └── install.sh ├── ingress-nginx │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── iomesh │ ├── README.md │ └── latest │ │ ├── init.sh │ │ └── install.sh ├── istio-base │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── istio-bookinfo │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── istio │ ├── 1.15.1 │ │ ├── Kubefile │ │ ├── README.md │ │ └── init.sh │ ├── 1.16.2-min │ │ ├── Kubefile │ │ ├── README.md │ │ ├── init.sh │ │ └── manifests │ │ │ └── generated-manifest.yaml │ ├── 1.16.2 │ │ ├── Kubefile │ │ ├── README.md │ │ ├── init.sh │ │ └── manifests │ │ │ └── generated-manifest.yaml │ ├── README.md │ ├── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh │ └── v1.14.2 │ │ ├── Kubefile │ │ ├── charts-istio │ │ ├── base │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── crds │ │ │ │ ├── crd-all.gen.yaml │ │ │ │ └── crd-operator.yaml │ │ │ ├── files │ │ │ │ └── gen-istio-cluster.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── crds.yaml │ │ │ │ ├── default.yaml │ │ │ │ ├── endpoints.yaml │ │ │ │ ├── reader-serviceaccount.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── services.yaml │ │ │ └── values.yaml │ │ ├── gateway │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── hpa.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ ├── values.schema.json │ │ │ └── values.yaml │ │ └── istiod │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── files │ │ │ ├── gateway-injection-template.yaml │ │ │ ├── gen-istio.yaml │ │ │ ├── grpc-agent.yaml │ │ │ ├── grpc-simple.yaml │ │ │ └── injection-template.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── autoscale.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-jwks.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── istiod-injector-configmap.yaml │ │ │ ├── mutatingwebhook.yaml │ │ │ ├── poddisruptionbudget.yaml │ │ │ ├── reader-clusterrole.yaml │ │ │ ├── reader-clusterrolebinding.yaml │ │ │ ├── revision-tags.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── telemetryv2_1.11.yaml │ │ │ ├── telemetryv2_1.12.yaml │ │ │ ├── telemetryv2_1.13.yaml │ │ │ ├── telemetryv2_1.14.yaml │ │ │ ├── telemetryv2_1.15.yaml │ │ │ └── validatingwebhookconfiguration.yaml │ │ │ └── values.yaml │ │ ├── images │ │ └── shim │ │ │ └── istioImages │ │ └── init.sh ├── jenkins-operator │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── jenkins │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── k8tz │ └── 0.4.0 │ │ ├── Dockerfile │ │ ├── images │ │ └── shim │ │ │ └── k8tzImages │ │ └── k8tz │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── _helpers.tpl │ │ ├── admission-webhook.yaml │ │ ├── deployment.yaml │ │ ├── namespace.yaml │ │ ├── rbac.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ │ └── values.yaml ├── k9s │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── kafka-exporter │ └── latest │ │ ├── Dockerfile │ │ ├── images │ │ └── shim │ │ │ └── kafkaExporterImages │ │ └── kafka-exporter │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ └── servicemonitor.yaml │ │ └── values.yaml ├── kafka-operator │ ├── 0.28.0 │ │ ├── Dockerfile │ │ ├── images │ │ │ └── shim │ │ │ │ └── kafkaImages │ │ └── kafka │ │ │ ├── crd.yaml │ │ │ └── kafka.yaml │ └── 0.37.0 │ │ ├── Dockerfile │ │ ├── images │ │ └── shim │ │ │ └── kafkaImages │ │ ├── install.sh │ │ └── manifests │ │ └── simplekafkacluster.yaml.tmpl ├── kafka-ui │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── kargo │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── karmada │ └── latest │ │ └── init.sh ├── keda │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── kibana │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── kong-ingress-controller │ └── 2.7.0 │ │ ├── Kubefile │ │ ├── README.md │ │ ├── charts │ │ └── kong │ │ │ ├── .helmignore │ │ │ ├── CHANGELOG.md │ │ │ ├── Chart.lock │ │ │ ├── Chart.yaml │ │ │ ├── FAQs.md │ │ │ ├── README.md │ │ │ ├── UPGRADE.md │ │ │ ├── charts │ │ │ └── postgresql │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.lock │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── charts │ │ │ │ └── common │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── README.md │ │ │ │ │ ├── templates │ │ │ │ │ ├── _affinities.tpl │ │ │ │ │ ├── _capabilities.tpl │ │ │ │ │ ├── _errors.tpl │ │ │ │ │ ├── _images.tpl │ │ │ │ │ ├── _ingress.tpl │ │ │ │ │ ├── _labels.tpl │ │ │ │ │ ├── _names.tpl │ │ │ │ │ ├── _secrets.tpl │ │ │ │ │ ├── _storage.tpl │ │ │ │ │ ├── _tplvalues.tpl │ │ │ │ │ ├── _utils.tpl │ │ │ │ │ ├── _warnings.tpl │ │ │ │ │ └── validations │ │ │ │ │ │ ├── _cassandra.tpl │ │ │ │ │ │ ├── _mariadb.tpl │ │ │ │ │ │ ├── _mongodb.tpl │ │ │ │ │ │ ├── _postgresql.tpl │ │ │ │ │ │ ├── _redis.tpl │ │ │ │ │ │ └── _validations.tpl │ │ │ │ │ └── values.yaml │ │ │ │ ├── ci │ │ │ │ ├── extended-config.yaml │ │ │ │ ├── init-scripts.yaml │ │ │ │ ├── metrics.yaml │ │ │ │ ├── rbac.yaml │ │ │ │ ├── replication.yaml │ │ │ │ └── tls.yaml │ │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── extra-list.yaml │ │ │ │ ├── networkpolicy-egress.yaml │ │ │ │ ├── primary │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── extended-configmap.yaml │ │ │ │ │ ├── initialization-configmap.yaml │ │ │ │ │ ├── metrics-configmap.yaml │ │ │ │ │ ├── metrics-svc.yaml │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ ├── prometheusrule.yaml │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ ├── statefulset.yaml │ │ │ │ │ ├── svc-headless.yaml │ │ │ │ │ └── svc.yaml │ │ │ │ ├── psp.yaml │ │ │ │ ├── read │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ ├── statefulset.yaml │ │ │ │ │ ├── svc-headless.yaml │ │ │ │ │ └── svc.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── secrets.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── tls-secrets.yaml │ │ │ │ ├── values.schema.json │ │ │ │ └── values.yaml │ │ │ ├── ci │ │ │ ├── custom-labels.yaml │ │ │ ├── default-values.yaml │ │ │ ├── service-account.yaml │ │ │ ├── single-image-default.yaml │ │ │ ├── test1-values.yaml │ │ │ ├── test2-values.yaml │ │ │ ├── test3-values.yaml │ │ │ ├── test4-values.yaml │ │ │ └── test5-values.yaml │ │ │ ├── crds │ │ │ └── custom-resource-definitions.yaml │ │ │ ├── example-values │ │ │ ├── README.md │ │ │ ├── doc-examples │ │ │ │ ├── README.md │ │ │ │ └── quickstart-enterprise-licensed-aio.yaml │ │ │ ├── full-k4k8s-with-kong-enterprise.yaml │ │ │ ├── minimal-k4k8s-with-kong-enterprise.yaml │ │ │ ├── minimal-kong-controller.yaml │ │ │ ├── minimal-kong-enterprise-dbless.yaml │ │ │ ├── minimal-kong-enterprise-hybrid-control.yaml │ │ │ ├── minimal-kong-enterprise-hybrid-data.yaml │ │ │ ├── minimal-kong-hybrid-control.yaml │ │ │ ├── minimal-kong-hybrid-data.yaml │ │ │ └── minimal-kong-standalone.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── admission-webhook.yaml │ │ │ ├── certificate.yaml │ │ │ ├── config-dbless.yaml │ │ │ ├── controller-rbac-resources.yaml │ │ │ ├── custom-resource-definitions.yaml │ │ │ ├── deployment.yaml │ │ │ ├── extraManifests.yaml │ │ │ ├── hpa.yaml │ │ │ ├── ingress-class.yaml │ │ │ ├── migrations-post-upgrade.yaml │ │ │ ├── migrations-pre-upgrade.yaml │ │ │ ├── migrations.yaml │ │ │ ├── pdb.yaml │ │ │ ├── psp.yaml │ │ │ ├── secret-sa-token.yaml │ │ │ ├── service-account.yaml │ │ │ ├── service-kong-admin.yaml │ │ │ ├── service-kong-cluster-telemetry.yaml │ │ │ ├── service-kong-cluster.yaml │ │ │ ├── service-kong-manager.yaml │ │ │ ├── service-kong-portal-api.yaml │ │ │ ├── service-kong-portal.yaml │ │ │ ├── service-kong-proxy.yaml │ │ │ ├── service-kong-udp-proxy.yaml │ │ │ ├── servicemonitor.yaml │ │ │ ├── tests │ │ │ │ ├── test-jobs.yaml │ │ │ │ └── test-resources.yaml │ │ │ └── wait-for-postgres-script.yaml │ │ │ └── values.yaml │ │ └── manifests │ │ ├── echo-ingress.yaml │ │ └── echo-service.yaml ├── koperator │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── build_arch │ │ ├── images │ │ └── shim │ │ │ └── kafka │ │ ├── init.sh │ │ ├── install.sh │ │ └── manifests │ │ └── simplekafkacluster.yaml.tmpl ├── kube-ovn │ ├── README.md │ ├── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ ├── init.sh │ │ └── scripts │ │ │ ├── cleanup.sh │ │ │ ├── install.sh │ │ │ └── kube-ovn.env │ ├── v1.10.4 │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── images │ │ │ └── shim │ │ │ │ └── kubeovnImageList │ │ ├── ovn-install.sh │ │ └── ovn-uninstall.sh │ ├── v1.10.5 │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── images │ │ │ └── shim │ │ │ │ └── kubeovnImageList │ │ ├── ovn-install.sh │ │ └── ovn-uninstall.sh │ └── v1.10.6 │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── images │ │ └── shim │ │ │ └── kubeovnImageList │ │ ├── ovn-install.sh │ │ └── ovn-uninstall.sh ├── kube-prometheus-stack │ ├── README.md │ ├── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ ├── init.sh │ │ └── scripts │ │ │ ├── disable.sh │ │ │ └── enable.sh │ └── v0.56.0 │ │ ├── Dockerfile │ │ ├── images │ │ └── shim │ │ │ └── prometheusImages │ │ ├── kube-prometheus-stack-35.0.0.tgz │ │ └── kube-prometheus-stack.values ├── kube-router │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── kube-state-metrics │ └── latest │ │ └── init.sh ├── kube-vip │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ ├── init.sh │ │ └── scripts │ │ ├── disable.sh │ │ └── enable.sh ├── kubean │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── kubeapps │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── init.sh │ │ └── manifests │ │ └── kubeapps │ │ ├── clusterrolebinding.yaml │ │ ├── kustomization.yaml │ │ ├── secret.yaml │ │ └── serviceaccount.yaml ├── kubeblocks-apecloud-mysql │ └── latest │ │ ├── Dockerfile │ │ └── init.sh ├── kubeblocks-csi-s3 │ ├── README.md │ └── latest │ │ ├── Dockerfile │ │ └── init.sh ├── kubeblocks-kafka │ └── latest │ │ ├── Dockerfile │ │ └── init.sh ├── kubeblocks-mongodb │ └── latest │ │ ├── Dockerfile │ │ └── init.sh ├── kubeblocks-postgresql │ └── latest │ │ ├── Dockerfile │ │ └── init.sh ├── kubeblocks-redis │ └── latest │ │ ├── Dockerfile │ │ └── init.sh ├── kubeblocks │ ├── README.md │ └── latest │ │ ├── Dockerfile │ │ └── init.sh ├── kubectl-df-pv │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── kubegems │ ├── README.md │ ├── v1.21.4 │ │ ├── Kubefile │ │ ├── images │ │ │ └── shim │ │ │ │ └── kubegemsImage │ │ ├── init.sh │ │ └── kubegems.sh │ ├── v1.22.0-ai1 │ │ ├── Kubefile │ │ └── images │ │ │ └── shim │ │ │ └── kubegemsImage │ ├── v1.22.0-ai2 │ │ ├── Kubefile │ │ └── images │ │ │ └── shim │ │ │ └── kubegemsImage │ ├── v1.22.0-ai3 │ │ ├── Kubefile │ │ └── images │ │ │ └── shim │ │ │ └── kubegemsImage │ ├── v1.22.2 │ │ ├── README.md │ │ ├── images │ │ │ └── shim │ │ │ │ └── kubegemsImages │ │ ├── init.sh │ │ └── manifest │ │ │ └── kubegems.yaml │ └── v1.23.8 │ │ ├── Kubefile │ │ ├── images │ │ └── shim │ │ │ └── kubegems_images.txt │ │ ├── init.sh │ │ └── kubegems.sh ├── kuberay │ └── latest │ │ └── init.sh ├── kubernetes-dashboard │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ ├── init.sh │ │ └── manifests │ │ └── dashboard-adminuser.yaml.tmpl ├── kubernetes-reflector │ └── latest │ │ └── init.sh ├── kubesphere │ ├── README.md │ ├── images │ │ └── kubesphere_v3.3.2.png │ ├── latest │ │ └── init.sh │ ├── v3.3.0 │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── images │ │ │ └── shim │ │ │ │ └── KubesphereImageList │ │ └── manifests │ │ │ ├── cluster-configuration.yaml │ │ │ └── kubesphere-installer.yaml │ ├── v3.3.2 │ │ ├── Kubefile │ │ ├── images │ │ │ └── shim │ │ │ │ └── images-list.txt │ │ ├── init.sh │ │ └── manifests │ │ │ ├── cluster-configuration.yaml │ │ │ └── kubesphere-installer.yaml │ ├── v3.4.0 │ │ ├── Kubefile │ │ ├── README.md │ │ ├── images │ │ │ └── shim │ │ │ │ └── images-list.txt │ │ ├── init.sh │ │ └── manifests │ │ │ ├── cluster-configuration.yaml │ │ │ └── kubesphere-installer.yaml │ └── v3.4.1 │ │ ├── Kubefile │ │ ├── README.md │ │ ├── images │ │ └── shim │ │ │ └── KubesphereImageList │ │ ├── init.sh │ │ └── manifests │ │ ├── cluster-configuration.yaml │ │ └── kubesphere-installer.yaml ├── kubevela │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── kubevirt │ ├── README.md │ ├── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ ├── init.sh │ │ └── scripts │ │ │ ├── disable.sh │ │ │ └── enable.sh │ └── v0.57.0 │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── images │ │ └── shim │ │ │ └── kubevirtImages │ │ ├── init.sh │ │ └── manifests │ │ ├── cdi-cr.yaml │ │ ├── cdi-operator.yaml │ │ ├── kubevirt-cr.yaml │ │ └── kubevirt-operator.yaml ├── kuboard │ ├── v2 │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── kuboard.sh │ │ └── manifests │ │ │ └── kuboard-v2.yaml │ └── v3 │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── images │ │ └── shim │ │ │ └── kuboardImage │ │ ├── kuboard.sh │ │ └── manifests │ │ ├── etcd.sh │ │ ├── kuboard-shell.yaml │ │ ├── kuboard-v3.yaml │ │ └── kuboard.sh ├── kustomize │ ├── README.md │ ├── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh │ └── v4.5.6 │ │ ├── Kubefile │ │ └── init.sh ├── kyverno │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── local-path-provisioner │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── logging-operator │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── loki-stack │ ├── 2.6.1 │ │ ├── Kubefile │ │ └── images │ │ │ └── shim │ │ │ └── lokiImages │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ ├── init.sh │ │ └── scripts │ │ ├── disable.sh │ │ └── enable.sh ├── loki │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── longhorn │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── mariadb-operator │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── memcached │ └── 1.6.17 │ │ ├── Kubefile │ │ ├── README.md │ │ └── charts │ │ └── memcached │ │ ├── .helmignore │ │ ├── Chart.lock │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── charts │ │ └── common │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ ├── _affinities.tpl │ │ │ ├── _capabilities.tpl │ │ │ ├── _errors.tpl │ │ │ ├── _images.tpl │ │ │ ├── _ingress.tpl │ │ │ ├── _labels.tpl │ │ │ ├── _names.tpl │ │ │ ├── _secrets.tpl │ │ │ ├── _storage.tpl │ │ │ ├── _tplvalues.tpl │ │ │ ├── _utils.tpl │ │ │ ├── _warnings.tpl │ │ │ └── validations │ │ │ │ ├── _cassandra.tpl │ │ │ │ ├── _mariadb.tpl │ │ │ │ ├── _mongodb.tpl │ │ │ │ ├── _mysql.tpl │ │ │ │ ├── _postgresql.tpl │ │ │ │ ├── _redis.tpl │ │ │ │ └── _validations.tpl │ │ │ └── values.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── extra-list.yaml │ │ ├── hpa.yaml │ │ ├── metrics-svc.yaml │ │ ├── pdb.yaml │ │ ├── secrets.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ └── statefulset.yaml │ │ └── values.yaml ├── metallb │ ├── README.md │ ├── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ ├── init.sh │ │ └── scripts │ │ │ ├── disable.sh │ │ │ └── enable.sh │ ├── v0.13.4 │ │ ├── Kubefile │ │ └── charts │ │ │ └── metallb │ │ │ ├── .helmignore │ │ │ ├── Chart.lock │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── charts │ │ │ └── crds │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ └── templates │ │ │ │ └── crds.yaml │ │ │ ├── policy │ │ │ ├── controller.rego │ │ │ ├── rbac.rego │ │ │ └── speaker.rego │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── controller.yaml │ │ │ ├── deprecated_configInline.yaml │ │ │ ├── podmonitor.yaml │ │ │ ├── prometheusrules.yaml │ │ │ ├── psp.yaml │ │ │ ├── rbac.yaml │ │ │ ├── service-accounts.yaml │ │ │ ├── speaker.yaml │ │ │ └── webhooks.yaml │ │ │ ├── values.schema.json │ │ │ └── values.yaml │ └── v0.13.7 │ │ ├── Kubefile │ │ └── charts │ │ └── metallb │ │ ├── .helmignore │ │ ├── Chart.lock │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── charts │ │ └── crds │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ └── templates │ │ │ └── crds.yaml │ │ ├── policy │ │ ├── controller.rego │ │ ├── rbac.rego │ │ └── speaker.rego │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── controller.yaml │ │ ├── deprecated_configInline.yaml │ │ ├── podmonitor.yaml │ │ ├── prometheusrules.yaml │ │ ├── rbac.yaml │ │ ├── service-accounts.yaml │ │ ├── servicemonitor.yaml │ │ ├── speaker.yaml │ │ └── webhooks.yaml │ │ ├── values.schema.json │ │ └── values.yaml ├── metrics-server │ ├── README.md │ ├── latest │ │ ├── Kubefile │ │ └── init.sh │ └── v0.6.1 │ │ ├── Dockerfile │ │ └── manifests │ │ └── metrics-server.yaml ├── milvus-attu │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── milvus-operator │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── milvus │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── minecraft-server │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── minio-operator │ ├── latest │ │ ├── init.sh │ │ └── install.sh │ └── v4.4.16 │ │ ├── Dockerfile │ │ ├── images │ │ └── shim │ │ │ └── minioImages │ │ └── init.sh ├── minio │ ├── 2021.6.17-debian-10-r38 │ │ ├── Kubefile │ │ └── manifests │ │ │ └── minio.yaml │ ├── 2022.5.9-debian-10-r13 │ │ ├── Kubefile │ │ ├── images │ │ │ └── shim │ │ │ │ └── minioImage │ │ └── minio │ │ │ ├── .helmignore │ │ │ ├── Chart.lock │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── charts │ │ │ └── common │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── templates │ │ │ │ ├── _affinities.tpl │ │ │ │ ├── _capabilities.tpl │ │ │ │ ├── _errors.tpl │ │ │ │ ├── _images.tpl │ │ │ │ ├── _ingress.tpl │ │ │ │ ├── _labels.tpl │ │ │ │ ├── _names.tpl │ │ │ │ ├── _secrets.tpl │ │ │ │ ├── _storage.tpl │ │ │ │ ├── _tplvalues.tpl │ │ │ │ ├── _utils.tpl │ │ │ │ ├── _warnings.tpl │ │ │ │ └── validations │ │ │ │ │ ├── _cassandra.tpl │ │ │ │ │ ├── _mariadb.tpl │ │ │ │ │ ├── _mongodb.tpl │ │ │ │ │ ├── _postgresql.tpl │ │ │ │ │ ├── _redis.tpl │ │ │ │ │ └── _validations.tpl │ │ │ │ └── values.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── api-ingress.yaml │ │ │ ├── distributed │ │ │ │ ├── headless-svc.yaml │ │ │ │ ├── pdb.yaml │ │ │ │ └── statefulset.yaml │ │ │ ├── extra-list.yaml │ │ │ ├── gateway │ │ │ │ ├── deployment.yaml │ │ │ │ ├── hpa.yaml │ │ │ │ └── pdb.yaml │ │ │ ├── ingress.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── provisioning-configmap.yaml │ │ │ ├── provisioning-job.yaml │ │ │ ├── pvc.yaml │ │ │ ├── secrets.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ ├── standalone │ │ │ │ └── deployment.yaml │ │ │ └── tls-secrets.yaml │ │ │ └── values.yaml │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── mongodb-community-operator │ └── 0.7.6 │ │ ├── Kubefile │ │ ├── README.md │ │ ├── charts │ │ └── community-operator │ │ │ ├── Chart.lock │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── charts │ │ │ └── community-operator-crds │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ └── mongodbcommunity.mongodb.com_mongodbcommunity.yaml │ │ │ │ └── values.yaml │ │ │ ├── templates │ │ │ ├── database_roles.yaml │ │ │ ├── mongodbcommunity_cr_with_tls.yaml │ │ │ ├── operator.yaml │ │ │ └── operator_roles.yaml │ │ │ └── values.yaml │ │ └── images │ │ └── shim │ │ └── mongodb-community-operatorImage ├── mongodb-single │ ├── 6.0.6 │ │ ├── Kubefile │ │ └── manifests │ │ │ └── mongo.yaml.tmpl │ └── README.md ├── mssql-server │ ├── 2017-latest │ │ ├── Kubefile │ │ ├── README.md │ │ └── charts │ │ │ └── mssql-server │ │ │ ├── Chart.yaml │ │ │ ├── readme.md │ │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ ├── mssqlconfig.yaml │ │ │ ├── pvc.yaml │ │ │ ├── secret.yaml │ │ │ └── service.yaml │ │ │ └── values.yaml │ ├── 2019-latest │ │ ├── Kubefile │ │ ├── README.md │ │ └── charts │ │ │ └── mssql-server │ │ │ ├── Chart.yaml │ │ │ ├── readme.md │ │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ ├── mssqlconfig.yaml │ │ │ ├── pvc.yaml │ │ │ ├── secret.yaml │ │ │ └── service.yaml │ │ │ └── values.yaml │ └── 2022-latest │ │ ├── Kubefile │ │ ├── README.md │ │ └── charts │ │ └── mssql-server │ │ ├── Chart.yaml │ │ ├── readme.md │ │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── mssqlconfig.yaml │ │ ├── pvc.yaml │ │ ├── secret.yaml │ │ └── service.yaml │ │ └── values.yaml ├── multus-cni │ ├── README.md │ ├── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ ├── init.sh │ │ └── scripts │ │ │ ├── disable.sh │ │ │ └── enable.sh │ ├── v3.9.2 │ │ ├── Kubefile │ │ └── init.sh │ └── v3.9.3 │ │ ├── Kubefile │ │ └── init.sh ├── mysql-operator │ ├── 8.0.23-14.1 │ │ ├── Kubefile │ │ └── manifests │ │ │ ├── mysql-bundle.yaml │ │ │ ├── mysql-cr-minimal.yaml │ │ │ └── mysql-cr.yaml │ ├── 8.0.27-18.1 │ │ ├── Kubefile │ │ ├── charts │ │ │ ├── pxc-db │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── crds │ │ │ │ │ └── crd.yaml │ │ │ │ ├── production-values.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── cluster-secret.yaml │ │ │ │ │ ├── cluster-ssl-secret.yaml │ │ │ │ │ ├── cluster.yaml │ │ │ │ │ └── s3-secret.yaml │ │ │ │ └── values.yaml │ │ │ └── pxc-operator │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── crds │ │ │ │ └── crd.yaml │ │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── namespace.yaml │ │ │ │ ├── role-binding.yaml │ │ │ │ └── role.yaml │ │ │ │ └── values.yaml │ │ └── images │ │ │ └── shim │ │ │ └── pxcImages │ └── README.md ├── nerdctl │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ ├── etc │ │ ├── buildkit.service │ │ ├── buildkit.socket │ │ └── buildkitd.toml │ │ └── init.sh ├── netdata │ └── v1.35.1 │ │ ├── Kubefile │ │ └── charts │ │ └── netdata │ │ ├── Chart.yaml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── sdconfig │ │ └── child.yml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── configmap.yaml │ │ ├── daemonset.yaml │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── persistentvolumeclaim.yaml │ │ ├── psp-clusterrole.yaml │ │ ├── psp-clusterrolebinding.yaml │ │ ├── psp.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ │ └── values.yaml ├── neuvector │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ ├── init.sh │ │ └── scripts │ │ ├── disable.sh │ │ └── enable.sh ├── nextcloud │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── nfs-subdir-external-provisioner │ ├── README.md │ ├── latest │ │ ├── Kubefile │ │ ├── init.sh │ │ └── nfs-subdir-external-provisioner.sh │ └── v4.0.17 │ │ ├── Kubefile │ │ ├── charts │ │ └── nfs-subdir-external-provisioner │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── ci │ │ │ └── test-values.yaml │ │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── deployment.yaml │ │ │ ├── persistentvolume.yaml │ │ │ ├── persistentvolumeclaim.yaml │ │ │ ├── podsecuritypolicy.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── storageclass.yaml │ │ │ └── values.yaml │ │ └── init.sh ├── nginx │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── oceanbase-cluster │ ├── README.md │ └── v4.2.1 │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── oceanbase-dashboard │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── oceanbase-operator │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── openebs-cstor │ ├── README.md │ └── v3.3.0 │ │ ├── Kubefile │ │ ├── charts │ │ └── openebs │ │ │ ├── Chart.lock │ │ │ ├── Chart.yaml │ │ │ ├── OWNERS │ │ │ ├── README.md │ │ │ ├── charts │ │ │ ├── cstor │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.lock │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── charts │ │ │ │ │ └── openebs-ndm │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── crds │ │ │ │ │ │ ├── blockdevice.yaml │ │ │ │ │ │ └── blockdeviceclaim.yaml │ │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── cluster-exporter-service.yaml │ │ │ │ │ │ ├── cluster-exporter.yaml │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── daemonset.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── node-exporter-service.yaml │ │ │ │ │ │ ├── node-exporter.yaml │ │ │ │ │ │ └── rbac.yaml │ │ │ │ │ │ └── values.yaml │ │ │ │ ├── crds │ │ │ │ │ ├── cstorbackup.yaml │ │ │ │ │ ├── cstorcompletedbackup.yaml │ │ │ │ │ ├── cstorpoolcluster.yaml │ │ │ │ │ ├── cstorpoolinstance.yaml │ │ │ │ │ ├── cstorrestore.yaml │ │ │ │ │ ├── cstorvolume.yaml │ │ │ │ │ ├── cstorvolumeattachment.yaml │ │ │ │ │ ├── cstorvolumeconfig.yaml │ │ │ │ │ ├── cstorvolumepolicy.yaml │ │ │ │ │ ├── cstorvolumereplica.yaml │ │ │ │ │ ├── migrationtask.yaml │ │ │ │ │ ├── upgradetask.yaml │ │ │ │ │ ├── volumesnapshot.yaml │ │ │ │ │ ├── volumesnapshotclass.yaml │ │ │ │ │ └── volumesnapshotcontent.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── admission-server.yaml │ │ │ │ │ ├── cleanup-webhook.yaml │ │ │ │ │ ├── csi-controller-rbac.yaml │ │ │ │ │ ├── csi-controller.yaml │ │ │ │ │ ├── csi-driver.yaml │ │ │ │ │ ├── csi-iscsiadm-config.yaml │ │ │ │ │ ├── csi-node-rbac.yaml │ │ │ │ │ ├── csi-node.yaml │ │ │ │ │ ├── cspc-operator.yaml │ │ │ │ │ ├── cvc-operator-service.yaml │ │ │ │ │ ├── cvc-operator.yaml │ │ │ │ │ ├── priority-class.yaml │ │ │ │ │ ├── psp.yaml │ │ │ │ │ ├── rbac.yaml │ │ │ │ │ └── snapshot-class.yaml │ │ │ │ └── values.yaml │ │ │ ├── jiva │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.lock │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── charts │ │ │ │ │ └── localpv-provisioner │ │ │ │ │ │ ├── .helmignore │ │ │ │ │ │ ├── Chart.lock │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── charts │ │ │ │ │ │ └── openebs-ndm │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── crds │ │ │ │ │ │ │ ├── blockdevice.yaml │ │ │ │ │ │ │ └── blockdeviceclaim.yaml │ │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ │ ├── cluster-exporter-service.yaml │ │ │ │ │ │ │ ├── cluster-exporter.yaml │ │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ │ ├── daemonset.yaml │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ ├── node-exporter-service.yaml │ │ │ │ │ │ │ ├── node-exporter.yaml │ │ │ │ │ │ │ └── rbac.yaml │ │ │ │ │ │ │ └── values.yaml │ │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── device-class.yaml │ │ │ │ │ │ ├── hostpath-class.yaml │ │ │ │ │ │ ├── psp.yaml │ │ │ │ │ │ └── rbac.yaml │ │ │ │ │ │ └── values.yaml │ │ │ │ ├── crds │ │ │ │ │ ├── jivavolumepolicy.yaml │ │ │ │ │ ├── jivavolumes.yaml │ │ │ │ │ └── upgradetask.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── csi-controller-rbac.yaml │ │ │ │ │ ├── csi-controller.yaml │ │ │ │ │ ├── csi-driver.yaml │ │ │ │ │ ├── csi-iscsiadm-config.yaml │ │ │ │ │ ├── csi-node-rbac.yaml │ │ │ │ │ ├── csi-node.yaml │ │ │ │ │ ├── default-policy.yaml │ │ │ │ │ ├── default-storageclass.yaml │ │ │ │ │ ├── jiva-operator-rbac.yaml │ │ │ │ │ ├── jiva-operator.yaml │ │ │ │ │ ├── priority-class.yaml │ │ │ │ │ └── psp.yaml │ │ │ │ └── values.yaml │ │ │ ├── localpv-provisioner │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.lock │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── charts │ │ │ │ │ └── openebs-ndm │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── crds │ │ │ │ │ │ ├── blockdevice.yaml │ │ │ │ │ │ └── blockdeviceclaim.yaml │ │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── cluster-exporter-service.yaml │ │ │ │ │ │ ├── cluster-exporter.yaml │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── daemonset.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── node-exporter-service.yaml │ │ │ │ │ │ ├── node-exporter.yaml │ │ │ │ │ │ └── rbac.yaml │ │ │ │ │ │ └── values.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── device-class.yaml │ │ │ │ │ ├── hostpath-class.yaml │ │ │ │ │ ├── psp.yaml │ │ │ │ │ └── rbac.yaml │ │ │ │ └── values.yaml │ │ │ ├── lvm-localpv │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── crds │ │ │ │ │ ├── lvmnode.yaml │ │ │ │ │ ├── lvmsnapshot.yaml │ │ │ │ │ ├── lvmvolume.yaml │ │ │ │ │ ├── volumesnapshotclasses.yaml │ │ │ │ │ ├── volumesnapshotcontents.yaml │ │ │ │ │ └── volumesnapshots.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── csidriver.yaml │ │ │ │ │ ├── lvm-controller.yaml │ │ │ │ │ ├── lvm-node-service.yaml │ │ │ │ │ ├── lvm-node.yaml │ │ │ │ │ ├── priority-class.yaml │ │ │ │ │ ├── psp.yaml │ │ │ │ │ └── rbac.yaml │ │ │ │ └── values.yaml │ │ │ ├── nfs-provisioner │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── kernel-nfs-storageclass.yaml │ │ │ │ │ ├── psp.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ └── values.yaml │ │ │ ├── openebs-ndm │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── crds │ │ │ │ │ ├── blockdevice.yaml │ │ │ │ │ └── blockdeviceclaim.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── cluster-exporter-service.yaml │ │ │ │ │ ├── cluster-exporter.yaml │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── daemonset.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── node-exporter-service.yaml │ │ │ │ │ ├── node-exporter.yaml │ │ │ │ │ └── rbac.yaml │ │ │ │ └── values.yaml │ │ │ └── zfs-localpv │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── crds │ │ │ │ ├── volumesnapshotclasses.yaml │ │ │ │ ├── volumesnapshotcontents.yaml │ │ │ │ ├── volumesnapshots.yaml │ │ │ │ ├── zfsbackup.yaml │ │ │ │ ├── zfsnode.yaml │ │ │ │ ├── zfsrestore.yaml │ │ │ │ ├── zfssnapshot.yaml │ │ │ │ └── zfsvolume.yaml │ │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── configmap.yaml │ │ │ │ ├── csidriver.yaml │ │ │ │ ├── priority-class.yaml │ │ │ │ ├── psp.yaml │ │ │ │ ├── rbac.yaml │ │ │ │ ├── zfs-contoller.yaml │ │ │ │ └── zfs-node.yaml │ │ │ │ └── values.yaml │ │ │ ├── crds │ │ │ ├── blockdevice.yaml │ │ │ └── blockdeviceclaim.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── kyverno │ │ │ │ ├── allow-capabilities.yaml │ │ │ │ ├── allow-host-namespaces.yaml │ │ │ │ ├── allow-host-ports.yaml │ │ │ │ ├── allow-privilege-escalation.yaml │ │ │ │ ├── allow-privileged-containers.yaml │ │ │ │ ├── allow-proc-mount.yaml │ │ │ │ ├── allow-selinux.yaml │ │ │ │ └── require-user-groups.yaml │ │ │ ├── legacy │ │ │ │ ├── cleanup-webhook.yaml │ │ │ │ ├── deployment-admission-server.yaml │ │ │ │ ├── deployment-maya-apiserver.yaml │ │ │ │ ├── deployment-maya-provisioner.yaml │ │ │ │ ├── deployment-maya-snapshot-operator.yaml │ │ │ │ └── service-maya-apiserver.yaml │ │ │ ├── localprovisioner │ │ │ │ ├── deployment-local-provisioner.yaml │ │ │ │ ├── device-class.yaml │ │ │ │ └── hostpath-class.yaml │ │ │ ├── ndm │ │ │ │ ├── cluster-exporter-service.yaml │ │ │ │ ├── cluster-exporter.yaml │ │ │ │ ├── cm-node-disk-manager.yaml │ │ │ │ ├── daemonset-ndm.yaml │ │ │ │ ├── deployment-ndm-operator.yaml │ │ │ │ ├── node-exporter-service.yaml │ │ │ │ └── node-exporter.yaml │ │ │ ├── psp-clusterrole.yaml │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ ├── psp.yaml │ │ │ └── serviceaccount.yaml │ │ │ └── values.yaml │ │ ├── images │ │ └── shim │ │ │ └── openebsImages │ │ └── manifests │ │ ├── openebs-amazonlinux-setup.yaml │ │ └── openebs-ubuntu-setup.yaml ├── openebs-jiva │ ├── README.md │ └── latest │ │ └── init.sh ├── openebs-lvm │ ├── README.md │ ├── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh │ └── v0.8.0 │ │ ├── Kubefile │ │ ├── images │ │ └── shim │ │ │ └── openebsimages │ │ ├── lvm-operator.yaml │ │ └── storageclass.yaml ├── openebs-mayastor │ ├── README.md │ ├── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh │ └── v1.0.4 │ │ ├── init.sh │ │ └── mayastor.sh ├── openebs-nfs │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── openebs │ ├── README.md │ ├── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh │ └── v1.9.0 │ │ ├── Kubefile │ │ ├── images │ │ └── shim │ │ │ └── OpenebsImageList │ │ └── manifests │ │ ├── host-path-sc.yaml │ │ └── openebs-operator.yaml ├── openim │ ├── README.md │ └── errcode │ │ ├── Dockerfile │ │ ├── helm.sh │ │ ├── init.sh │ │ ├── manifests │ │ └── openIM.yaml │ │ └── openIM │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── api-deployment.yaml │ │ ├── api-istio-gw.yaml │ │ ├── api-istio-vs.yaml │ │ ├── api-service.yaml │ │ ├── configmap.yaml │ │ ├── cron_task-deployment.yaml │ │ ├── job-kafka.yaml │ │ ├── minio-api-istio-gw.yaml │ │ ├── minio-api-istio-vs.yaml │ │ ├── minio-istio-gw.yaml │ │ ├── minio-istio-vs.yaml │ │ ├── msg_gateway-deployment.yaml │ │ ├── msg_gateway-istio-gw.yaml │ │ ├── msg_gateway-istio-vs.yaml │ │ ├── msg_gateway-service.yaml │ │ ├── msg_transfer-deployment.yaml │ │ ├── msg_transfer-service.yaml │ │ ├── push-deployment.yaml │ │ ├── push-service.yaml │ │ ├── rpc_auth-deployment.yaml │ │ ├── rpc_auth-service.yaml │ │ ├── rpc_conversation-deployment.yaml │ │ ├── rpc_conversation-service.yaml │ │ ├── rpc_friend-deployment.yaml │ │ ├── rpc_friend-service.yaml │ │ ├── rpc_group-deployment.yaml │ │ ├── rpc_group-service.yaml │ │ ├── rpc_msg-deployment.yaml │ │ ├── rpc_msg-service.yaml │ │ ├── rpc_third-deployment.yaml │ │ ├── rpc_third-service.yaml │ │ ├── rpc_user-deployment.yaml │ │ ├── rpc_user-service.yaml │ │ └── serviceaccount.yaml │ │ └── values.yaml ├── openkruise │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── openobserve │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── opentelemetry-collector │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── opentelemetry-demo │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── opentelemetry-operator │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── operator-lifecycle-manager │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── init.sh │ │ └── install.sh ├── oracle-mysql-operator │ ├── 8.0.30-2.0.6 │ │ ├── Kubefile │ │ ├── charts │ │ │ ├── mysql-innodbcluster │ │ │ │ ├── .gitignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── crds │ │ │ │ │ └── .gitignore │ │ │ │ ├── templates │ │ │ │ │ ├── cluster_secret.yaml │ │ │ │ │ ├── deployment_cluster.yaml │ │ │ │ │ └── service_account_cluster.yaml │ │ │ │ └── values.yaml │ │ │ └── mysql-operator │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── crds │ │ │ │ └── crd.yaml │ │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── cluster_kopf_keepering.yaml │ │ │ │ ├── cluster_role_binding_operator.yaml │ │ │ │ ├── cluster_role_operator.yaml │ │ │ │ ├── cluster_role_sidecar.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── service_account_operator.yaml │ │ │ │ └── values.yaml │ │ ├── download.sh │ │ ├── images │ │ │ └── shim │ │ │ │ └── mysql │ │ └── values │ │ │ └── oracle-mysql-cluster-values.yaml │ └── README.md ├── ot-redis-cluster │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── percona-server-mongodb-operator │ ├── README.md │ └── main │ │ ├── Kubefile │ │ ├── images │ │ └── shim │ │ │ └── mongo-operator │ │ ├── minimal-cluster.yaml │ │ └── operator.yaml ├── piraeus-operator │ ├── README.md │ └── v2.1.1 │ │ ├── Kubefile │ │ ├── images │ │ └── shim │ │ │ └── piraeus-operator-images.txt │ │ ├── init.sh │ │ ├── manifests │ │ ├── linstorcluster.yaml │ │ ├── linstorsatelliteconfiguration.yaml.tmpl │ │ └── piraeus-storageclass.yaml.tmpl │ │ └── piraeus-operator.sh ├── podman │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── portainer │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── prometheus-adapter │ └── latest │ │ └── init.sh ├── prometheus-blackbox-exporter │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── prometheus-node-exporter │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── prometheus-operator │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── prometheus │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── promtail │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── prow │ └── starter-s3.yaml ├── pulsar │ ├── README.md │ ├── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh │ └── v2.10.2 │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── rabbitmq-cluster-operator │ └── 2.0.0 │ │ ├── Kubefile │ │ ├── README.md │ │ └── manifests │ │ ├── cluster-operator.yml │ │ └── rabbitmq.yaml ├── rainbond │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── rancher │ ├── README.md │ ├── latest │ │ └── init.sh │ ├── v2.6.6 │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── images │ │ │ └── shim │ │ │ │ └── rancherImages │ │ └── rancher │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── scripts │ │ │ └── post-delete-hook.sh │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── clusterRoleBinding.yaml │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ ├── issuer-letsEncrypt.yaml │ │ │ ├── issuer-rancher.yaml │ │ │ ├── post-delete-hook-cluster-role-binding.yaml │ │ │ ├── post-delete-hook-cluster-role.yaml │ │ │ ├── post-delete-hook-config-map.yaml │ │ │ ├── post-delete-hook-job.yaml │ │ │ ├── post-delete-hook-psp.yaml │ │ │ ├── post-delete-hook-service-account.yaml │ │ │ ├── pvc.yaml │ │ │ ├── secret.yaml │ │ │ ├── service.yaml │ │ │ └── serviceAccount.yaml │ │ │ └── values.yaml │ ├── v2.6.7 │ │ ├── Kubefile │ │ ├── charts │ │ │ └── rancher │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── scripts │ │ │ │ └── post-delete-hook.sh │ │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── clusterRoleBinding.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── issuer-letsEncrypt.yaml │ │ │ │ ├── issuer-rancher.yaml │ │ │ │ ├── post-delete-hook-cluster-role-binding.yaml │ │ │ │ ├── post-delete-hook-cluster-role.yaml │ │ │ │ ├── post-delete-hook-config-map.yaml │ │ │ │ ├── post-delete-hook-job.yaml │ │ │ │ ├── post-delete-hook-psp.yaml │ │ │ │ ├── post-delete-hook-service-account.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ ├── secret.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── serviceAccount.yaml │ │ │ │ └── values.yaml │ │ └── images │ │ │ └── shim │ │ │ └── rancher-images.txt │ ├── v2.6.8 │ │ ├── Kubefile │ │ ├── charts │ │ │ └── rancher │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── scripts │ │ │ │ └── post-delete-hook.sh │ │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── clusterRoleBinding.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── issuer-letsEncrypt.yaml │ │ │ │ ├── issuer-rancher.yaml │ │ │ │ ├── post-delete-hook-cluster-role-binding.yaml │ │ │ │ ├── post-delete-hook-cluster-role.yaml │ │ │ │ ├── post-delete-hook-config-map.yaml │ │ │ │ ├── post-delete-hook-job.yaml │ │ │ │ ├── post-delete-hook-psp.yaml │ │ │ │ ├── post-delete-hook-service-account.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ ├── secret.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── serviceAccount.yaml │ │ │ │ └── values.yaml │ │ └── images │ │ │ └── shim │ │ │ └── rancher-images.txt │ └── v2.6.9 │ │ ├── Kubefile │ │ ├── charts │ │ └── rancher │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── scripts │ │ │ └── post-delete-hook.sh │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── clusterRoleBinding.yaml │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ ├── issuer-letsEncrypt.yaml │ │ │ ├── issuer-rancher.yaml │ │ │ ├── post-delete-hook-cluster-role-binding.yaml │ │ │ ├── post-delete-hook-cluster-role.yaml │ │ │ ├── post-delete-hook-config-map.yaml │ │ │ ├── post-delete-hook-job.yaml │ │ │ ├── post-delete-hook-psp.yaml │ │ │ ├── post-delete-hook-service-account.yaml │ │ │ ├── pvc.yaml │ │ │ ├── secret.yaml │ │ │ ├── service.yaml │ │ │ └── serviceAccount.yaml │ │ │ └── values.yaml │ │ └── images │ │ └── shim │ │ └── rancher-images.txt ├── redis-exporter │ ├── README.md │ └── latest │ │ ├── Dockerfile │ │ ├── init.sh │ │ └── manifests │ │ ├── redis-exporter-grafana.json │ │ └── redis-exporter.yaml ├── redis-operator │ ├── 3.1.4 │ │ ├── Kubefile │ │ ├── images │ │ │ └── shim │ │ │ │ └── RedisImageList │ │ ├── manifests │ │ │ └── redis-operator-basic.yaml │ │ └── redis-operator │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── crds │ │ │ └── databases.spotahome.com_redisfailovers.yaml │ │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── _versions.tpl │ │ │ ├── deployment.yaml │ │ │ ├── monitoring.yaml │ │ │ ├── private-registry.yaml │ │ │ ├── service-account.yaml │ │ │ └── service.yaml │ │ │ └── values.yaml │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── init.sh │ │ └── manifests │ │ └── basic.yaml ├── registry │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── init.sh │ │ └── registry │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── check-hook.yaml │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── monitor.yaml │ │ ├── pvc.yaml │ │ ├── secret-user.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── tls.yaml │ │ └── values.yaml ├── rocketmq-operator │ └── 4.5.0 │ │ ├── Kubefile │ │ ├── README.md │ │ ├── images │ │ └── shim │ │ │ └── rocketmqImage │ │ └── manifests │ │ ├── deploy │ │ ├── crds │ │ │ ├── rocketmq.apache.org_brokers.yaml │ │ │ ├── rocketmq.apache.org_consoles.yaml │ │ │ ├── rocketmq.apache.org_nameservices.yaml │ │ │ └── rocketmq.apache.org_topictransfers.yaml │ │ ├── operator.yaml │ │ ├── role.yaml │ │ ├── role_binding.yaml │ │ ├── service_account.yaml │ │ └── storage │ │ │ ├── deploy-storage-class.sh │ │ │ ├── hostpath │ │ │ └── prepare-host-path.sh │ │ │ ├── nfs-client-class.yaml │ │ │ ├── nfs-client-sa.yaml │ │ │ ├── nfs-client.yaml │ │ │ └── remove-storage-class.sh │ │ └── example │ │ ├── rocketmq_v1alpha1_broker_cr.yaml │ │ ├── rocketmq_v1alpha1_cluster_service.yaml │ │ ├── rocketmq_v1alpha1_console_cr.yaml │ │ ├── rocketmq_v1alpha1_nameservice_cr.yaml │ │ ├── rocketmq_v1alpha1_rocketmq_cluster.yaml │ │ └── rocketmq_v1alpha1_topictransfer_cr.yaml ├── rook │ ├── latest │ │ └── init.sh │ ├── v1.10.2 │ │ ├── Kubefile │ │ ├── README.md │ │ ├── charts │ │ │ ├── rook-ceph-cluster │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── charts │ │ │ │ │ └── library │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ └── templates │ │ │ │ │ │ ├── _cluster-clusterrolebinding.tpl │ │ │ │ │ │ ├── _cluster-monitoring.tpl │ │ │ │ │ │ ├── _cluster-psp.tpl │ │ │ │ │ │ ├── _cluster-role.tpl │ │ │ │ │ │ ├── _cluster-rolebinding.tpl │ │ │ │ │ │ ├── _cluster-serviceaccount.tpl │ │ │ │ │ │ ├── _imagepullsecret.tpl │ │ │ │ │ │ ├── _recommended-labels.tpl │ │ │ │ │ │ └── _suffix-cluster-namespace.tpl │ │ │ │ ├── prometheus │ │ │ │ │ ├── externalrules.yaml │ │ │ │ │ └── localrules.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── cephblockpool.yaml │ │ │ │ │ ├── cephcluster.yaml │ │ │ │ │ ├── cephfilesystem.yaml │ │ │ │ │ ├── cephobjectstore.yaml │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── prometheusrules.yaml │ │ │ │ │ ├── rbac.yaml │ │ │ │ │ └── volumesnapshotclass.yaml │ │ │ │ └── values.yaml │ │ │ └── rook-ceph │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── charts │ │ │ │ └── library │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ └── templates │ │ │ │ │ ├── _cluster-clusterrolebinding.tpl │ │ │ │ │ ├── _cluster-monitoring.tpl │ │ │ │ │ ├── _cluster-psp.tpl │ │ │ │ │ ├── _cluster-role.tpl │ │ │ │ │ ├── _cluster-rolebinding.tpl │ │ │ │ │ ├── _cluster-serviceaccount.tpl │ │ │ │ │ ├── _imagepullsecret.tpl │ │ │ │ │ ├── _recommended-labels.tpl │ │ │ │ │ └── _suffix-cluster-namespace.tpl │ │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── cluster-rbac.yaml │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── psp.yaml │ │ │ │ ├── resources.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ │ └── values.yaml │ │ └── images │ │ │ └── shim │ │ │ └── rookImages │ └── v1.9.8 │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── images │ │ └── shim │ │ │ └── rookImages │ │ ├── rook-ceph-cluster │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── charts │ │ │ └── library │ │ │ │ ├── Chart.yaml │ │ │ │ └── templates │ │ │ │ ├── _cluster-clusterrolebinding.tpl │ │ │ │ ├── _cluster-monitoring.tpl │ │ │ │ ├── _cluster-psp.tpl │ │ │ │ ├── _cluster-role.tpl │ │ │ │ ├── _cluster-rolebinding.tpl │ │ │ │ ├── _cluster-serviceaccount.tpl │ │ │ │ ├── _imagepullsecret.tpl │ │ │ │ ├── _recommended-labels.tpl │ │ │ │ └── _suffix-cluster-namespace.tpl │ │ ├── prometheus │ │ │ ├── externalrules.yaml │ │ │ └── localrules.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── cephblockpool.yaml │ │ │ ├── cephcluster.yaml │ │ │ ├── cephfilesystem.yaml │ │ │ ├── cephobjectstore.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ ├── prometheusrules.yaml │ │ │ ├── rbac.yaml │ │ │ └── volumesnapshotclass.yaml │ │ └── values.yaml │ │ └── rook-ceph │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── charts │ │ └── library │ │ │ ├── Chart.yaml │ │ │ └── templates │ │ │ ├── _cluster-clusterrolebinding.tpl │ │ │ ├── _cluster-monitoring.tpl │ │ │ ├── _cluster-psp.tpl │ │ │ ├── _cluster-role.tpl │ │ │ ├── _cluster-rolebinding.tpl │ │ │ ├── _cluster-serviceaccount.tpl │ │ │ ├── _imagepullsecret.tpl │ │ │ ├── _recommended-labels.tpl │ │ │ └── _suffix-cluster-namespace.tpl │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── cluster-rbac.yaml │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── psp.yaml │ │ ├── resources.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ └── serviceaccount.yaml │ │ └── values.yaml ├── runwasi-wasmedge │ ├── README.md │ └── latest │ │ ├── build_arch │ │ ├── imageslist │ │ ├── init.sh │ │ └── install.sh ├── sealos-patch │ └── latest │ │ ├── init.sh │ │ └── upgrade.sh ├── sealos │ └── latest │ │ └── init.sh ├── seaweedfs-csi-driver │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── seaweedfs │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── signoz │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── skopeo │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── skywalking │ └── 8.8.1 │ │ ├── Dockerfile │ │ ├── images │ │ └── shim │ │ │ └── skywalkingImages │ │ └── skywalking │ │ ├── .helmignore │ │ ├── Chart.lock │ │ ├── Chart.yaml │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── charts │ │ └── elasticsearch │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── examples │ │ │ ├── 6.x │ │ │ │ ├── Makefile │ │ │ │ ├── test │ │ │ │ │ └── goss.yaml │ │ │ │ └── values.yaml │ │ │ ├── config │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── test │ │ │ │ │ └── goss.yaml │ │ │ │ ├── values.yaml │ │ │ │ └── watcher_encryption_key │ │ │ ├── default │ │ │ │ ├── Makefile │ │ │ │ ├── rolling_upgrade.sh │ │ │ │ └── test │ │ │ │ │ └── goss.yaml │ │ │ ├── docker-for-mac │ │ │ │ ├── Makefile │ │ │ │ └── values.yaml │ │ │ ├── kubernetes-kind │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ └── values.yaml │ │ │ ├── microk8s │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ └── values.yaml │ │ │ ├── migration │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── client.yml │ │ │ │ ├── data.yml │ │ │ │ └── master.yml │ │ │ ├── minikube │ │ │ │ ├── Makefile │ │ │ │ └── values.yaml │ │ │ ├── multi │ │ │ │ ├── Makefile │ │ │ │ ├── data.yml │ │ │ │ ├── master.yml │ │ │ │ └── test │ │ │ │ │ └── goss.yaml │ │ │ ├── openshift │ │ │ │ ├── Makefile │ │ │ │ ├── test │ │ │ │ │ └── goss.yaml │ │ │ │ └── values.yaml │ │ │ ├── oss │ │ │ │ ├── Makefile │ │ │ │ ├── test │ │ │ │ │ └── goss.yaml │ │ │ │ └── values.yaml │ │ │ ├── security │ │ │ │ ├── Makefile │ │ │ │ ├── security.yml │ │ │ │ └── test │ │ │ │ │ └── goss.yaml │ │ │ └── upgrade │ │ │ │ ├── Makefile │ │ │ │ └── test │ │ │ │ └── goss.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── ingress.yaml │ │ │ ├── poddisruptionbudget.yaml │ │ │ ├── podsecuritypolicy.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── statefulset.yaml │ │ │ └── test │ │ │ │ └── test-elasticsearch-health.yaml │ │ │ └── values.yaml │ │ ├── files │ │ └── conf.d │ │ │ └── README.md │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── es-init.job.yaml │ │ ├── istio-adapter │ │ │ ├── adapter.yaml │ │ │ ├── handler.yaml │ │ │ ├── instance.yaml │ │ │ └── rule.yaml │ │ ├── oap-clusterrole.yaml │ │ ├── oap-clusterrolebinding.yaml │ │ ├── oap-cm-override.yaml │ │ ├── oap-configmap.yaml │ │ ├── oap-deployment.yaml │ │ ├── oap-role.yaml │ │ ├── oap-rolebinding.yaml │ │ ├── oap-serviceaccount.yaml │ │ ├── oap-svc.yaml │ │ ├── satellite-cm-override.yaml │ │ ├── satellite-deployment.yaml │ │ ├── satellite-role.yaml │ │ ├── satellite-rolebinding.yaml │ │ ├── satellite-serviceaccount.yaml │ │ ├── satellite-svc.yaml │ │ ├── ui-deployment.yaml │ │ ├── ui-ingress.yaml │ │ └── ui-svc.yaml │ │ ├── values-es6.yaml │ │ ├── values-es7.yaml │ │ ├── values-my-es.yaml │ │ └── values.yaml ├── sonarqube │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── spinnaker-operator │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ ├── init.sh │ │ └── manifests │ │ ├── spinnakerIngress.yaml.tmpl │ │ └── spinnakerService.yaml.tmpl ├── spinnaker │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ ├── init.sh │ │ ├── manifests │ │ ├── configmap.yaml │ │ ├── halyard_deployment.yaml.tmpl │ │ ├── spinaccount.yaml │ │ └── spinnakerIngress.yaml.tmpl │ │ └── scripts │ │ ├── deploy.sh │ │ └── get_bom.sh ├── sriov-network-operator │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ ├── init.sh │ │ └── scripts │ │ ├── disable.sh │ │ └── enable.sh ├── stakater-reloader │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── tekton │ ├── README.md │ ├── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh │ └── v0.61.0 │ │ ├── Kubefile │ │ └── init.sh ├── teleport │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── telepresence │ ├── README.md │ └── latest │ │ └── init.sh ├── tianji │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── tidb-operator │ ├── README.md │ ├── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh │ └── v1.3.7 │ │ ├── Kubefile │ │ ├── charts │ │ ├── tidb-cluster │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── config │ │ │ │ │ ├── _drainer-config.tpl │ │ │ │ │ ├── _grafana-dashboard.tpl │ │ │ │ │ ├── _prometheus-config.tpl │ │ │ │ │ └── _pump-config.tpl │ │ │ │ ├── discovery-deployment.yaml │ │ │ │ ├── discovery-rbac.yaml │ │ │ │ ├── discovery-service.yaml │ │ │ │ ├── drainer-configmap-rollout.yaml │ │ │ │ ├── drainer-configmap.yaml │ │ │ │ ├── drainer-service.yaml │ │ │ │ ├── drainer-statefulset.yaml │ │ │ │ ├── monitor-configmap.yaml │ │ │ │ ├── monitor-deployment.yaml │ │ │ │ ├── monitor-pvc.yaml │ │ │ │ ├── monitor-rbac.yaml │ │ │ │ ├── monitor-secret.yaml │ │ │ │ ├── monitor-service.yaml │ │ │ │ ├── pd-configmap.yaml │ │ │ │ ├── pump-configmap-rollout.yaml │ │ │ │ ├── pump-configmap.yaml │ │ │ │ ├── pump-service.yaml │ │ │ │ ├── pump-statefulset.yaml │ │ │ │ ├── scheduled-backup-cronjob.yaml │ │ │ │ ├── scheduled-backup-pvc.yaml │ │ │ │ ├── scripts │ │ │ │ │ ├── _initialize_tidb_users.py.tpl │ │ │ │ │ ├── _start_drainer.sh.tpl │ │ │ │ │ ├── _start_pd.sh.tpl │ │ │ │ │ ├── _start_pump.sh.tpl │ │ │ │ │ ├── _start_scheduled_backup.sh.tpl │ │ │ │ │ ├── _start_tidb.sh.tpl │ │ │ │ │ └── _start_tikv.sh.tpl │ │ │ │ ├── tidb-cluster.yaml │ │ │ │ ├── tidb-configmap-rollout.yaml │ │ │ │ ├── tidb-configmap.yaml │ │ │ │ ├── tidb-initializer-job.yaml │ │ │ │ ├── tidb-service.yaml │ │ │ │ ├── tikv-configmap.yaml │ │ │ │ ├── tikv-importer-configmap.yaml │ │ │ │ ├── tikv-importer-service.yaml │ │ │ │ └── tikv-importer-statefulset.yaml │ │ │ └── values.yaml │ │ └── tidb-operator │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── admission │ │ │ │ ├── admission-webhook-deployment.yaml │ │ │ │ ├── admission-webhook-rbac.yaml │ │ │ │ ├── admission-webhook-registration.yaml │ │ │ │ ├── admission-webhook-service.yaml │ │ │ │ └── pre-delete-job.yaml │ │ │ ├── advanced-statefulset-deployment.yaml │ │ │ ├── advanced-statefulset-rbac.yaml │ │ │ ├── config │ │ │ │ ├── _scheduler-config-yaml.tpl │ │ │ │ └── _scheduler-policy-json.tpl │ │ │ ├── controller-manager-deployment.yaml │ │ │ ├── controller-manager-rbac.yaml │ │ │ ├── scheduler-config-configmap.yaml │ │ │ ├── scheduler-deployment.yaml │ │ │ ├── scheduler-policy-configmap.yaml │ │ │ └── scheduler-rbac.yaml │ │ │ └── values.yaml │ │ ├── images │ │ └── shim │ │ │ └── tidbImages │ │ └── manifests │ │ └── crd.yaml ├── tomcat │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── traefik │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── trivy-operator │ ├── README.md │ ├── latest │ │ └── init.sh │ └── v0.5.0 │ │ ├── Kubefile │ │ ├── charts │ │ └── trivy-operator │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── crds │ │ │ ├── aquasecurity.github.io_clusterconfigauditreports.yaml │ │ │ ├── aquasecurity.github.io_clusterrbacassessmentreports.yaml │ │ │ ├── aquasecurity.github.io_configauditreports.yaml │ │ │ ├── aquasecurity.github.io_exposedsecretreports.yaml │ │ │ ├── aquasecurity.github.io_rbacassessmentreports.yaml │ │ │ └── aquasecurity.github.io_vulnerabilityreports.yaml │ │ │ ├── generated │ │ │ └── role.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── config.yaml │ │ │ ├── deployment.yaml │ │ │ ├── leader_election.yaml │ │ │ ├── ns.yaml │ │ │ ├── policies.yaml │ │ │ ├── rbac.yaml │ │ │ ├── service.yaml │ │ │ └── servicemonitor.yaml │ │ │ └── values.yaml │ │ ├── images │ │ └── shim │ │ │ └── trivyImages │ │ └── init.sh ├── uptime-kuma │ ├── README.md │ └── latest │ │ ├── .gitignore │ │ ├── init.sh │ │ └── uptime-kuma │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── pvc.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ │ └── values.yaml ├── vector-operator │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── vector │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── velero │ └── v1.9.1 │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── images │ │ └── shim │ │ │ └── veleroImage │ │ └── init.sh ├── vertical-pod-autoscaler │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── victoria-metrics-k8s-stack │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── victoria-metrics-operator │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── victoria-metrics-single │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── weave-gitops │ ├── README.md │ └── latest │ │ └── init.sh ├── wiki-js │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ └── init.sh ├── wordpress │ ├── README.md │ ├── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh │ └── v6.0.1 │ │ ├── Kubefile │ │ └── charts │ │ └── wordpress │ │ ├── .helmignore │ │ ├── Chart.lock │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── charts │ │ ├── common │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── _affinities.tpl │ │ │ │ ├── _capabilities.tpl │ │ │ │ ├── _errors.tpl │ │ │ │ ├── _images.tpl │ │ │ │ ├── _ingress.tpl │ │ │ │ ├── _labels.tpl │ │ │ │ ├── _names.tpl │ │ │ │ ├── _secrets.tpl │ │ │ │ ├── _storage.tpl │ │ │ │ ├── _tplvalues.tpl │ │ │ │ ├── _utils.tpl │ │ │ │ ├── _warnings.tpl │ │ │ │ └── validations │ │ │ │ │ ├── _cassandra.tpl │ │ │ │ │ ├── _mariadb.tpl │ │ │ │ │ ├── _mongodb.tpl │ │ │ │ │ ├── _mysql.tpl │ │ │ │ │ ├── _postgresql.tpl │ │ │ │ │ ├── _redis.tpl │ │ │ │ │ └── _validations.tpl │ │ │ └── values.yaml │ │ ├── mariadb │ │ │ ├── .helmignore │ │ │ ├── Chart.lock │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── charts │ │ │ │ └── common │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── README.md │ │ │ │ │ ├── templates │ │ │ │ │ ├── _affinities.tpl │ │ │ │ │ ├── _capabilities.tpl │ │ │ │ │ ├── _errors.tpl │ │ │ │ │ ├── _images.tpl │ │ │ │ │ ├── _ingress.tpl │ │ │ │ │ ├── _labels.tpl │ │ │ │ │ ├── _names.tpl │ │ │ │ │ ├── _secrets.tpl │ │ │ │ │ ├── _storage.tpl │ │ │ │ │ ├── _tplvalues.tpl │ │ │ │ │ ├── _utils.tpl │ │ │ │ │ ├── _warnings.tpl │ │ │ │ │ └── validations │ │ │ │ │ │ ├── _cassandra.tpl │ │ │ │ │ │ ├── _mariadb.tpl │ │ │ │ │ │ ├── _mongodb.tpl │ │ │ │ │ │ ├── _mysql.tpl │ │ │ │ │ │ ├── _postgresql.tpl │ │ │ │ │ │ ├── _redis.tpl │ │ │ │ │ │ └── _validations.tpl │ │ │ │ │ └── values.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── extra-list.yaml │ │ │ │ ├── networkpolicy-egress.yaml │ │ │ │ ├── primary │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── initialization-configmap.yaml │ │ │ │ │ ├── networkpolicy-ingress.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── statefulset.yaml │ │ │ │ │ └── svc.yaml │ │ │ │ ├── prometheusrules.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── secondary │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── networkpolicy-ingress.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── statefulset.yaml │ │ │ │ │ └── svc.yaml │ │ │ │ ├── secrets.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ ├── values.schema.json │ │ │ └── values.yaml │ │ └── memcached │ │ │ ├── .helmignore │ │ │ ├── Chart.lock │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── charts │ │ │ └── common │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── templates │ │ │ │ ├── _affinities.tpl │ │ │ │ ├── _capabilities.tpl │ │ │ │ ├── _errors.tpl │ │ │ │ ├── _images.tpl │ │ │ │ ├── _ingress.tpl │ │ │ │ ├── _labels.tpl │ │ │ │ ├── _names.tpl │ │ │ │ ├── _secrets.tpl │ │ │ │ ├── _storage.tpl │ │ │ │ ├── _tplvalues.tpl │ │ │ │ ├── _utils.tpl │ │ │ │ ├── _warnings.tpl │ │ │ │ └── validations │ │ │ │ │ ├── _cassandra.tpl │ │ │ │ │ ├── _mariadb.tpl │ │ │ │ │ ├── _mongodb.tpl │ │ │ │ │ ├── _mysql.tpl │ │ │ │ │ ├── _postgresql.tpl │ │ │ │ │ ├── _redis.tpl │ │ │ │ │ └── _validations.tpl │ │ │ │ └── values.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ ├── extra-list.yaml │ │ │ ├── hpa.yaml │ │ │ ├── metrics-svc.yaml │ │ │ ├── pdb.yaml │ │ │ ├── secrets.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── statefulset.yaml │ │ │ └── values.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── config-secret.yaml │ │ ├── deployment.yaml │ │ ├── externaldb-secrets.yaml │ │ ├── extra-list.yaml │ │ ├── hpa.yaml │ │ ├── httpd-configmap.yaml │ │ ├── ingress.yaml │ │ ├── metrics-svc.yaml │ │ ├── networkpolicy-backend-ingress.yaml │ │ ├── networkpolicy-egress.yaml │ │ ├── networkpolicy-ingress.yaml │ │ ├── pdb.yaml │ │ ├── postinit-configmap.yaml │ │ ├── pvc.yaml │ │ ├── secrets.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ ├── svc.yaml │ │ └── tls-secrets.yaml │ │ ├── values.schema.json │ │ └── values.yaml ├── zabbix-agent │ ├── README.md │ └── v7.0.0 │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── zabbix-server │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── entrypoint.sh │ │ └── init.sh ├── zadig │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── init.sh │ │ └── install.sh ├── zalando-postgres-operator │ ├── v1.8.2 │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── charts │ │ │ ├── postgres-operator-ui │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── index.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ └── values.yaml │ │ │ └── postgres-operator │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── crds │ │ │ │ ├── operatorconfigurations.yaml │ │ │ │ ├── postgresqls.yaml │ │ │ │ └── postgresteams.yaml │ │ │ │ ├── index.yaml │ │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── clusterrole-postgres-pod.yaml │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── operatorconfiguration.yaml │ │ │ │ ├── postgres-pod-priority-class.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── user-facing-clusterroles.yaml │ │ │ │ └── values.yaml │ │ ├── images │ │ │ └── shim │ │ │ │ └── postgresImage │ │ └── manifests │ │ │ └── minimal-postgres-manifest.yaml │ └── v1.9.0 │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── charts │ │ └── postgres-operator │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── crds │ │ │ ├── operatorconfigurations.yaml │ │ │ ├── postgresqls.yaml │ │ │ └── postgresteams.yaml │ │ │ ├── index.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── clusterrole-postgres-pod.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── operatorconfiguration.yaml │ │ │ ├── postgres-pod-priority-class.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── user-facing-clusterroles.yaml │ │ │ └── values.yaml │ │ └── manifests │ │ └── minimal-postgres-manifest.yaml ├── zookeeper-operator │ ├── README.md │ └── latest │ │ ├── Kubefile │ │ ├── init.sh │ │ └── install.sh ├── zot-upload │ └── main │ │ ├── Kubefile │ │ └── for-range.sh └── zot │ ├── README.md │ ├── latest │ ├── Kubefile │ ├── entrypoint.sh │ └── init.sh │ └── v1.4.3 │ ├── Kubefile │ ├── anonymousPolicy.yaml │ ├── default.yaml │ ├── init.sh │ └── zot │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── check-hook.yaml │ ├── configmap.yaml │ ├── deployment.yaml │ ├── monitor.yaml │ ├── pvc.yaml │ ├── secret-user.yaml │ ├── secret.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ └── tls.yaml │ └── values.yaml ├── cloud └── docs │ └── labring │ ├── affine │ ├── README.md │ └── metadata │ │ └── config.yaml │ ├── apisix │ ├── README.md │ └── metadata │ │ └── config.yaml │ ├── argocd │ ├── README.md │ └── metadata │ │ └── config.yaml │ ├── bitnami-mongodb-sharded │ ├── README.md │ └── metadata │ │ └── config.yaml │ ├── bitnami-mongodb │ ├── README.md │ └── metadata │ │ └── config.yaml │ ├── calico │ ├── README.md │ └── metadata │ │ └── config.yaml │ └── cert-manager │ ├── README.md │ └── matedata │ └── config.yaml ├── dockerimages ├── adminer │ └── v4.8.1 │ │ ├── Dockerfile │ │ ├── Readme.md │ │ ├── plugins-enabled │ │ ├── AdminerCollations.php │ │ ├── AdminerJsonPreview.php │ │ ├── AdminerSimpleMenu.php │ │ └── LoginServer.php │ │ ├── plugins │ │ └── ClickLogin.php │ │ └── themes │ │ └── adminer.css ├── casbin │ └── main │ │ ├── Dockerfile │ │ ├── default.conf │ │ └── init.sh ├── chatbot-ui │ └── main │ │ └── init.sh ├── cni-plugins │ ├── latest │ │ ├── Dockerfile │ │ └── init.sh │ └── v1.1.1 │ │ ├── Dockerfile │ │ └── init.sh ├── curl-kubectl │ ├── latest │ │ └── Dockerfile │ └── v1.31 │ │ └── Dockerfile ├── kubeblocks-tools │ ├── 0.5.2 │ │ └── Dockerfile │ └── file-migration │ │ ├── README.md │ │ ├── fileMigration.dockerfile │ │ └── migration.sh ├── kuboard │ └── v2 │ │ └── init.sh ├── php-custom │ └── 7.2-fpm │ │ ├── Dockerfile │ │ └── Readme.md ├── terminal │ └── latest │ │ ├── Dockerfile │ │ ├── scripts │ │ ├── start-terminal.sh │ │ └── ttyd-kubectl.sh │ │ └── vim │ │ ├── .vim │ │ ├── autoload │ │ │ └── plug.vim │ │ ├── colors │ │ │ └── molokai.vim │ │ └── plugged │ │ │ ├── neocomplete.vim │ │ │ ├── .github │ │ │ │ └── ISSUE_TEMPLATE.md │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── README.md │ │ │ ├── autoload │ │ │ │ ├── neocomplete.vim │ │ │ │ ├── neocomplete │ │ │ │ │ ├── async_cache.vim │ │ │ │ │ ├── cache.vim │ │ │ │ │ ├── commands.vim │ │ │ │ │ ├── complete.vim │ │ │ │ │ ├── context_filetype.vim │ │ │ │ │ ├── custom.vim │ │ │ │ │ ├── filters.vim │ │ │ │ │ ├── filters │ │ │ │ │ │ ├── converter_abbr.vim │ │ │ │ │ │ ├── converter_add_paren.vim │ │ │ │ │ │ ├── converter_case.vim │ │ │ │ │ │ ├── converter_delimiter.vim │ │ │ │ │ │ ├── converter_disable_abbr.vim │ │ │ │ │ │ ├── converter_remove_last_paren.vim │ │ │ │ │ │ ├── converter_remove_overlap.vim │ │ │ │ │ │ ├── matcher_fuzzy.vim │ │ │ │ │ │ ├── matcher_head.vim │ │ │ │ │ │ ├── matcher_length.vim │ │ │ │ │ │ ├── matcher_nothing.vim │ │ │ │ │ │ ├── sorter_filename.vim │ │ │ │ │ │ ├── sorter_length.vim │ │ │ │ │ │ ├── sorter_rank.vim │ │ │ │ │ │ └── sorter_word.vim │ │ │ │ │ ├── handler.vim │ │ │ │ │ ├── helper.vim │ │ │ │ │ ├── init.vim │ │ │ │ │ ├── mappings.vim │ │ │ │ │ ├── sources │ │ │ │ │ │ ├── buffer.vim │ │ │ │ │ │ ├── dictionary.vim │ │ │ │ │ │ ├── file.vim │ │ │ │ │ │ ├── member.vim │ │ │ │ │ │ ├── omni.vim │ │ │ │ │ │ └── tag.vim │ │ │ │ │ ├── util.vim │ │ │ │ │ └── variables.vim │ │ │ │ ├── unite │ │ │ │ │ └── sources │ │ │ │ │ │ └── neocomplete.vim │ │ │ │ ├── vital.vim │ │ │ │ └── vital │ │ │ │ │ ├── _neocomplete.vim │ │ │ │ │ ├── _neocomplete │ │ │ │ │ ├── Data │ │ │ │ │ │ ├── List.vim │ │ │ │ │ │ └── String.vim │ │ │ │ │ ├── Prelude.vim │ │ │ │ │ ├── Process.vim │ │ │ │ │ └── System │ │ │ │ │ │ └── Cache │ │ │ │ │ │ └── Deprecated.vim │ │ │ │ │ ├── neocomplete.vim │ │ │ │ │ └── neocomplete.vital │ │ │ ├── doc │ │ │ │ └── neocomplete.txt │ │ │ ├── plugin │ │ │ │ ├── neocomplete.vim │ │ │ │ └── neocomplete │ │ │ │ │ ├── buffer.vim │ │ │ │ │ ├── dictionary.vim │ │ │ │ │ ├── member.vim │ │ │ │ │ └── tag.vim │ │ │ └── test │ │ │ │ └── neocomplete.vim │ │ │ ├── nerdcommenter │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── doc │ │ │ │ └── NERD_commenter.txt │ │ │ └── plugin │ │ │ │ └── NERD_commenter.vim │ │ │ ├── nerdtree │ │ │ ├── .github │ │ │ │ └── ISSUE_TEMPLATE.md │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG │ │ │ ├── LICENCE │ │ │ ├── README.markdown │ │ │ ├── autoload │ │ │ │ ├── nerdtree.vim │ │ │ │ └── nerdtree │ │ │ │ │ └── ui_glue.vim │ │ │ ├── doc │ │ │ │ └── NERDTree.txt │ │ │ ├── lib │ │ │ │ └── nerdtree │ │ │ │ │ ├── bookmark.vim │ │ │ │ │ ├── creator.vim │ │ │ │ │ ├── event.vim │ │ │ │ │ ├── flag_set.vim │ │ │ │ │ ├── key_map.vim │ │ │ │ │ ├── menu_controller.vim │ │ │ │ │ ├── menu_item.vim │ │ │ │ │ ├── nerdtree.vim │ │ │ │ │ ├── notifier.vim │ │ │ │ │ ├── opener.vim │ │ │ │ │ ├── path.vim │ │ │ │ │ ├── tree_dir_node.vim │ │ │ │ │ ├── tree_file_node.vim │ │ │ │ │ └── ui.vim │ │ │ ├── nerdtree_plugin │ │ │ │ ├── exec_menuitem.vim │ │ │ │ ├── fs_menu.vim │ │ │ │ └── vcs.vim │ │ │ ├── plugin │ │ │ │ └── NERD_tree.vim │ │ │ ├── screenshot.png │ │ │ └── syntax │ │ │ │ └── nerdtree.vim │ │ │ ├── tagbar │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── autoload │ │ │ │ ├── tagbar.vim │ │ │ │ └── tagbar │ │ │ │ │ ├── debug.vim │ │ │ │ │ ├── prototypes │ │ │ │ │ ├── basetag.vim │ │ │ │ │ ├── fileinfo.vim │ │ │ │ │ ├── kindheadertag.vim │ │ │ │ │ ├── normaltag.vim │ │ │ │ │ ├── pseudotag.vim │ │ │ │ │ ├── splittag.vim │ │ │ │ │ └── typeinfo.vim │ │ │ │ │ ├── sorting.vim │ │ │ │ │ ├── state.vim │ │ │ │ │ └── types │ │ │ │ │ ├── ctags.vim │ │ │ │ │ └── uctags.vim │ │ │ ├── doc │ │ │ │ └── tagbar.txt │ │ │ ├── plugin │ │ │ │ └── tagbar.vim │ │ │ └── syntax │ │ │ │ └── tagbar.vim │ │ │ ├── undotree │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── autoload │ │ │ │ └── undotree.vim │ │ │ ├── doc │ │ │ │ └── undotree.txt │ │ │ ├── plugin │ │ │ │ └── undotree.vim │ │ │ └── syntax │ │ │ │ └── undotree.vim │ │ │ ├── vim-airline │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gemfile │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── autoload │ │ │ │ ├── airline.vim │ │ │ │ └── airline │ │ │ │ │ ├── async.vim │ │ │ │ │ ├── builder.vim │ │ │ │ │ ├── debug.vim │ │ │ │ │ ├── extensions.vim │ │ │ │ │ ├── extensions │ │ │ │ │ ├── ale.vim │ │ │ │ │ ├── branch.vim │ │ │ │ │ ├── bufferline.vim │ │ │ │ │ ├── capslock.vim │ │ │ │ │ ├── commandt.vim │ │ │ │ │ ├── csv.vim │ │ │ │ │ ├── ctrlp.vim │ │ │ │ │ ├── ctrlspace.vim │ │ │ │ │ ├── cursormode.vim │ │ │ │ │ ├── default.vim │ │ │ │ │ ├── denite.vim │ │ │ │ │ ├── eclim.vim │ │ │ │ │ ├── example.vim │ │ │ │ │ ├── fugitiveline.vim │ │ │ │ │ ├── grepper.vim │ │ │ │ │ ├── gutentags.vim │ │ │ │ │ ├── hunks.vim │ │ │ │ │ ├── keymap.vim │ │ │ │ │ ├── languageclient.vim │ │ │ │ │ ├── localsearch.vim │ │ │ │ │ ├── neomake.vim │ │ │ │ │ ├── netrw.vim │ │ │ │ │ ├── nrrwrgn.vim │ │ │ │ │ ├── obsession.vim │ │ │ │ │ ├── po.vim │ │ │ │ │ ├── promptline.vim │ │ │ │ │ ├── quickfix.vim │ │ │ │ │ ├── syntastic.vim │ │ │ │ │ ├── tabline.vim │ │ │ │ │ ├── tabline │ │ │ │ │ │ ├── autoshow.vim │ │ │ │ │ │ ├── buffers.vim │ │ │ │ │ │ ├── buflist.vim │ │ │ │ │ │ ├── builder.vim │ │ │ │ │ │ ├── ctrlspace.vim │ │ │ │ │ │ ├── formatters │ │ │ │ │ │ │ ├── default.vim │ │ │ │ │ │ │ ├── jsformatter.vim │ │ │ │ │ │ │ ├── tabnr.vim │ │ │ │ │ │ │ ├── unique_tail.vim │ │ │ │ │ │ │ └── unique_tail_improved.vim │ │ │ │ │ │ ├── tabs.vim │ │ │ │ │ │ └── xtabline.vim │ │ │ │ │ ├── tagbar.vim │ │ │ │ │ ├── term.vim │ │ │ │ │ ├── tmuxline.vim │ │ │ │ │ ├── undotree.vim │ │ │ │ │ ├── unicode.vim │ │ │ │ │ ├── unite.vim │ │ │ │ │ ├── vimagit.vim │ │ │ │ │ ├── vimtex.vim │ │ │ │ │ ├── virtualenv.vim │ │ │ │ │ ├── whitespace.vim │ │ │ │ │ ├── windowswap.vim │ │ │ │ │ ├── wordcount.vim │ │ │ │ │ ├── wordcount │ │ │ │ │ │ └── formatters │ │ │ │ │ │ │ └── default.vim │ │ │ │ │ ├── xkblayout.vim │ │ │ │ │ └── ycm.vim │ │ │ │ │ ├── highlighter.vim │ │ │ │ │ ├── init.vim │ │ │ │ │ ├── msdos.vim │ │ │ │ │ ├── parts.vim │ │ │ │ │ ├── section.vim │ │ │ │ │ ├── themes.vim │ │ │ │ │ ├── themes │ │ │ │ │ └── dark.vim │ │ │ │ │ └── util.vim │ │ │ ├── doc │ │ │ │ └── airline.txt │ │ │ ├── plugin │ │ │ │ └── airline.vim │ │ │ └── t │ │ │ │ ├── airline.vim │ │ │ │ ├── builder.vim │ │ │ │ ├── commands.vim │ │ │ │ ├── extensions_default.vim │ │ │ │ ├── extensions_tabline.vim │ │ │ │ ├── highlighter.vim │ │ │ │ ├── init.vim │ │ │ │ ├── parts.vim │ │ │ │ ├── section.vim │ │ │ │ ├── themes.vim │ │ │ │ └── util.vim │ │ │ ├── vim-easymotion │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── Gemfile │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── autoload │ │ │ │ ├── EasyMotion.vim │ │ │ │ ├── EasyMotion │ │ │ │ │ ├── cmigemo.vim │ │ │ │ │ ├── command_line.vim │ │ │ │ │ ├── helper.vim │ │ │ │ │ ├── highlight.vim │ │ │ │ │ ├── migemo │ │ │ │ │ │ ├── cp932.vim │ │ │ │ │ │ ├── eucjp.vim │ │ │ │ │ │ └── utf8.vim │ │ │ │ │ ├── overwin.vim │ │ │ │ │ ├── sticky_table.vim │ │ │ │ │ └── undo.vim │ │ │ │ ├── vital.vim │ │ │ │ └── vital │ │ │ │ │ ├── _easymotion.vim │ │ │ │ │ ├── _easymotion │ │ │ │ │ ├── Data │ │ │ │ │ │ ├── Dict.vim │ │ │ │ │ │ ├── List.vim │ │ │ │ │ │ └── Set.vim │ │ │ │ │ ├── HitAHint │ │ │ │ │ │ ├── Hint.vim │ │ │ │ │ │ └── Motion.vim │ │ │ │ │ ├── Over │ │ │ │ │ │ ├── Commandline │ │ │ │ │ │ │ ├── Base.vim │ │ │ │ │ │ │ ├── Modules.vim │ │ │ │ │ │ │ └── Modules │ │ │ │ │ │ │ │ ├── BufferComplete.vim │ │ │ │ │ │ │ │ ├── Cancel.vim │ │ │ │ │ │ │ │ ├── CursorMove.vim │ │ │ │ │ │ │ │ ├── Delete.vim │ │ │ │ │ │ │ │ ├── Doautocmd.vim │ │ │ │ │ │ │ │ ├── DrawCommandline.vim │ │ │ │ │ │ │ │ ├── ExceptionExit.vim │ │ │ │ │ │ │ │ ├── ExceptionMessage.vim │ │ │ │ │ │ │ │ ├── Exit.vim │ │ │ │ │ │ │ │ ├── History.vim │ │ │ │ │ │ │ │ ├── InsertRegister.vim │ │ │ │ │ │ │ │ ├── KeyMapping.vim │ │ │ │ │ │ │ │ ├── NoInsert.vim │ │ │ │ │ │ │ │ ├── Paste.vim │ │ │ │ │ │ │ │ └── Redraw.vim │ │ │ │ │ │ ├── Exception.vim │ │ │ │ │ │ ├── Input.vim │ │ │ │ │ │ ├── Keymapping.vim │ │ │ │ │ │ ├── Signals.vim │ │ │ │ │ │ └── String.vim │ │ │ │ │ ├── Palette │ │ │ │ │ │ ├── Capture.vim │ │ │ │ │ │ ├── Highlight.vim │ │ │ │ │ │ └── Keymapping.vim │ │ │ │ │ ├── Prelude.vim │ │ │ │ │ └── Vim │ │ │ │ │ │ ├── Buffer.vim │ │ │ │ │ │ ├── Guard.vim │ │ │ │ │ │ └── Message.vim │ │ │ │ │ ├── easymotion.vim │ │ │ │ │ └── easymotion.vital │ │ │ ├── doc │ │ │ │ └── easymotion.txt │ │ │ ├── plugin │ │ │ │ └── EasyMotion.vim │ │ │ └── t │ │ │ │ ├── compare_movements_spec.vim │ │ │ │ ├── easymotion_spec.vim │ │ │ │ ├── operator_pending_spec.vim │ │ │ │ └── smartsign_spec.vim │ │ │ ├── vim-fugitive │ │ │ ├── autoload │ │ │ │ └── fugitive.vim │ │ │ ├── doc │ │ │ │ └── fugitive.txt │ │ │ ├── ftdetect │ │ │ │ └── fugitive.vim │ │ │ └── plugin │ │ │ │ └── fugitive.vim │ │ │ ├── vim-go │ │ │ ├── .codecov.yml │ │ │ ├── .coveragerc │ │ │ ├── .dockerignore │ │ │ ├── .editorconfig │ │ │ ├── .github │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ └── ISSUE_TEMPLATE.md │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── .vintrc.yaml │ │ │ ├── CHANGELOG.md │ │ │ ├── Dockerfile │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── addon-info.json │ │ │ ├── assets │ │ │ │ ├── vim-go.png │ │ │ │ └── vim-go.svg │ │ │ ├── autoload │ │ │ │ ├── ctrlp │ │ │ │ │ └── decls.vim │ │ │ │ ├── fzf │ │ │ │ │ └── decls.vim │ │ │ │ ├── go │ │ │ │ │ ├── alternate.vim │ │ │ │ │ ├── asmfmt.vim │ │ │ │ │ ├── cmd.vim │ │ │ │ │ ├── cmd_test.vim │ │ │ │ │ ├── complete.vim │ │ │ │ │ ├── complete_test.vim │ │ │ │ │ ├── config.vim │ │ │ │ │ ├── coverage.vim │ │ │ │ │ ├── debug.vim │ │ │ │ │ ├── debug_test.vim │ │ │ │ │ ├── decls.vim │ │ │ │ │ ├── def.vim │ │ │ │ │ ├── def_test.vim │ │ │ │ │ ├── doc.vim │ │ │ │ │ ├── fillstruct.vim │ │ │ │ │ ├── fillstruct_test.vim │ │ │ │ │ ├── fmt.vim │ │ │ │ │ ├── fmt_test.vim │ │ │ │ │ ├── guru.vim │ │ │ │ │ ├── guru_test.vim │ │ │ │ │ ├── highlight_test.vim │ │ │ │ │ ├── iferr.vim │ │ │ │ │ ├── impl.vim │ │ │ │ │ ├── impl_test.vim │ │ │ │ │ ├── import.vim │ │ │ │ │ ├── indent_test.vim │ │ │ │ │ ├── issue.vim │ │ │ │ │ ├── job.vim │ │ │ │ │ ├── keyify.vim │ │ │ │ │ ├── lint.vim │ │ │ │ │ ├── lint_test.vim │ │ │ │ │ ├── list.vim │ │ │ │ │ ├── mod.vim │ │ │ │ │ ├── package.vim │ │ │ │ │ ├── path.vim │ │ │ │ │ ├── play.vim │ │ │ │ │ ├── rename.vim │ │ │ │ │ ├── statusline.vim │ │ │ │ │ ├── tags.vim │ │ │ │ │ ├── tags_test.vim │ │ │ │ │ ├── template.vim │ │ │ │ │ ├── template_test.vim │ │ │ │ │ ├── term.vim │ │ │ │ │ ├── term_test.vim │ │ │ │ │ ├── test-fixtures │ │ │ │ │ │ ├── cmd │ │ │ │ │ │ │ └── bad.go │ │ │ │ │ │ ├── complete │ │ │ │ │ │ │ └── complete.go │ │ │ │ │ │ ├── debugmain │ │ │ │ │ │ │ └── debugmain.go │ │ │ │ │ │ ├── def │ │ │ │ │ │ │ └── jump.go │ │ │ │ │ │ ├── fmt │ │ │ │ │ │ │ ├── hello.go │ │ │ │ │ │ │ ├── hello_golden.go │ │ │ │ │ │ │ ├── imports │ │ │ │ │ │ │ │ ├── goimports.go │ │ │ │ │ │ │ │ ├── goimports_golden.go │ │ │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ │ │ └── gh.com │ │ │ │ │ │ │ │ │ └── gi │ │ │ │ │ │ │ │ │ └── foo-logging │ │ │ │ │ │ │ │ │ └── logger.go │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ └── imports │ │ │ │ │ │ │ │ ├── goimports.go │ │ │ │ │ │ │ │ ├── goimports_golden.go │ │ │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ │ └── gh.com │ │ │ │ │ │ │ │ └── gi │ │ │ │ │ │ │ │ └── foo-logging │ │ │ │ │ │ │ │ └── logger.go │ │ │ │ │ │ ├── lint │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── foo │ │ │ │ │ │ │ │ └── foo.go │ │ │ │ │ │ │ │ ├── lint │ │ │ │ │ │ │ │ ├── lint.go │ │ │ │ │ │ │ │ └── quux.go │ │ │ │ │ │ │ │ └── vet │ │ │ │ │ │ │ │ └── vet.go │ │ │ │ │ │ ├── tags │ │ │ │ │ │ │ ├── add_all_golden.go │ │ │ │ │ │ │ ├── add_all_input.go │ │ │ │ │ │ │ ├── remove_all_golden.go │ │ │ │ │ │ │ └── remove_all_input.go │ │ │ │ │ │ ├── term │ │ │ │ │ │ │ └── term.go │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── compilerror │ │ │ │ │ │ │ └── compilerror.go │ │ │ │ │ │ │ ├── play │ │ │ │ │ │ │ ├── mock │ │ │ │ │ │ │ │ └── controller.go │ │ │ │ │ │ │ └── play_test.go │ │ │ │ │ │ │ ├── showname │ │ │ │ │ │ │ └── showname_test.go │ │ │ │ │ │ │ ├── testcompilerror │ │ │ │ │ │ │ └── testcompilerror_test.go │ │ │ │ │ │ │ ├── timeout │ │ │ │ │ │ │ └── timeout_test.go │ │ │ │ │ │ │ └── veterror │ │ │ │ │ │ │ └── veterror.go │ │ │ │ │ ├── test.vim │ │ │ │ │ ├── test_test.vim │ │ │ │ │ ├── textobj.vim │ │ │ │ │ ├── tool.vim │ │ │ │ │ ├── tool_test.vim │ │ │ │ │ ├── ui.vim │ │ │ │ │ └── util.vim │ │ │ │ ├── gotest.vim │ │ │ │ └── unite │ │ │ │ │ └── sources │ │ │ │ │ └── decls.vim │ │ │ ├── compiler │ │ │ │ └── go.vim │ │ │ ├── doc │ │ │ │ └── vim-go.txt │ │ │ ├── ftdetect │ │ │ │ └── gofiletype.vim │ │ │ ├── ftplugin │ │ │ │ ├── asm.vim │ │ │ │ ├── go.vim │ │ │ │ ├── go │ │ │ │ │ ├── commands.vim │ │ │ │ │ ├── mappings.vim │ │ │ │ │ ├── snippets.vim │ │ │ │ │ └── tagbar.vim │ │ │ │ ├── gohtmltmpl.vim │ │ │ │ ├── gomod.vim │ │ │ │ └── gomod │ │ │ │ │ ├── commands.vim │ │ │ │ │ └── mappings.vim │ │ │ ├── gosnippets │ │ │ │ ├── UltiSnips │ │ │ │ │ └── go.snippets │ │ │ │ ├── minisnip │ │ │ │ │ ├── _go_eq │ │ │ │ │ ├── _go_err │ │ │ │ │ ├── _go_errt │ │ │ │ │ ├── _go_errw │ │ │ │ │ ├── _go_f │ │ │ │ │ ├── _go_ff │ │ │ │ │ ├── _go_fori │ │ │ │ │ ├── _go_pkg │ │ │ │ │ ├── _go_sp │ │ │ │ │ └── _go_tt │ │ │ │ └── snippets │ │ │ │ │ └── go.snip │ │ │ ├── indent │ │ │ │ ├── go.vim │ │ │ │ └── gohtmltmpl.vim │ │ │ ├── plugin │ │ │ │ └── go.vim │ │ │ ├── rplugin │ │ │ │ └── python3 │ │ │ │ │ └── denite │ │ │ │ │ └── source │ │ │ │ │ └── decls.py │ │ │ ├── scripts │ │ │ │ ├── bench-syntax │ │ │ │ ├── docker-test │ │ │ │ ├── install-vim │ │ │ │ ├── lint │ │ │ │ ├── run-vim │ │ │ │ ├── runbench.vim │ │ │ │ ├── runtest.vim │ │ │ │ └── test │ │ │ ├── syntax │ │ │ │ ├── go.vim │ │ │ │ ├── godebugoutput.vim │ │ │ │ ├── godebugstacktrace.vim │ │ │ │ ├── godebugvariables.vim │ │ │ │ ├── godefstack.vim │ │ │ │ ├── gohtmltmpl.vim │ │ │ │ ├── gomod.vim │ │ │ │ ├── gotexttmpl.vim │ │ │ │ └── vimgo.vim │ │ │ ├── templates │ │ │ │ ├── hello_world.go │ │ │ │ └── hello_world_test.go │ │ │ └── test │ │ │ │ ├── gopath_test.vim │ │ │ │ └── parse.go │ │ │ └── vim-nerdtree-tabs │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc │ │ │ └── vim-nerdtree-tabs.txt │ │ │ └── nerdtree_plugin │ │ │ └── vim-nerdtree-tabs.vim │ │ └── .vimrc └── zot │ └── latest │ └── init.sh ├── docs ├── README.md ├── UpgradeShim.md └── backup │ ├── containerd │ ├── clean-registry.sh │ └── init-registry.sh │ └── docker │ ├── clean-registry.sh │ └── init-registry.sh └── test ├── README.md ├── build-dockerfile └── Dockerfile └── build-kubefile └── Kubefile /.github/ISSUE_TEMPLATE/autobuild-apps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/.github/ISSUE_TEMPLATE/autobuild-apps.md -------------------------------------------------------------------------------- /.github/actions/parse-title-body/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/.github/actions/parse-title-body/Dockerfile -------------------------------------------------------------------------------- /.github/actions/parse-title-body/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/.github/actions/parse-title-body/action.yml -------------------------------------------------------------------------------- /.github/actions/parse-title-body/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/.github/actions/parse-title-body/index.js -------------------------------------------------------------------------------- /.github/actions/parse-title-body/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/.github/actions/parse-title-body/package.json -------------------------------------------------------------------------------- /.github/scripts/apps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/.github/scripts/apps.sh -------------------------------------------------------------------------------- /.github/scripts/apps/common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/.github/scripts/apps/common -------------------------------------------------------------------------------- /.github/scripts/apps/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/.github/scripts/apps/common.sh -------------------------------------------------------------------------------- /.github/scripts/configs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/.github/scripts/configs.sh -------------------------------------------------------------------------------- /.github/scripts/dockers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/.github/scripts/dockers.sh -------------------------------------------------------------------------------- /.github/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/.github/scripts/download.sh -------------------------------------------------------------------------------- /.github/scripts/manifest-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/.github/scripts/manifest-docker.sh -------------------------------------------------------------------------------- /.github/scripts/manifest-other.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/.github/scripts/manifest-other.sh -------------------------------------------------------------------------------- /.github/workflows/add-tips-c.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/.github/workflows/add-tips-c.yml -------------------------------------------------------------------------------- /.github/workflows/add-tips.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/.github/workflows/add-tips.yml -------------------------------------------------------------------------------- /.github/workflows/autobuild-apps-entry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/.github/workflows/autobuild-apps-entry.yml -------------------------------------------------------------------------------- /.github/workflows/autobuild-apps-tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/.github/workflows/autobuild-apps-tag.yml -------------------------------------------------------------------------------- /.github/workflows/autobuild-apps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/.github/workflows/autobuild-apps.yml -------------------------------------------------------------------------------- /.github/workflows/autobuild-dockerfiles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/.github/workflows/autobuild-dockerfiles.yml -------------------------------------------------------------------------------- /.github/workflows/resolve-image-info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/.github/workflows/resolve-image-info.yml -------------------------------------------------------------------------------- /.github/workflows/sync-sealos-cron.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/.github/workflows/sync-sealos-cron.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/README.md -------------------------------------------------------------------------------- /applications/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/README.md -------------------------------------------------------------------------------- /applications/affine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/affine/README.md -------------------------------------------------------------------------------- /applications/affine/latest/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/affine/latest/Dockerfile -------------------------------------------------------------------------------- /applications/apisix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/apisix/README.md -------------------------------------------------------------------------------- /applications/apisix/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/apisix/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/apisix/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/apisix/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/apisix/latest/init.sh -------------------------------------------------------------------------------- /applications/argo-events/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/argo-events/README.md -------------------------------------------------------------------------------- /applications/argo-events/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/argo-events/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/argo-events/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/argo-events/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/argo-events/latest/init.sh -------------------------------------------------------------------------------- /applications/argo-rollouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/argo-rollouts/README.md -------------------------------------------------------------------------------- /applications/argo-rollouts/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/argo-rollouts/latest/Kubefile -------------------------------------------------------------------------------- /applications/argo-rollouts/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/argo-rollouts/latest/init.sh -------------------------------------------------------------------------------- /applications/argo-workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/argo-workflows/README.md -------------------------------------------------------------------------------- /applications/argo-workflows/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/argo-workflows/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/argo-workflows/latest/init.sh -------------------------------------------------------------------------------- /applications/argocd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/argocd/README.md -------------------------------------------------------------------------------- /applications/argocd/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/argocd/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/argocd/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/argocd/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/argocd/latest/init.sh -------------------------------------------------------------------------------- /applications/athenaserving/v2.0.0rc1/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/athenaserving/v2.0.0rc1/Kubefile -------------------------------------------------------------------------------- /applications/automq-operator/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/automq-operator/latest/init.sh -------------------------------------------------------------------------------- /applications/awx-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/awx-operator/README.md -------------------------------------------------------------------------------- /applications/awx-operator/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/awx-operator/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/awx-operator/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/awx-operator/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/awx-operator/latest/init.sh -------------------------------------------------------------------------------- /applications/awx-operator/v1.1.0/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/awx-operator/v1.1.0/Kubefile -------------------------------------------------------------------------------- /applications/awx-operator/v1.1.0/charts/awx-operator/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | AWX Operator installed with Helm Chart version 1.1.0 2 | -------------------------------------------------------------------------------- /applications/bitnami-apache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bitnami-apache/README.md -------------------------------------------------------------------------------- /applications/bitnami-apache/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bitnami-apache/latest/Kubefile -------------------------------------------------------------------------------- /applications/bitnami-apache/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bitnami-apache/latest/init.sh -------------------------------------------------------------------------------- /applications/bitnami-apisix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bitnami-apisix/README.md -------------------------------------------------------------------------------- /applications/bitnami-apisix/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/bitnami-apisix/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bitnami-apisix/latest/init.sh -------------------------------------------------------------------------------- /applications/bitnami-clickhouse/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bitnami-clickhouse/latest/init.sh -------------------------------------------------------------------------------- /applications/bitnami-elasticsearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bitnami-elasticsearch/README.md -------------------------------------------------------------------------------- /applications/bitnami-etcd/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bitnami-etcd/latest/init.sh -------------------------------------------------------------------------------- /applications/bitnami-fluent-bit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bitnami-fluent-bit/README.md -------------------------------------------------------------------------------- /applications/bitnami-fluent-bit/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bitnami-fluent-bit/latest/init.sh -------------------------------------------------------------------------------- /applications/bitnami-fluentd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bitnami-fluentd/README.md -------------------------------------------------------------------------------- /applications/bitnami-fluentd/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bitnami-fluentd/latest/Kubefile -------------------------------------------------------------------------------- /applications/bitnami-fluentd/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bitnami-fluentd/latest/init.sh -------------------------------------------------------------------------------- /applications/bitnami-kafka/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bitnami-kafka/README.md -------------------------------------------------------------------------------- /applications/bitnami-kafka/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bitnami-kafka/latest/Kubefile -------------------------------------------------------------------------------- /applications/bitnami-kafka/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bitnami-kafka/latest/init.sh -------------------------------------------------------------------------------- /applications/bitnami-kibana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bitnami-kibana/README.md -------------------------------------------------------------------------------- /applications/bitnami-kibana/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bitnami-kibana/latest/Kubefile -------------------------------------------------------------------------------- /applications/bitnami-kibana/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bitnami-kibana/latest/init.sh -------------------------------------------------------------------------------- /applications/bitnami-mariadb-galera/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bitnami-mariadb-galera/README.md -------------------------------------------------------------------------------- /applications/bitnami-mariadb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bitnami-mariadb/README.md -------------------------------------------------------------------------------- /applications/bitnami-mariadb/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bitnami-mariadb/latest/Kubefile -------------------------------------------------------------------------------- /applications/bitnami-mariadb/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bitnami-mariadb/latest/init.sh -------------------------------------------------------------------------------- /applications/bitnami-minio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bitnami-minio/README.md -------------------------------------------------------------------------------- /applications/bitnami-minio/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bitnami-minio/latest/init.sh -------------------------------------------------------------------------------- /applications/bitnami-mongodb/6.0.2/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bitnami-mongodb/6.0.2/Kubefile -------------------------------------------------------------------------------- /applications/bitnami-mongodb/6.0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bitnami-mongodb/6.0.2/README.md -------------------------------------------------------------------------------- /applications/bitnami-mysql/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bitnami-mysql/latest/init.sh -------------------------------------------------------------------------------- /applications/bitnami-postgresql-ha/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bitnami-postgresql-ha/README.md -------------------------------------------------------------------------------- /applications/bitnami-postgresql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bitnami-postgresql/README.md -------------------------------------------------------------------------------- /applications/bitnami-postgresql/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bitnami-postgresql/latest/init.sh -------------------------------------------------------------------------------- /applications/bitnami-redis-cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bitnami-redis-cluster/README.md -------------------------------------------------------------------------------- /applications/bitnami-thanos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bitnami-thanos/README.md -------------------------------------------------------------------------------- /applications/bitnami-thanos/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/bitnami-thanos/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bitnami-thanos/latest/init.sh -------------------------------------------------------------------------------- /applications/bitnami-zookeeper/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bitnami-zookeeper/latest/init.sh -------------------------------------------------------------------------------- /applications/bond-cni/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bond-cni/README.md -------------------------------------------------------------------------------- /applications/bond-cni/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bond-cni/latest/Kubefile -------------------------------------------------------------------------------- /applications/bond-cni/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/bond-cni/latest/init.sh -------------------------------------------------------------------------------- /applications/calico/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/calico/README.md -------------------------------------------------------------------------------- /applications/calico/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/calico/latest/Kubefile -------------------------------------------------------------------------------- /applications/calico/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/calico/latest/init.sh -------------------------------------------------------------------------------- /applications/calicoctl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/calicoctl/README.md -------------------------------------------------------------------------------- /applications/calicoctl/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/calicoctl/latest/Kubefile -------------------------------------------------------------------------------- /applications/calicoctl/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/calicoctl/latest/init.sh -------------------------------------------------------------------------------- /applications/ceph-csi-cephfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/ceph-csi-cephfs/README.md -------------------------------------------------------------------------------- /applications/ceph-csi-cephfs/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/ceph-csi-cephfs/latest/Kubefile -------------------------------------------------------------------------------- /applications/ceph-csi-cephfs/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/ceph-csi-cephfs/latest/init.sh -------------------------------------------------------------------------------- /applications/ceph-csi-rbd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/ceph-csi-rbd/README.md -------------------------------------------------------------------------------- /applications/ceph-csi-rbd/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/ceph-csi-rbd/latest/Kubefile -------------------------------------------------------------------------------- /applications/ceph-csi-rbd/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/ceph-csi-rbd/latest/init.sh -------------------------------------------------------------------------------- /applications/cert-manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/cert-manager/README.md -------------------------------------------------------------------------------- /applications/cert-manager/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/cert-manager/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/cert-manager/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/cert-manager/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/cert-manager/latest/init.sh -------------------------------------------------------------------------------- /applications/cert-manager/v1.12.6/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["kubectl create -f manifests/cert-manager.yaml || true"] 4 | -------------------------------------------------------------------------------- /applications/cert-manager/v1.12.6/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/cert-manager/v1.12.6/init.sh -------------------------------------------------------------------------------- /applications/cert-manager/v1.8.0/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["kubectl apply -f manifests/cert-manager.yaml"] 4 | -------------------------------------------------------------------------------- /applications/chaos-mesh-crio/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/chaos-mesh-crio/latest/init.sh -------------------------------------------------------------------------------- /applications/chaos-mesh/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/chaos-mesh/latest/init.sh -------------------------------------------------------------------------------- /applications/chatbot-ui/main/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/chatbot-ui/main/Dockerfile -------------------------------------------------------------------------------- /applications/cilium/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/cilium/README.md -------------------------------------------------------------------------------- /applications/cilium/latest/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | ENV ExtraValues "" 4 | CMD ["bash entrypoint.sh"] 5 | -------------------------------------------------------------------------------- /applications/cilium/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/cilium/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/cilium/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/cilium/latest/init.sh -------------------------------------------------------------------------------- /applications/cilium/v1.12.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/cilium/v1.12.0/Dockerfile -------------------------------------------------------------------------------- /applications/cilium/v1.12.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/cilium/v1.12.0/README.md -------------------------------------------------------------------------------- /applications/cilium/v1.12.0/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/cilium/v1.12.0/init.sh -------------------------------------------------------------------------------- /applications/clickhouse/0.18.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/clickhouse/0.18.4/Dockerfile -------------------------------------------------------------------------------- /applications/cni-plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/cni-plugins/README.md -------------------------------------------------------------------------------- /applications/cni-plugins/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/cni-plugins/latest/Kubefile -------------------------------------------------------------------------------- /applications/cni-plugins/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/cni-plugins/latest/init.sh -------------------------------------------------------------------------------- /applications/cockroach/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/cockroach/README.md -------------------------------------------------------------------------------- /applications/cockroach/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | 3 | COPY . . 4 | CMD ["bash scripts/init.sh"] 5 | -------------------------------------------------------------------------------- /applications/cockroach/latest/scripts/init.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | kubectl apply -f manifests/operator.yaml -------------------------------------------------------------------------------- /applications/cockroach/v2.12.0/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | 3 | COPY . . 4 | 5 | CMD ["bash entrypoint.sh"] 6 | -------------------------------------------------------------------------------- /applications/cockroach/v2.12.0/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | kubectl apply -f manifests/deploy.yaml 5 | -------------------------------------------------------------------------------- /applications/code-server/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/code-server/latest/init.sh -------------------------------------------------------------------------------- /applications/code-server/v4.8.2/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/code-server/v4.8.2/Kubefile -------------------------------------------------------------------------------- /applications/code-server/v4.8.2/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/code-server/v4.8.2/init.sh -------------------------------------------------------------------------------- /applications/contour/v1.23.0/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/contour/v1.23.0/Kubefile -------------------------------------------------------------------------------- /applications/coredns/v0.0.1/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/coredns/v0.0.1/Kubefile -------------------------------------------------------------------------------- /applications/coredns/v0.0.1/README.md: -------------------------------------------------------------------------------- 1 | ## coredns 2 | 3 | 为了修复dns异常的镜像 4 | -------------------------------------------------------------------------------- /applications/crunchy-postgres-operator/v5.2.0/charts/crunchy-postgres-operator/.helmignore: -------------------------------------------------------------------------------- 1 | .git* 2 | -------------------------------------------------------------------------------- /applications/crunchy-postgres-operator/v5.2.0/manifests/postgres-operator-examples/kustomize/azure/.gitignore: -------------------------------------------------------------------------------- 1 | azure.conf 2 | -------------------------------------------------------------------------------- /applications/crunchy-postgres-operator/v5.2.0/manifests/postgres-operator-examples/kustomize/gcs/.gitignore: -------------------------------------------------------------------------------- 1 | gcs-key.json 2 | -------------------------------------------------------------------------------- /applications/crunchy-postgres-operator/v5.2.0/manifests/postgres-operator-examples/kustomize/s3/.gitignore: -------------------------------------------------------------------------------- 1 | s3.conf 2 | -------------------------------------------------------------------------------- /applications/crunchy-postgres-operator/v5.3.1/helm/install/.helmignore: -------------------------------------------------------------------------------- 1 | .git* 2 | -------------------------------------------------------------------------------- /applications/crunchy-postgres-operator/v5.3.1/kustomize/azure/.gitignore: -------------------------------------------------------------------------------- 1 | azure.conf 2 | -------------------------------------------------------------------------------- /applications/crunchy-postgres-operator/v5.3.1/kustomize/gcs/.gitignore: -------------------------------------------------------------------------------- 1 | gcs-key.json 2 | -------------------------------------------------------------------------------- /applications/crunchy-postgres-operator/v5.3.1/kustomize/install/namespace/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - namespace.yaml 3 | -------------------------------------------------------------------------------- /applications/crunchy-postgres-operator/v5.3.1/kustomize/s3/.gitignore: -------------------------------------------------------------------------------- 1 | s3.conf 2 | -------------------------------------------------------------------------------- /applications/csi-driver-nfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/csi-driver-nfs/README.md -------------------------------------------------------------------------------- /applications/csi-driver-nfs/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/csi-driver-nfs/latest/Kubefile -------------------------------------------------------------------------------- /applications/csi-driver-nfs/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/csi-driver-nfs/latest/init.sh -------------------------------------------------------------------------------- /applications/cubefs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/cubefs/README.md -------------------------------------------------------------------------------- /applications/cubefs/v3.3.0/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/cubefs/v3.3.0/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/cubefs/v3.3.0/entrypoint.sh -------------------------------------------------------------------------------- /applications/cubefs/v3.3.0/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/cubefs/v3.3.0/init.sh -------------------------------------------------------------------------------- /applications/dapr-dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/dapr-dashboard/README.md -------------------------------------------------------------------------------- /applications/dapr-dashboard/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/dapr-dashboard/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/dapr-dashboard/latest/init.sh -------------------------------------------------------------------------------- /applications/dapr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/dapr/README.md -------------------------------------------------------------------------------- /applications/dapr/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/dapr/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/dapr/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/dapr/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/dapr/latest/init.sh -------------------------------------------------------------------------------- /applications/deepflow/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/deepflow/latest/Kubefile -------------------------------------------------------------------------------- /applications/deepflow/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/deepflow/latest/init.sh -------------------------------------------------------------------------------- /applications/deepflow/stable/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/deepflow/stable/Dockerfile -------------------------------------------------------------------------------- /applications/deepflow/stable/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/deepflow/stable/init.sh -------------------------------------------------------------------------------- /applications/descheduler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/descheduler/README.md -------------------------------------------------------------------------------- /applications/descheduler/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/descheduler/latest/Kubefile -------------------------------------------------------------------------------- /applications/descheduler/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/descheduler/latest/init.sh -------------------------------------------------------------------------------- /applications/discourse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/discourse/README.md -------------------------------------------------------------------------------- /applications/discourse/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/discourse/latest/Kubefile -------------------------------------------------------------------------------- /applications/discourse/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/discourse/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/discourse/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/discourse/latest/init.sh -------------------------------------------------------------------------------- /applications/eck-operator/2.4.0/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/eck-operator/2.4.0/Kubefile -------------------------------------------------------------------------------- /applications/eck-operator/2.4.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/eck-operator/2.4.0/README.md -------------------------------------------------------------------------------- /applications/eck-operator/2.4.0/charts/eck-operator/charts/eck-operator-crds/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | ECK Custom Resource Definitions installed. 2 | -------------------------------------------------------------------------------- /applications/eck-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/eck-operator/README.md -------------------------------------------------------------------------------- /applications/eck-operator/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/eck-operator/latest/Kubefile -------------------------------------------------------------------------------- /applications/eck-operator/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/eck-operator/latest/init.sh -------------------------------------------------------------------------------- /applications/elasticsearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/elasticsearch/README.md -------------------------------------------------------------------------------- /applications/elasticsearch/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/elasticsearch/latest/Kubefile -------------------------------------------------------------------------------- /applications/elasticsearch/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/elasticsearch/latest/init.sh -------------------------------------------------------------------------------- /applications/endpoints-operator/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/endpoints-operator/latest/init.sh -------------------------------------------------------------------------------- /applications/endpoints-operator/v0.1.1/images/shim/cepctl: -------------------------------------------------------------------------------- 1 | ghcr.io/labring/cepctl:v0.1.1 2 | -------------------------------------------------------------------------------- /applications/endpoints-operator/v0.2.0/images/shim/cepctl: -------------------------------------------------------------------------------- 1 | ghcr.io/labring/cepctl:v0.2.0 2 | -------------------------------------------------------------------------------- /applications/enovy-gateway/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/enovy-gateway/latest/init.sh -------------------------------------------------------------------------------- /applications/enovy-gateway/latest/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/enovy-gateway/latest/install.sh -------------------------------------------------------------------------------- /applications/etcdctl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/etcdctl/README.md -------------------------------------------------------------------------------- /applications/etcdctl/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/etcdctl/latest/Kubefile -------------------------------------------------------------------------------- /applications/etcdctl/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/etcdctl/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/etcdctl/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/etcdctl/latest/init.sh -------------------------------------------------------------------------------- /applications/etcdctl/latest/scripts/disable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/etcdctl/latest/scripts/disable.sh -------------------------------------------------------------------------------- /applications/etcdctl/latest/scripts/enable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/etcdctl/latest/scripts/enable.sh -------------------------------------------------------------------------------- /applications/etcdctl/latest/scripts/etcdctl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/etcdctl/latest/scripts/etcdctl.sh -------------------------------------------------------------------------------- /applications/filebeat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/filebeat/README.md -------------------------------------------------------------------------------- /applications/filebeat/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/filebeat/latest/Kubefile -------------------------------------------------------------------------------- /applications/filebeat/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/filebeat/latest/init.sh -------------------------------------------------------------------------------- /applications/flannel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/flannel/README.md -------------------------------------------------------------------------------- /applications/flannel/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/flannel/latest/Kubefile -------------------------------------------------------------------------------- /applications/flannel/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/flannel/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/flannel/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/flannel/latest/init.sh -------------------------------------------------------------------------------- /applications/fluent-bit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/fluent-bit/README.md -------------------------------------------------------------------------------- /applications/fluent-bit/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/fluent-bit/latest/Kubefile -------------------------------------------------------------------------------- /applications/fluent-bit/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/fluent-bit/latest/init.sh -------------------------------------------------------------------------------- /applications/fluent-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/fluent-operator/README.md -------------------------------------------------------------------------------- /applications/fluent-operator/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/fluent-operator/latest/Kubefile -------------------------------------------------------------------------------- /applications/fluent-operator/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/fluent-operator/latest/init.sh -------------------------------------------------------------------------------- /applications/fluxcd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/fluxcd/README.md -------------------------------------------------------------------------------- /applications/fluxcd/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/fluxcd/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/fluxcd/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/fluxcd/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/fluxcd/latest/init.sh -------------------------------------------------------------------------------- /applications/gatekeeper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/gatekeeper/README.md -------------------------------------------------------------------------------- /applications/gatekeeper/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/gatekeeper/latest/Kubefile -------------------------------------------------------------------------------- /applications/gatekeeper/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/gatekeeper/latest/init.sh -------------------------------------------------------------------------------- /applications/gitea/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/gitea/README.md -------------------------------------------------------------------------------- /applications/gitea/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/gitea/latest/Kubefile -------------------------------------------------------------------------------- /applications/gitea/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/gitea/latest/init.sh -------------------------------------------------------------------------------- /applications/gitlab-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/gitlab-operator/README.md -------------------------------------------------------------------------------- /applications/gitlab-operator/v0.21.2/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/gitlab-operator/v0.21.2/Kubefile -------------------------------------------------------------------------------- /applications/gitlab-operator/v0.21.2/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/gitlab-operator/v0.21.2/init.sh -------------------------------------------------------------------------------- /applications/gitlab-runner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/gitlab-runner/README.md -------------------------------------------------------------------------------- /applications/gitlab-runner/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/gitlab-runner/latest/Kubefile -------------------------------------------------------------------------------- /applications/gitlab-runner/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/gitlab-runner/latest/init.sh -------------------------------------------------------------------------------- /applications/gitlab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/gitlab/README.md -------------------------------------------------------------------------------- /applications/gitlab/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/gitlab/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/gitlab/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/gitlab/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/gitlab/latest/init.sh -------------------------------------------------------------------------------- /applications/gitness/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/gitness/README.md -------------------------------------------------------------------------------- /applications/gitness/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/gitness/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/gitness/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/gitness/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/gitness/latest/init.sh -------------------------------------------------------------------------------- /applications/gloo/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/gloo/latest/init.sh -------------------------------------------------------------------------------- /applications/golang-vim-dev/1.18.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/golang-vim-dev/1.18.4/Dockerfile -------------------------------------------------------------------------------- /applications/golang-vim-dev/1.18.4/images/shim/dev: -------------------------------------------------------------------------------- 1 | ghcr.io/cuisongliu/go-docker-dev:1.18.4 2 | -------------------------------------------------------------------------------- /applications/gpu-operator/latest/.gitignore: -------------------------------------------------------------------------------- 1 | gpu-operator 2 | images 3 | Kubefile 4 | -------------------------------------------------------------------------------- /applications/gpu-operator/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/gpu-operator/latest/init.sh -------------------------------------------------------------------------------- /applications/gpu-operator/v1.10.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/gpu-operator/v1.10.1/Dockerfile -------------------------------------------------------------------------------- /applications/grafana-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/grafana-operator/README.md -------------------------------------------------------------------------------- /applications/grafana-operator/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/grafana-operator/latest/Kubefile -------------------------------------------------------------------------------- /applications/grafana-operator/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/grafana-operator/latest/init.sh -------------------------------------------------------------------------------- /applications/grafana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/grafana/README.md -------------------------------------------------------------------------------- /applications/grafana/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/grafana/latest/Kubefile -------------------------------------------------------------------------------- /applications/grafana/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/grafana/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/grafana/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/grafana/latest/init.sh -------------------------------------------------------------------------------- /applications/harbor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/harbor/README.md -------------------------------------------------------------------------------- /applications/harbor/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/harbor/latest/Kubefile -------------------------------------------------------------------------------- /applications/harbor/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/harbor/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/harbor/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/harbor/latest/init.sh -------------------------------------------------------------------------------- /applications/harbor/v2.6.1/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/harbor/v2.6.1/Kubefile -------------------------------------------------------------------------------- /applications/harbor/v2.6.1/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/harbor/v2.6.1/init.sh -------------------------------------------------------------------------------- /applications/helm-dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/helm-dashboard/README.md -------------------------------------------------------------------------------- /applications/helm-dashboard/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/helm-dashboard/latest/Kubefile -------------------------------------------------------------------------------- /applications/helm-dashboard/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/helm-dashboard/latest/init.sh -------------------------------------------------------------------------------- /applications/helm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/helm/README.md -------------------------------------------------------------------------------- /applications/helm/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/helm/latest/Kubefile -------------------------------------------------------------------------------- /applications/helm/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/helm/latest/init.sh -------------------------------------------------------------------------------- /applications/helmfile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/helmfile/README.md -------------------------------------------------------------------------------- /applications/helmfile/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/helmfile/latest/Kubefile -------------------------------------------------------------------------------- /applications/helmfile/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/helmfile/latest/init.sh -------------------------------------------------------------------------------- /applications/higress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/higress/README.md -------------------------------------------------------------------------------- /applications/higress/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/higress/latest/init.sh -------------------------------------------------------------------------------- /applications/higress/latest/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/higress/latest/install.sh -------------------------------------------------------------------------------- /applications/ingress-nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/ingress-nginx/README.md -------------------------------------------------------------------------------- /applications/ingress-nginx/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/ingress-nginx/latest/Kubefile -------------------------------------------------------------------------------- /applications/ingress-nginx/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/ingress-nginx/latest/init.sh -------------------------------------------------------------------------------- /applications/iomesh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/iomesh/README.md -------------------------------------------------------------------------------- /applications/iomesh/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/iomesh/latest/init.sh -------------------------------------------------------------------------------- /applications/iomesh/latest/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/iomesh/latest/install.sh -------------------------------------------------------------------------------- /applications/istio-base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/istio-base/README.md -------------------------------------------------------------------------------- /applications/istio-base/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/istio-base/latest/Kubefile -------------------------------------------------------------------------------- /applications/istio-base/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/istio-base/latest/init.sh -------------------------------------------------------------------------------- /applications/istio-bookinfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/istio-bookinfo/README.md -------------------------------------------------------------------------------- /applications/istio-bookinfo/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/istio-bookinfo/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/istio-bookinfo/latest/init.sh -------------------------------------------------------------------------------- /applications/istio/1.15.1/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/istio/1.15.1/Kubefile -------------------------------------------------------------------------------- /applications/istio/1.15.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/istio/1.15.1/README.md -------------------------------------------------------------------------------- /applications/istio/1.15.1/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/istio/1.15.1/init.sh -------------------------------------------------------------------------------- /applications/istio/1.16.2-min/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/istio/1.16.2-min/Kubefile -------------------------------------------------------------------------------- /applications/istio/1.16.2-min/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/istio/1.16.2-min/README.md -------------------------------------------------------------------------------- /applications/istio/1.16.2-min/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/istio/1.16.2-min/init.sh -------------------------------------------------------------------------------- /applications/istio/1.16.2/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/istio/1.16.2/Kubefile -------------------------------------------------------------------------------- /applications/istio/1.16.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/istio/1.16.2/README.md -------------------------------------------------------------------------------- /applications/istio/1.16.2/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/istio/1.16.2/init.sh -------------------------------------------------------------------------------- /applications/istio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/istio/README.md -------------------------------------------------------------------------------- /applications/istio/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/istio/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/istio/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/istio/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/istio/latest/init.sh -------------------------------------------------------------------------------- /applications/istio/v1.14.2/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/istio/v1.14.2/Kubefile -------------------------------------------------------------------------------- /applications/istio/v1.14.2/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/istio/v1.14.2/init.sh -------------------------------------------------------------------------------- /applications/jenkins-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/jenkins-operator/README.md -------------------------------------------------------------------------------- /applications/jenkins-operator/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/jenkins-operator/latest/Kubefile -------------------------------------------------------------------------------- /applications/jenkins-operator/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/jenkins-operator/latest/init.sh -------------------------------------------------------------------------------- /applications/jenkins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/jenkins/README.md -------------------------------------------------------------------------------- /applications/jenkins/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/jenkins/latest/Kubefile -------------------------------------------------------------------------------- /applications/jenkins/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/jenkins/latest/init.sh -------------------------------------------------------------------------------- /applications/k8tz/0.4.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/k8tz/0.4.0/Dockerfile -------------------------------------------------------------------------------- /applications/k8tz/0.4.0/images/shim/k8tzImages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/k8tz/0.4.0/images/shim/k8tzImages -------------------------------------------------------------------------------- /applications/k8tz/0.4.0/k8tz/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/k8tz/0.4.0/k8tz/.helmignore -------------------------------------------------------------------------------- /applications/k8tz/0.4.0/k8tz/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/k8tz/0.4.0/k8tz/Chart.yaml -------------------------------------------------------------------------------- /applications/k8tz/0.4.0/k8tz/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/k8tz/0.4.0/k8tz/values.yaml -------------------------------------------------------------------------------- /applications/k9s/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/k9s/README.md -------------------------------------------------------------------------------- /applications/k9s/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/k9s/latest/Kubefile -------------------------------------------------------------------------------- /applications/k9s/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/k9s/latest/init.sh -------------------------------------------------------------------------------- /applications/kafka-exporter/latest/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kafka-exporter/latest/Dockerfile -------------------------------------------------------------------------------- /applications/kafka-exporter/latest/images/shim/kafkaExporterImages: -------------------------------------------------------------------------------- 1 | docker.io/danielqsj/kafka-exporter:latest 2 | -------------------------------------------------------------------------------- /applications/kafka-operator/0.28.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kafka-operator/0.28.0/Dockerfile -------------------------------------------------------------------------------- /applications/kafka-operator/0.37.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kafka-operator/0.37.0/Dockerfile -------------------------------------------------------------------------------- /applications/kafka-operator/0.37.0/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kafka-operator/0.37.0/install.sh -------------------------------------------------------------------------------- /applications/kafka-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kafka-ui/README.md -------------------------------------------------------------------------------- /applications/kafka-ui/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kafka-ui/latest/Kubefile -------------------------------------------------------------------------------- /applications/kafka-ui/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kafka-ui/latest/init.sh -------------------------------------------------------------------------------- /applications/kargo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kargo/README.md -------------------------------------------------------------------------------- /applications/kargo/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/kargo/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kargo/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/kargo/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kargo/latest/init.sh -------------------------------------------------------------------------------- /applications/karmada/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/karmada/latest/init.sh -------------------------------------------------------------------------------- /applications/keda/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/keda/README.md -------------------------------------------------------------------------------- /applications/keda/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/keda/latest/Kubefile -------------------------------------------------------------------------------- /applications/keda/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/keda/latest/init.sh -------------------------------------------------------------------------------- /applications/kibana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kibana/README.md -------------------------------------------------------------------------------- /applications/kibana/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kibana/latest/Kubefile -------------------------------------------------------------------------------- /applications/kibana/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kibana/latest/init.sh -------------------------------------------------------------------------------- /applications/koperator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/koperator/README.md -------------------------------------------------------------------------------- /applications/koperator/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/koperator/latest/Kubefile -------------------------------------------------------------------------------- /applications/koperator/latest/build_arch: -------------------------------------------------------------------------------- 1 | amd64 2 | -------------------------------------------------------------------------------- /applications/koperator/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/koperator/latest/init.sh -------------------------------------------------------------------------------- /applications/koperator/latest/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/koperator/latest/install.sh -------------------------------------------------------------------------------- /applications/kube-ovn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kube-ovn/README.md -------------------------------------------------------------------------------- /applications/kube-ovn/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kube-ovn/latest/Kubefile -------------------------------------------------------------------------------- /applications/kube-ovn/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kube-ovn/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/kube-ovn/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kube-ovn/latest/init.sh -------------------------------------------------------------------------------- /applications/kube-ovn/latest/scripts/kube-ovn.env: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | -------------------------------------------------------------------------------- /applications/kube-ovn/v1.10.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kube-ovn/v1.10.4/Dockerfile -------------------------------------------------------------------------------- /applications/kube-ovn/v1.10.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kube-ovn/v1.10.4/README.md -------------------------------------------------------------------------------- /applications/kube-ovn/v1.10.4/ovn-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kube-ovn/v1.10.4/ovn-install.sh -------------------------------------------------------------------------------- /applications/kube-ovn/v1.10.4/ovn-uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kube-ovn/v1.10.4/ovn-uninstall.sh -------------------------------------------------------------------------------- /applications/kube-ovn/v1.10.5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kube-ovn/v1.10.5/Dockerfile -------------------------------------------------------------------------------- /applications/kube-ovn/v1.10.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kube-ovn/v1.10.5/README.md -------------------------------------------------------------------------------- /applications/kube-ovn/v1.10.5/ovn-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kube-ovn/v1.10.5/ovn-install.sh -------------------------------------------------------------------------------- /applications/kube-ovn/v1.10.5/ovn-uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kube-ovn/v1.10.5/ovn-uninstall.sh -------------------------------------------------------------------------------- /applications/kube-ovn/v1.10.6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kube-ovn/v1.10.6/Dockerfile -------------------------------------------------------------------------------- /applications/kube-ovn/v1.10.6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kube-ovn/v1.10.6/README.md -------------------------------------------------------------------------------- /applications/kube-ovn/v1.10.6/ovn-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kube-ovn/v1.10.6/ovn-install.sh -------------------------------------------------------------------------------- /applications/kube-ovn/v1.10.6/ovn-uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kube-ovn/v1.10.6/ovn-uninstall.sh -------------------------------------------------------------------------------- /applications/kube-prometheus-stack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kube-prometheus-stack/README.md -------------------------------------------------------------------------------- /applications/kube-router/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kube-router/README.md -------------------------------------------------------------------------------- /applications/kube-router/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kube-router/latest/Kubefile -------------------------------------------------------------------------------- /applications/kube-router/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kube-router/latest/init.sh -------------------------------------------------------------------------------- /applications/kube-state-metrics/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kube-state-metrics/latest/init.sh -------------------------------------------------------------------------------- /applications/kube-vip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kube-vip/README.md -------------------------------------------------------------------------------- /applications/kube-vip/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kube-vip/latest/Kubefile -------------------------------------------------------------------------------- /applications/kube-vip/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kube-vip/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/kube-vip/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kube-vip/latest/init.sh -------------------------------------------------------------------------------- /applications/kube-vip/latest/scripts/enable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kube-vip/latest/scripts/enable.sh -------------------------------------------------------------------------------- /applications/kubean/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubean/README.md -------------------------------------------------------------------------------- /applications/kubean/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/kubean/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubean/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/kubean/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubean/latest/init.sh -------------------------------------------------------------------------------- /applications/kubeapps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubeapps/README.md -------------------------------------------------------------------------------- /applications/kubeapps/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubeapps/latest/Kubefile -------------------------------------------------------------------------------- /applications/kubeapps/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubeapps/latest/init.sh -------------------------------------------------------------------------------- /applications/kubeblocks-csi-s3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubeblocks-csi-s3/README.md -------------------------------------------------------------------------------- /applications/kubeblocks-csi-s3/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubeblocks-csi-s3/latest/init.sh -------------------------------------------------------------------------------- /applications/kubeblocks-kafka/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubeblocks-kafka/latest/init.sh -------------------------------------------------------------------------------- /applications/kubeblocks-mongodb/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubeblocks-mongodb/latest/init.sh -------------------------------------------------------------------------------- /applications/kubeblocks-redis/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubeblocks-redis/latest/init.sh -------------------------------------------------------------------------------- /applications/kubeblocks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubeblocks/README.md -------------------------------------------------------------------------------- /applications/kubeblocks/latest/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubeblocks/latest/Dockerfile -------------------------------------------------------------------------------- /applications/kubeblocks/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubeblocks/latest/init.sh -------------------------------------------------------------------------------- /applications/kubectl-df-pv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubectl-df-pv/README.md -------------------------------------------------------------------------------- /applications/kubectl-df-pv/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubectl-df-pv/latest/Kubefile -------------------------------------------------------------------------------- /applications/kubectl-df-pv/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubectl-df-pv/latest/init.sh -------------------------------------------------------------------------------- /applications/kubegems/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubegems/README.md -------------------------------------------------------------------------------- /applications/kubegems/v1.21.4/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubegems/v1.21.4/Kubefile -------------------------------------------------------------------------------- /applications/kubegems/v1.21.4/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubegems/v1.21.4/init.sh -------------------------------------------------------------------------------- /applications/kubegems/v1.21.4/kubegems.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubegems/v1.21.4/kubegems.sh -------------------------------------------------------------------------------- /applications/kubegems/v1.22.0-ai1/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubegems/v1.22.0-ai1/Kubefile -------------------------------------------------------------------------------- /applications/kubegems/v1.22.0-ai2/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubegems/v1.22.0-ai2/Kubefile -------------------------------------------------------------------------------- /applications/kubegems/v1.22.0-ai3/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubegems/v1.22.0-ai3/Kubefile -------------------------------------------------------------------------------- /applications/kubegems/v1.22.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubegems/v1.22.2/README.md -------------------------------------------------------------------------------- /applications/kubegems/v1.22.2/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubegems/v1.22.2/init.sh -------------------------------------------------------------------------------- /applications/kubegems/v1.23.8/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash kubegems.sh"] 4 | -------------------------------------------------------------------------------- /applications/kubegems/v1.23.8/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubegems/v1.23.8/init.sh -------------------------------------------------------------------------------- /applications/kubegems/v1.23.8/kubegems.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubegems/v1.23.8/kubegems.sh -------------------------------------------------------------------------------- /applications/kuberay/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kuberay/latest/init.sh -------------------------------------------------------------------------------- /applications/kubernetes-dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubernetes-dashboard/README.md -------------------------------------------------------------------------------- /applications/kubernetes-dashboard/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/kubesphere/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubesphere/README.md -------------------------------------------------------------------------------- /applications/kubesphere/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubesphere/latest/init.sh -------------------------------------------------------------------------------- /applications/kubesphere/v3.3.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubesphere/v3.3.0/Dockerfile -------------------------------------------------------------------------------- /applications/kubesphere/v3.3.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubesphere/v3.3.0/README.md -------------------------------------------------------------------------------- /applications/kubesphere/v3.3.2/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubesphere/v3.3.2/Kubefile -------------------------------------------------------------------------------- /applications/kubesphere/v3.3.2/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubesphere/v3.3.2/init.sh -------------------------------------------------------------------------------- /applications/kubesphere/v3.4.0/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubesphere/v3.4.0/Kubefile -------------------------------------------------------------------------------- /applications/kubesphere/v3.4.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubesphere/v3.4.0/README.md -------------------------------------------------------------------------------- /applications/kubesphere/v3.4.0/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubesphere/v3.4.0/init.sh -------------------------------------------------------------------------------- /applications/kubesphere/v3.4.1/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubesphere/v3.4.1/Kubefile -------------------------------------------------------------------------------- /applications/kubesphere/v3.4.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubesphere/v3.4.1/README.md -------------------------------------------------------------------------------- /applications/kubesphere/v3.4.1/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubesphere/v3.4.1/init.sh -------------------------------------------------------------------------------- /applications/kubevela/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubevela/README.md -------------------------------------------------------------------------------- /applications/kubevela/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubevela/latest/Kubefile -------------------------------------------------------------------------------- /applications/kubevela/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubevela/latest/init.sh -------------------------------------------------------------------------------- /applications/kubevirt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubevirt/README.md -------------------------------------------------------------------------------- /applications/kubevirt/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubevirt/latest/Kubefile -------------------------------------------------------------------------------- /applications/kubevirt/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubevirt/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/kubevirt/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubevirt/latest/init.sh -------------------------------------------------------------------------------- /applications/kubevirt/latest/scripts/enable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubevirt/latest/scripts/enable.sh -------------------------------------------------------------------------------- /applications/kubevirt/v0.57.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubevirt/v0.57.0/Dockerfile -------------------------------------------------------------------------------- /applications/kubevirt/v0.57.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubevirt/v0.57.0/README.md -------------------------------------------------------------------------------- /applications/kubevirt/v0.57.0/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kubevirt/v0.57.0/init.sh -------------------------------------------------------------------------------- /applications/kuboard/v2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kuboard/v2/Dockerfile -------------------------------------------------------------------------------- /applications/kuboard/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kuboard/v2/README.md -------------------------------------------------------------------------------- /applications/kuboard/v2/kuboard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kuboard/v2/kuboard.sh -------------------------------------------------------------------------------- /applications/kuboard/v3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kuboard/v3/Dockerfile -------------------------------------------------------------------------------- /applications/kuboard/v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kuboard/v3/README.md -------------------------------------------------------------------------------- /applications/kuboard/v3/kuboard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kuboard/v3/kuboard.sh -------------------------------------------------------------------------------- /applications/kuboard/v3/manifests/etcd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kuboard/v3/manifests/etcd.sh -------------------------------------------------------------------------------- /applications/kuboard/v3/manifests/kuboard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kuboard/v3/manifests/kuboard.sh -------------------------------------------------------------------------------- /applications/kustomize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kustomize/README.md -------------------------------------------------------------------------------- /applications/kustomize/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/kustomize/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kustomize/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/kustomize/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kustomize/latest/init.sh -------------------------------------------------------------------------------- /applications/kustomize/v4.5.6/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kustomize/v4.5.6/Kubefile -------------------------------------------------------------------------------- /applications/kustomize/v4.5.6/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kustomize/v4.5.6/init.sh -------------------------------------------------------------------------------- /applications/kyverno/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kyverno/README.md -------------------------------------------------------------------------------- /applications/kyverno/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kyverno/latest/Kubefile -------------------------------------------------------------------------------- /applications/kyverno/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/kyverno/latest/init.sh -------------------------------------------------------------------------------- /applications/local-path-provisioner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/local-path-provisioner/README.md -------------------------------------------------------------------------------- /applications/logging-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/logging-operator/README.md -------------------------------------------------------------------------------- /applications/logging-operator/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/logging-operator/latest/Kubefile -------------------------------------------------------------------------------- /applications/logging-operator/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/logging-operator/latest/init.sh -------------------------------------------------------------------------------- /applications/loki-stack/2.6.1/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/loki-stack/2.6.1/Kubefile -------------------------------------------------------------------------------- /applications/loki-stack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/loki-stack/README.md -------------------------------------------------------------------------------- /applications/loki-stack/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/loki-stack/latest/Kubefile -------------------------------------------------------------------------------- /applications/loki-stack/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/loki-stack/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/loki-stack/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/loki-stack/latest/init.sh -------------------------------------------------------------------------------- /applications/loki/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/loki/README.md -------------------------------------------------------------------------------- /applications/loki/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/loki/latest/Kubefile -------------------------------------------------------------------------------- /applications/loki/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/loki/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/loki/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/loki/latest/init.sh -------------------------------------------------------------------------------- /applications/longhorn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/longhorn/README.md -------------------------------------------------------------------------------- /applications/longhorn/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/longhorn/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/longhorn/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/longhorn/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/longhorn/latest/init.sh -------------------------------------------------------------------------------- /applications/mariadb-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/mariadb-operator/README.md -------------------------------------------------------------------------------- /applications/mariadb-operator/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/mariadb-operator/latest/Kubefile -------------------------------------------------------------------------------- /applications/mariadb-operator/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/mariadb-operator/latest/init.sh -------------------------------------------------------------------------------- /applications/memcached/1.6.17/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/memcached/1.6.17/Kubefile -------------------------------------------------------------------------------- /applications/memcached/1.6.17/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/memcached/1.6.17/README.md -------------------------------------------------------------------------------- /applications/metallb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/metallb/README.md -------------------------------------------------------------------------------- /applications/metallb/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/metallb/latest/Kubefile -------------------------------------------------------------------------------- /applications/metallb/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/metallb/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/metallb/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/metallb/latest/init.sh -------------------------------------------------------------------------------- /applications/metallb/latest/scripts/disable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/metallb/latest/scripts/disable.sh -------------------------------------------------------------------------------- /applications/metallb/latest/scripts/enable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/metallb/latest/scripts/enable.sh -------------------------------------------------------------------------------- /applications/metallb/v0.13.4/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/metallb/v0.13.4/Kubefile -------------------------------------------------------------------------------- /applications/metallb/v0.13.7/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/metallb/v0.13.7/Kubefile -------------------------------------------------------------------------------- /applications/metrics-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/metrics-server/README.md -------------------------------------------------------------------------------- /applications/metrics-server/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/metrics-server/latest/Kubefile -------------------------------------------------------------------------------- /applications/metrics-server/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/metrics-server/latest/init.sh -------------------------------------------------------------------------------- /applications/metrics-server/v0.6.1/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["kubectl apply -f manifests/metrics-server.yaml"] 4 | -------------------------------------------------------------------------------- /applications/milvus-attu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/milvus-attu/README.md -------------------------------------------------------------------------------- /applications/milvus-attu/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/milvus-attu/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/milvus-attu/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/milvus-attu/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/milvus-attu/latest/init.sh -------------------------------------------------------------------------------- /applications/milvus-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/milvus-operator/README.md -------------------------------------------------------------------------------- /applications/milvus-operator/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/milvus-operator/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/milvus-operator/latest/init.sh -------------------------------------------------------------------------------- /applications/milvus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/milvus/README.md -------------------------------------------------------------------------------- /applications/milvus/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/milvus/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/milvus/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/milvus/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/milvus/latest/init.sh -------------------------------------------------------------------------------- /applications/minecraft-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/minecraft-server/README.md -------------------------------------------------------------------------------- /applications/minecraft-server/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/minecraft-server/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/minecraft-server/latest/init.sh -------------------------------------------------------------------------------- /applications/minio-operator/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/minio-operator/latest/init.sh -------------------------------------------------------------------------------- /applications/minio-operator/latest/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/minio-operator/latest/install.sh -------------------------------------------------------------------------------- /applications/minio-operator/v4.4.16/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/minio-operator/v4.4.16/Dockerfile -------------------------------------------------------------------------------- /applications/minio-operator/v4.4.16/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/minio-operator/v4.4.16/init.sh -------------------------------------------------------------------------------- /applications/minio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/minio/README.md -------------------------------------------------------------------------------- /applications/minio/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/minio/latest/Kubefile -------------------------------------------------------------------------------- /applications/minio/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/minio/latest/init.sh -------------------------------------------------------------------------------- /applications/mongodb-community-operator/0.7.6/charts/community-operator/charts/community-operator-crds/values.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/mongodb-single/6.0.6/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/mongodb-single/6.0.6/Kubefile -------------------------------------------------------------------------------- /applications/mongodb-single/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/mongodb-single/README.md -------------------------------------------------------------------------------- /applications/mssql-server/2017-latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/mssql-server/2017-latest/Kubefile -------------------------------------------------------------------------------- /applications/mssql-server/2019-latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/mssql-server/2019-latest/Kubefile -------------------------------------------------------------------------------- /applications/mssql-server/2022-latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/mssql-server/2022-latest/Kubefile -------------------------------------------------------------------------------- /applications/multus-cni/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/multus-cni/README.md -------------------------------------------------------------------------------- /applications/multus-cni/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/multus-cni/latest/Kubefile -------------------------------------------------------------------------------- /applications/multus-cni/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/multus-cni/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/multus-cni/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/multus-cni/latest/init.sh -------------------------------------------------------------------------------- /applications/multus-cni/v3.9.2/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/multus-cni/v3.9.2/Kubefile -------------------------------------------------------------------------------- /applications/multus-cni/v3.9.2/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/multus-cni/v3.9.2/init.sh -------------------------------------------------------------------------------- /applications/multus-cni/v3.9.3/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/multus-cni/v3.9.3/Kubefile -------------------------------------------------------------------------------- /applications/multus-cni/v3.9.3/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/multus-cni/v3.9.3/init.sh -------------------------------------------------------------------------------- /applications/mysql-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/mysql-operator/README.md -------------------------------------------------------------------------------- /applications/nerdctl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/nerdctl/README.md -------------------------------------------------------------------------------- /applications/nerdctl/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/nerdctl/latest/Kubefile -------------------------------------------------------------------------------- /applications/nerdctl/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/nerdctl/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/nerdctl/latest/etc/buildkitd.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/nerdctl/latest/etc/buildkitd.toml -------------------------------------------------------------------------------- /applications/nerdctl/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/nerdctl/latest/init.sh -------------------------------------------------------------------------------- /applications/netdata/v1.35.1/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/netdata/v1.35.1/Kubefile -------------------------------------------------------------------------------- /applications/neuvector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/neuvector/README.md -------------------------------------------------------------------------------- /applications/neuvector/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/neuvector/latest/Kubefile -------------------------------------------------------------------------------- /applications/neuvector/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/neuvector/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/neuvector/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/neuvector/latest/init.sh -------------------------------------------------------------------------------- /applications/nextcloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/nextcloud/README.md -------------------------------------------------------------------------------- /applications/nextcloud/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/nextcloud/latest/Kubefile -------------------------------------------------------------------------------- /applications/nextcloud/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/nextcloud/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/nextcloud/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/nextcloud/latest/init.sh -------------------------------------------------------------------------------- /applications/nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/nginx/README.md -------------------------------------------------------------------------------- /applications/nginx/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/nginx/latest/Kubefile -------------------------------------------------------------------------------- /applications/nginx/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/nginx/latest/init.sh -------------------------------------------------------------------------------- /applications/oceanbase-cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/oceanbase-cluster/README.md -------------------------------------------------------------------------------- /applications/oceanbase-cluster/v4.2.1/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/oceanbase-cluster/v4.2.1/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/oceanbase-cluster/v4.2.1/init.sh -------------------------------------------------------------------------------- /applications/oceanbase-dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/oceanbase-dashboard/README.md -------------------------------------------------------------------------------- /applications/oceanbase-dashboard/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/oceanbase-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/oceanbase-operator/README.md -------------------------------------------------------------------------------- /applications/oceanbase-operator/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/oceanbase-operator/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/oceanbase-operator/latest/init.sh -------------------------------------------------------------------------------- /applications/openebs-cstor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/openebs-cstor/README.md -------------------------------------------------------------------------------- /applications/openebs-cstor/v3.3.0/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/openebs-cstor/v3.3.0/Kubefile -------------------------------------------------------------------------------- /applications/openebs-jiva/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/openebs-jiva/README.md -------------------------------------------------------------------------------- /applications/openebs-jiva/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/openebs-jiva/latest/init.sh -------------------------------------------------------------------------------- /applications/openebs-lvm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/openebs-lvm/README.md -------------------------------------------------------------------------------- /applications/openebs-lvm/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] -------------------------------------------------------------------------------- /applications/openebs-lvm/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/openebs-lvm/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/openebs-lvm/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/openebs-lvm/latest/init.sh -------------------------------------------------------------------------------- /applications/openebs-lvm/v0.8.0/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["kubectl apply -f lvm-operator.yaml"] 4 | -------------------------------------------------------------------------------- /applications/openebs-mayastor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/openebs-mayastor/README.md -------------------------------------------------------------------------------- /applications/openebs-mayastor/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/openebs-mayastor/latest/Kubefile -------------------------------------------------------------------------------- /applications/openebs-mayastor/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/openebs-mayastor/latest/init.sh -------------------------------------------------------------------------------- /applications/openebs-mayastor/v1.0.4/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/openebs-mayastor/v1.0.4/init.sh -------------------------------------------------------------------------------- /applications/openebs-nfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/openebs-nfs/README.md -------------------------------------------------------------------------------- /applications/openebs-nfs/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/openebs-nfs/latest/Kubefile -------------------------------------------------------------------------------- /applications/openebs-nfs/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/openebs-nfs/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/openebs-nfs/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/openebs-nfs/latest/init.sh -------------------------------------------------------------------------------- /applications/openebs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/openebs/README.md -------------------------------------------------------------------------------- /applications/openebs/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/openebs/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/openebs/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/openebs/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/openebs/latest/init.sh -------------------------------------------------------------------------------- /applications/openebs/v1.9.0/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/openebs/v1.9.0/Kubefile -------------------------------------------------------------------------------- /applications/openim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/openim/README.md -------------------------------------------------------------------------------- /applications/openim/errcode/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/openim/errcode/Dockerfile -------------------------------------------------------------------------------- /applications/openim/errcode/helm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/openim/errcode/helm.sh -------------------------------------------------------------------------------- /applications/openim/errcode/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/openim/errcode/init.sh -------------------------------------------------------------------------------- /applications/openim/errcode/openIM/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/openim/errcode/openIM/.helmignore -------------------------------------------------------------------------------- /applications/openim/errcode/openIM/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/openim/errcode/openIM/Chart.yaml -------------------------------------------------------------------------------- /applications/openim/errcode/openIM/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/openim/errcode/openIM/values.yaml -------------------------------------------------------------------------------- /applications/openkruise/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/openkruise/README.md -------------------------------------------------------------------------------- /applications/openkruise/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/openkruise/latest/Kubefile -------------------------------------------------------------------------------- /applications/openkruise/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/openkruise/latest/init.sh -------------------------------------------------------------------------------- /applications/openobserve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/openobserve/README.md -------------------------------------------------------------------------------- /applications/openobserve/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/openobserve/latest/Kubefile -------------------------------------------------------------------------------- /applications/openobserve/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/openobserve/latest/init.sh -------------------------------------------------------------------------------- /applications/opentelemetry-collector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/opentelemetry-collector/README.md -------------------------------------------------------------------------------- /applications/opentelemetry-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/opentelemetry-demo/README.md -------------------------------------------------------------------------------- /applications/opentelemetry-demo/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/opentelemetry-demo/latest/init.sh -------------------------------------------------------------------------------- /applications/opentelemetry-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/opentelemetry-operator/README.md -------------------------------------------------------------------------------- /applications/oracle-mysql-operator/8.0.30-2.0.6/charts/mysql-innodbcluster/.gitignore: -------------------------------------------------------------------------------- 1 | *~ -------------------------------------------------------------------------------- /applications/oracle-mysql-operator/8.0.30-2.0.6/charts/mysql-innodbcluster/crds/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/oracle-mysql-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/oracle-mysql-operator/README.md -------------------------------------------------------------------------------- /applications/ot-redis-cluster/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/ot-redis-cluster/latest/Kubefile -------------------------------------------------------------------------------- /applications/ot-redis-cluster/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/ot-redis-cluster/latest/init.sh -------------------------------------------------------------------------------- /applications/piraeus-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/piraeus-operator/README.md -------------------------------------------------------------------------------- /applications/piraeus-operator/v2.1.1/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/piraeus-operator/v2.1.1/Kubefile -------------------------------------------------------------------------------- /applications/piraeus-operator/v2.1.1/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/piraeus-operator/v2.1.1/init.sh -------------------------------------------------------------------------------- /applications/podman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/podman/README.md -------------------------------------------------------------------------------- /applications/podman/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/podman/latest/Kubefile -------------------------------------------------------------------------------- /applications/podman/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/podman/latest/init.sh -------------------------------------------------------------------------------- /applications/portainer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/portainer/README.md -------------------------------------------------------------------------------- /applications/portainer/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/portainer/latest/Kubefile -------------------------------------------------------------------------------- /applications/portainer/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/portainer/latest/init.sh -------------------------------------------------------------------------------- /applications/prometheus-adapter/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/prometheus-adapter/latest/init.sh -------------------------------------------------------------------------------- /applications/prometheus-blackbox-exporter/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/prometheus-node-exporter/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/prometheus-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/prometheus-operator/README.md -------------------------------------------------------------------------------- /applications/prometheus-operator/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/prometheus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/prometheus/README.md -------------------------------------------------------------------------------- /applications/prometheus/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/prometheus/latest/Kubefile -------------------------------------------------------------------------------- /applications/prometheus/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/prometheus/latest/init.sh -------------------------------------------------------------------------------- /applications/promtail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/promtail/README.md -------------------------------------------------------------------------------- /applications/promtail/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/promtail/latest/Kubefile -------------------------------------------------------------------------------- /applications/promtail/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/promtail/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/promtail/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/promtail/latest/init.sh -------------------------------------------------------------------------------- /applications/prow/starter-s3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/prow/starter-s3.yaml -------------------------------------------------------------------------------- /applications/pulsar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/pulsar/README.md -------------------------------------------------------------------------------- /applications/pulsar/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/pulsar/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/pulsar/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/pulsar/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/pulsar/latest/init.sh -------------------------------------------------------------------------------- /applications/pulsar/v2.10.2/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/pulsar/v2.10.2/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/pulsar/v2.10.2/entrypoint.sh -------------------------------------------------------------------------------- /applications/pulsar/v2.10.2/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/pulsar/v2.10.2/init.sh -------------------------------------------------------------------------------- /applications/rainbond/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/rainbond/README.md -------------------------------------------------------------------------------- /applications/rainbond/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/rainbond/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/rainbond/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/rainbond/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/rainbond/latest/init.sh -------------------------------------------------------------------------------- /applications/rancher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/rancher/README.md -------------------------------------------------------------------------------- /applications/rancher/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/rancher/latest/init.sh -------------------------------------------------------------------------------- /applications/rancher/v2.6.6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/rancher/v2.6.6/Dockerfile -------------------------------------------------------------------------------- /applications/rancher/v2.6.6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/rancher/v2.6.6/README.md -------------------------------------------------------------------------------- /applications/rancher/v2.6.6/rancher/.helmignore: -------------------------------------------------------------------------------- 1 | tests 2 | -------------------------------------------------------------------------------- /applications/rancher/v2.6.6/rancher/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/rancher/v2.6.6/rancher/Chart.yaml -------------------------------------------------------------------------------- /applications/rancher/v2.6.6/rancher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/rancher/v2.6.6/rancher/README.md -------------------------------------------------------------------------------- /applications/rancher/v2.6.7/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/rancher/v2.6.7/Kubefile -------------------------------------------------------------------------------- /applications/rancher/v2.6.7/charts/rancher/.helmignore: -------------------------------------------------------------------------------- 1 | tests 2 | -------------------------------------------------------------------------------- /applications/rancher/v2.6.8/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/rancher/v2.6.8/Kubefile -------------------------------------------------------------------------------- /applications/rancher/v2.6.8/charts/rancher/.helmignore: -------------------------------------------------------------------------------- 1 | tests 2 | -------------------------------------------------------------------------------- /applications/rancher/v2.6.9/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/rancher/v2.6.9/Kubefile -------------------------------------------------------------------------------- /applications/rancher/v2.6.9/charts/rancher/.helmignore: -------------------------------------------------------------------------------- 1 | tests 2 | -------------------------------------------------------------------------------- /applications/redis-exporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/redis-exporter/README.md -------------------------------------------------------------------------------- /applications/redis-exporter/latest/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["kubectl apply -f manifests/redis-exporter.yaml"] 4 | -------------------------------------------------------------------------------- /applications/redis-exporter/latest/init.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "build redis-exporter" 3 | -------------------------------------------------------------------------------- /applications/redis-operator/3.1.4/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/redis-operator/3.1.4/Kubefile -------------------------------------------------------------------------------- /applications/redis-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/redis-operator/README.md -------------------------------------------------------------------------------- /applications/redis-operator/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/redis-operator/latest/Kubefile -------------------------------------------------------------------------------- /applications/redis-operator/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/redis-operator/latest/init.sh -------------------------------------------------------------------------------- /applications/registry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/registry/README.md -------------------------------------------------------------------------------- /applications/registry/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/registry/latest/Kubefile -------------------------------------------------------------------------------- /applications/registry/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/registry/latest/init.sh -------------------------------------------------------------------------------- /applications/rocketmq-operator/4.5.0/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/rocketmq-operator/4.5.0/Kubefile -------------------------------------------------------------------------------- /applications/rocketmq-operator/4.5.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/rocketmq-operator/4.5.0/README.md -------------------------------------------------------------------------------- /applications/rook/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/rook/latest/init.sh -------------------------------------------------------------------------------- /applications/rook/v1.10.2/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/rook/v1.10.2/Kubefile -------------------------------------------------------------------------------- /applications/rook/v1.10.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/rook/v1.10.2/README.md -------------------------------------------------------------------------------- /applications/rook/v1.9.8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/rook/v1.9.8/Dockerfile -------------------------------------------------------------------------------- /applications/rook/v1.9.8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/rook/v1.9.8/README.md -------------------------------------------------------------------------------- /applications/rook/v1.9.8/rook-ceph/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/rook/v1.9.8/rook-ceph/.helmignore -------------------------------------------------------------------------------- /applications/rook/v1.9.8/rook-ceph/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/rook/v1.9.8/rook-ceph/Chart.yaml -------------------------------------------------------------------------------- /applications/rook/v1.9.8/rook-ceph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/rook/v1.9.8/rook-ceph/README.md -------------------------------------------------------------------------------- /applications/rook/v1.9.8/rook-ceph/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/rook/v1.9.8/rook-ceph/values.yaml -------------------------------------------------------------------------------- /applications/runwasi-wasmedge/README.md: -------------------------------------------------------------------------------- 1 | ## FROM https://github.com/second-state/runwasi 2 | -------------------------------------------------------------------------------- /applications/runwasi-wasmedge/latest/build_arch: -------------------------------------------------------------------------------- 1 | amd64 2 | -------------------------------------------------------------------------------- /applications/runwasi-wasmedge/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/runwasi-wasmedge/latest/init.sh -------------------------------------------------------------------------------- /applications/sealos-patch/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/sealos-patch/latest/init.sh -------------------------------------------------------------------------------- /applications/sealos-patch/latest/upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/sealos-patch/latest/upgrade.sh -------------------------------------------------------------------------------- /applications/sealos/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/sealos/latest/init.sh -------------------------------------------------------------------------------- /applications/seaweedfs-csi-driver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/seaweedfs-csi-driver/README.md -------------------------------------------------------------------------------- /applications/seaweedfs-csi-driver/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/seaweedfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/seaweedfs/README.md -------------------------------------------------------------------------------- /applications/seaweedfs/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/seaweedfs/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/seaweedfs/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/seaweedfs/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/seaweedfs/latest/init.sh -------------------------------------------------------------------------------- /applications/signoz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/signoz/README.md -------------------------------------------------------------------------------- /applications/signoz/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/signoz/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/signoz/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/signoz/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/signoz/latest/init.sh -------------------------------------------------------------------------------- /applications/skopeo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/skopeo/README.md -------------------------------------------------------------------------------- /applications/skopeo/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/skopeo/latest/Kubefile -------------------------------------------------------------------------------- /applications/skopeo/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/skopeo/latest/init.sh -------------------------------------------------------------------------------- /applications/skywalking/8.8.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/skywalking/8.8.1/Dockerfile -------------------------------------------------------------------------------- /applications/skywalking/8.8.1/skywalking/charts/elasticsearch/.helmignore: -------------------------------------------------------------------------------- 1 | tests/ 2 | .pytest_cache/ 3 | -------------------------------------------------------------------------------- /applications/skywalking/8.8.1/skywalking/charts/elasticsearch/Makefile: -------------------------------------------------------------------------------- 1 | include ../helpers/common.mk 2 | -------------------------------------------------------------------------------- /applications/skywalking/8.8.1/skywalking/charts/elasticsearch/examples/6.x/values.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | clusterName: "six" 4 | imageTag: "6.8.6" 5 | -------------------------------------------------------------------------------- /applications/skywalking/8.8.1/skywalking/charts/elasticsearch/examples/config/watcher_encryption_key: -------------------------------------------------------------------------------- 1 | supersecret 2 | -------------------------------------------------------------------------------- /applications/sonarqube/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/sonarqube/README.md -------------------------------------------------------------------------------- /applications/sonarqube/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/sonarqube/latest/Kubefile -------------------------------------------------------------------------------- /applications/sonarqube/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/sonarqube/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/sonarqube/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/sonarqube/latest/init.sh -------------------------------------------------------------------------------- /applications/spinnaker-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/spinnaker-operator/README.md -------------------------------------------------------------------------------- /applications/spinnaker-operator/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/spinnaker-operator/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/spinnaker-operator/latest/init.sh -------------------------------------------------------------------------------- /applications/spinnaker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/spinnaker/README.md -------------------------------------------------------------------------------- /applications/spinnaker/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/spinnaker/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/spinnaker/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/spinnaker/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/spinnaker/latest/init.sh -------------------------------------------------------------------------------- /applications/sriov-network-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/sriov-network-operator/README.md -------------------------------------------------------------------------------- /applications/stakater-reloader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/stakater-reloader/README.md -------------------------------------------------------------------------------- /applications/stakater-reloader/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/stakater-reloader/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/stakater-reloader/latest/init.sh -------------------------------------------------------------------------------- /applications/tekton/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/tekton/README.md -------------------------------------------------------------------------------- /applications/tekton/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/tekton/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/tekton/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/tekton/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/tekton/latest/init.sh -------------------------------------------------------------------------------- /applications/tekton/v0.61.0/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/tekton/v0.61.0/Kubefile -------------------------------------------------------------------------------- /applications/tekton/v0.61.0/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/tekton/v0.61.0/init.sh -------------------------------------------------------------------------------- /applications/teleport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/teleport/README.md -------------------------------------------------------------------------------- /applications/teleport/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/teleport/latest/Kubefile -------------------------------------------------------------------------------- /applications/teleport/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/teleport/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/teleport/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/teleport/latest/init.sh -------------------------------------------------------------------------------- /applications/telepresence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/telepresence/README.md -------------------------------------------------------------------------------- /applications/telepresence/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/telepresence/latest/init.sh -------------------------------------------------------------------------------- /applications/tianji/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/tianji/README.md -------------------------------------------------------------------------------- /applications/tianji/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/tianji/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/tianji/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/tianji/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/tianji/latest/init.sh -------------------------------------------------------------------------------- /applications/tidb-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/tidb-operator/README.md -------------------------------------------------------------------------------- /applications/tidb-operator/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/tidb-operator/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/tidb-operator/latest/init.sh -------------------------------------------------------------------------------- /applications/tidb-operator/v1.3.7/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/tidb-operator/v1.3.7/Kubefile -------------------------------------------------------------------------------- /applications/tomcat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/tomcat/README.md -------------------------------------------------------------------------------- /applications/tomcat/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/tomcat/latest/Kubefile -------------------------------------------------------------------------------- /applications/tomcat/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/tomcat/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/tomcat/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/tomcat/latest/init.sh -------------------------------------------------------------------------------- /applications/traefik/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/traefik/README.md -------------------------------------------------------------------------------- /applications/traefik/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/traefik/latest/Kubefile -------------------------------------------------------------------------------- /applications/traefik/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/traefik/latest/init.sh -------------------------------------------------------------------------------- /applications/trivy-operator/README.md: -------------------------------------------------------------------------------- 1 | ```shell 2 | sealos run labring/trivy-operator:v0.5.0 3 | ``` 4 | -------------------------------------------------------------------------------- /applications/trivy-operator/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/trivy-operator/latest/init.sh -------------------------------------------------------------------------------- /applications/trivy-operator/v0.5.0/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/trivy-operator/v0.5.0/Kubefile -------------------------------------------------------------------------------- /applications/trivy-operator/v0.5.0/images/shim/trivyImages: -------------------------------------------------------------------------------- 1 | ghcr.io/aquasecurity/trivy:0.31.3 2 | -------------------------------------------------------------------------------- /applications/trivy-operator/v0.5.0/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/trivy-operator/v0.5.0/init.sh -------------------------------------------------------------------------------- /applications/uptime-kuma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/uptime-kuma/README.md -------------------------------------------------------------------------------- /applications/uptime-kuma/latest/.gitignore: -------------------------------------------------------------------------------- 1 | manifests 2 | install.sh 3 | Kubefile 4 | -------------------------------------------------------------------------------- /applications/uptime-kuma/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/uptime-kuma/latest/init.sh -------------------------------------------------------------------------------- /applications/vector-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/vector-operator/README.md -------------------------------------------------------------------------------- /applications/vector-operator/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/vector-operator/latest/Kubefile -------------------------------------------------------------------------------- /applications/vector-operator/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/vector-operator/latest/init.sh -------------------------------------------------------------------------------- /applications/vector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/vector/README.md -------------------------------------------------------------------------------- /applications/vector/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/vector/latest/Kubefile -------------------------------------------------------------------------------- /applications/vector/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/vector/latest/init.sh -------------------------------------------------------------------------------- /applications/velero/v1.9.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/velero/v1.9.1/Dockerfile -------------------------------------------------------------------------------- /applications/velero/v1.9.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/velero/v1.9.1/README.md -------------------------------------------------------------------------------- /applications/velero/v1.9.1/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/velero/v1.9.1/init.sh -------------------------------------------------------------------------------- /applications/vertical-pod-autoscaler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/vertical-pod-autoscaler/README.md -------------------------------------------------------------------------------- /applications/victoria-metrics-k8s-stack/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/victoria-metrics-operator/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/victoria-metrics-single/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/victoria-metrics-single/README.md -------------------------------------------------------------------------------- /applications/victoria-metrics-single/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/weave-gitops/README.md: -------------------------------------------------------------------------------- 1 | ## Usage 2 | 3 | Defualt username and password `gitops-test-user/admin`. 4 | -------------------------------------------------------------------------------- /applications/weave-gitops/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/weave-gitops/latest/init.sh -------------------------------------------------------------------------------- /applications/wiki-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/wiki-js/README.md -------------------------------------------------------------------------------- /applications/wiki-js/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/wiki-js/latest/Kubefile -------------------------------------------------------------------------------- /applications/wiki-js/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/wiki-js/latest/init.sh -------------------------------------------------------------------------------- /applications/wordpress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/wordpress/README.md -------------------------------------------------------------------------------- /applications/wordpress/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/wordpress/latest/Kubefile -------------------------------------------------------------------------------- /applications/wordpress/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/wordpress/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/wordpress/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/wordpress/latest/init.sh -------------------------------------------------------------------------------- /applications/wordpress/v6.0.1/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/wordpress/v6.0.1/Kubefile -------------------------------------------------------------------------------- /applications/zabbix-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/zabbix-agent/README.md -------------------------------------------------------------------------------- /applications/zabbix-agent/v7.0.0/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/zabbix-agent/v7.0.0/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/zabbix-agent/v7.0.0/entrypoint.sh -------------------------------------------------------------------------------- /applications/zabbix-agent/v7.0.0/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/zabbix-agent/v7.0.0/init.sh -------------------------------------------------------------------------------- /applications/zabbix-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/zabbix-server/README.md -------------------------------------------------------------------------------- /applications/zabbix-server/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/zabbix-server/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/zabbix-server/latest/init.sh -------------------------------------------------------------------------------- /applications/zadig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/zadig/README.md -------------------------------------------------------------------------------- /applications/zadig/latest/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/zadig/latest/Kubefile -------------------------------------------------------------------------------- /applications/zadig/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/zadig/latest/init.sh -------------------------------------------------------------------------------- /applications/zadig/latest/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/zadig/latest/install.sh -------------------------------------------------------------------------------- /applications/zalando-postgres-operator/v1.8.2/images/shim/postgresImage: -------------------------------------------------------------------------------- 1 | postgres:14-alpine 2 | -------------------------------------------------------------------------------- /applications/zookeeper-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/zookeeper-operator/README.md -------------------------------------------------------------------------------- /applications/zookeeper-operator/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/zookeeper-operator/latest/init.sh -------------------------------------------------------------------------------- /applications/zot-upload/main/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/zot-upload/main/Kubefile -------------------------------------------------------------------------------- /applications/zot-upload/main/for-range.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/zot-upload/main/for-range.sh -------------------------------------------------------------------------------- /applications/zot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/zot/README.md -------------------------------------------------------------------------------- /applications/zot/latest/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | CMD ["bash entrypoint.sh"] 4 | -------------------------------------------------------------------------------- /applications/zot/latest/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/zot/latest/entrypoint.sh -------------------------------------------------------------------------------- /applications/zot/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/zot/latest/init.sh -------------------------------------------------------------------------------- /applications/zot/v1.4.3/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/zot/v1.4.3/Kubefile -------------------------------------------------------------------------------- /applications/zot/v1.4.3/anonymousPolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/zot/v1.4.3/anonymousPolicy.yaml -------------------------------------------------------------------------------- /applications/zot/v1.4.3/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/zot/v1.4.3/default.yaml -------------------------------------------------------------------------------- /applications/zot/v1.4.3/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/zot/v1.4.3/init.sh -------------------------------------------------------------------------------- /applications/zot/v1.4.3/zot/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/zot/v1.4.3/zot/.helmignore -------------------------------------------------------------------------------- /applications/zot/v1.4.3/zot/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/zot/v1.4.3/zot/Chart.yaml -------------------------------------------------------------------------------- /applications/zot/v1.4.3/zot/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/zot/v1.4.3/zot/templates/pvc.yaml -------------------------------------------------------------------------------- /applications/zot/v1.4.3/zot/templates/tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/zot/v1.4.3/zot/templates/tls.yaml -------------------------------------------------------------------------------- /applications/zot/v1.4.3/zot/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/applications/zot/v1.4.3/zot/values.yaml -------------------------------------------------------------------------------- /cloud/docs/labring/affine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/cloud/docs/labring/affine/README.md -------------------------------------------------------------------------------- /cloud/docs/labring/affine/metadata/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/cloud/docs/labring/affine/metadata/config.yaml -------------------------------------------------------------------------------- /cloud/docs/labring/apisix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/cloud/docs/labring/apisix/README.md -------------------------------------------------------------------------------- /cloud/docs/labring/apisix/metadata/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/cloud/docs/labring/apisix/metadata/config.yaml -------------------------------------------------------------------------------- /cloud/docs/labring/argocd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/cloud/docs/labring/argocd/README.md -------------------------------------------------------------------------------- /cloud/docs/labring/argocd/metadata/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/cloud/docs/labring/argocd/metadata/config.yaml -------------------------------------------------------------------------------- /cloud/docs/labring/bitnami-mongodb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/cloud/docs/labring/bitnami-mongodb/README.md -------------------------------------------------------------------------------- /cloud/docs/labring/calico/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/cloud/docs/labring/calico/README.md -------------------------------------------------------------------------------- /cloud/docs/labring/cert-manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/cloud/docs/labring/cert-manager/README.md -------------------------------------------------------------------------------- /dockerimages/adminer/v4.8.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/dockerimages/adminer/v4.8.1/Dockerfile -------------------------------------------------------------------------------- /dockerimages/adminer/v4.8.1/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/dockerimages/adminer/v4.8.1/Readme.md -------------------------------------------------------------------------------- /dockerimages/casbin/main/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/dockerimages/casbin/main/Dockerfile -------------------------------------------------------------------------------- /dockerimages/casbin/main/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/dockerimages/casbin/main/default.conf -------------------------------------------------------------------------------- /dockerimages/casbin/main/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/dockerimages/casbin/main/init.sh -------------------------------------------------------------------------------- /dockerimages/chatbot-ui/main/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/dockerimages/chatbot-ui/main/init.sh -------------------------------------------------------------------------------- /dockerimages/cni-plugins/latest/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/dockerimages/cni-plugins/latest/Dockerfile -------------------------------------------------------------------------------- /dockerimages/cni-plugins/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/dockerimages/cni-plugins/latest/init.sh -------------------------------------------------------------------------------- /dockerimages/cni-plugins/v1.1.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/dockerimages/cni-plugins/v1.1.1/Dockerfile -------------------------------------------------------------------------------- /dockerimages/cni-plugins/v1.1.1/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/dockerimages/cni-plugins/v1.1.1/init.sh -------------------------------------------------------------------------------- /dockerimages/curl-kubectl/latest/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/dockerimages/curl-kubectl/latest/Dockerfile -------------------------------------------------------------------------------- /dockerimages/curl-kubectl/v1.31/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/dockerimages/curl-kubectl/v1.31/Dockerfile -------------------------------------------------------------------------------- /dockerimages/kubeblocks-tools/0.5.2/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM docker.io/apecloud/kubeblocks-tools:0.5.3-beta.4 2 | -------------------------------------------------------------------------------- /dockerimages/kuboard/v2/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/dockerimages/kuboard/v2/init.sh -------------------------------------------------------------------------------- /dockerimages/php-custom/7.2-fpm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/dockerimages/php-custom/7.2-fpm/Dockerfile -------------------------------------------------------------------------------- /dockerimages/php-custom/7.2-fpm/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/dockerimages/php-custom/7.2-fpm/Readme.md -------------------------------------------------------------------------------- /dockerimages/terminal/latest/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/dockerimages/terminal/latest/Dockerfile -------------------------------------------------------------------------------- /dockerimages/terminal/latest/vim/.vim/plugged/neocomplete.vim/.gitignore: -------------------------------------------------------------------------------- 1 | doc/tags 2 | -------------------------------------------------------------------------------- /dockerimages/terminal/latest/vim/.vim/plugged/nerdcommenter/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.swp 3 | tags 4 | -------------------------------------------------------------------------------- /dockerimages/terminal/latest/vim/.vim/plugged/nerdtree/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.swp 3 | tags 4 | -------------------------------------------------------------------------------- /dockerimages/terminal/latest/vim/.vim/plugged/undotree/.gitignore: -------------------------------------------------------------------------------- 1 | doc/tags 2 | -------------------------------------------------------------------------------- /dockerimages/terminal/latest/vim/.vim/plugged/vim-airline/.gitignore: -------------------------------------------------------------------------------- 1 | doc/tags 2 | *.lock 3 | .vim-flavor 4 | *.swp 5 | -------------------------------------------------------------------------------- /dockerimages/terminal/latest/vim/.vim/plugged/vim-airline/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | gem 'vim-flavor', '~> 1.1' 3 | -------------------------------------------------------------------------------- /dockerimages/terminal/latest/vim/.vim/plugged/vim-easymotion/.gitignore: -------------------------------------------------------------------------------- 1 | doc/tags 2 | tmp* 3 | *.lock 4 | .vim-flavor 5 | -------------------------------------------------------------------------------- /dockerimages/terminal/latest/vim/.vim/plugged/vim-go/.dockerignore: -------------------------------------------------------------------------------- 1 | .local/ 2 | .git/ 3 | -------------------------------------------------------------------------------- /dockerimages/terminal/latest/vim/.vim/plugged/vim-go/autoload/go/test-fixtures/test/.gitignore: -------------------------------------------------------------------------------- 1 | /pkg 2 | -------------------------------------------------------------------------------- /dockerimages/terminal/latest/vim/.vim/plugged/vim-go/ftplugin/gomod/mappings.vim: -------------------------------------------------------------------------------- 1 | nnoremap (go-mod-fmt) :call go#mod#Format() 2 | -------------------------------------------------------------------------------- /dockerimages/terminal/latest/vim/.vim/plugged/vim-go/gosnippets/minisnip/_go_err: -------------------------------------------------------------------------------- 1 | if err != nil { 2 | return {{+err+}} 3 | } 4 | -------------------------------------------------------------------------------- /dockerimages/terminal/latest/vim/.vim/plugged/vim-go/gosnippets/minisnip/_go_errt: -------------------------------------------------------------------------------- 1 | if err != nil { 2 | t.Fatal(err) 3 | } 4 | {{++}} 5 | -------------------------------------------------------------------------------- /dockerimages/terminal/latest/vim/.vim/plugged/vim-go/gosnippets/minisnip/_go_ff: -------------------------------------------------------------------------------- 1 | fmt.Printf("%#v\n", {{++}}) 2 | -------------------------------------------------------------------------------- /dockerimages/terminal/latest/vim/.vim/plugged/vim-nerdtree-tabs/.gitignore: -------------------------------------------------------------------------------- 1 | doc/tags 2 | -------------------------------------------------------------------------------- /dockerimages/terminal/latest/vim/.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/dockerimages/terminal/latest/vim/.vimrc -------------------------------------------------------------------------------- /dockerimages/zot/latest/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/dockerimages/zot/latest/init.sh -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/UpgradeShim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/docs/UpgradeShim.md -------------------------------------------------------------------------------- /docs/backup/containerd/clean-registry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/docs/backup/containerd/clean-registry.sh -------------------------------------------------------------------------------- /docs/backup/containerd/init-registry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/docs/backup/containerd/init-registry.sh -------------------------------------------------------------------------------- /docs/backup/docker/clean-registry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/docs/backup/docker/clean-registry.sh -------------------------------------------------------------------------------- /docs/backup/docker/init-registry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/cluster-image/HEAD/docs/backup/docker/init-registry.sh -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- 1 | ### 当前目录为测试目录,切勿正式使用 2 | -------------------------------------------------------------------------------- /test/build-dockerfile/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | -------------------------------------------------------------------------------- /test/build-kubefile/Kubefile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | --------------------------------------------------------------------------------