├── .gitignore ├── .vscode └── settings.json ├── 00.deprecated └── tf-eks │ ├── .terraform.lock.hcl │ ├── eks-cluster.tf │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ └── vpc.tf ├── Kyverno ├── kyverno-helm │ └── values.yaml ├── kyverno-policies │ ├── add-ns-quota.yaml │ ├── disallow-cri-sock-mount.yaml │ ├── disallow-empty-ingress-host.yaml │ ├── disallow-latest-tag.yaml │ ├── forbid-cpu-limits.yaml │ ├── require-drop-all.yaml │ ├── require-labels.yaml │ ├── require-pod-requests-limits.yaml │ ├── restrict-node-port.yaml │ └── restrict-service-external-ips.yaml └── policy-reporter │ ├── ingress.yaml │ └── values.yaml ├── README.md ├── actions-runner-controller-0.23.3 ├── .helmignore ├── Chart.yaml ├── README.md ├── RunnerDeployment.yaml ├── ci │ ├── ci-values.yaml │ └── singapore-test-values.yaml ├── crds │ ├── actions.summerwind.dev_horizontalrunnerautoscalers.yaml │ ├── actions.summerwind.dev_runnerdeployments.yaml │ ├── actions.summerwind.dev_runnerreplicasets.yaml │ ├── actions.summerwind.dev_runners.yaml │ └── actions.summerwind.dev_runnersets.yaml ├── templates │ ├── NOTES.txt │ ├── _actions_metrics_server_helpers.tpl │ ├── _github_webhook_server_helpers.tpl │ ├── _helpers.tpl │ ├── actionsmetrics.deployment.yaml │ ├── actionsmetrics.ingress.yaml.yml │ ├── actionsmetrics.role.yaml │ ├── actionsmetrics.role_binding.yaml │ ├── actionsmetrics.secrets.yaml │ ├── actionsmetrics.service.yaml │ ├── actionsmetrics.serviceaccount.yaml.yml │ ├── actionsmetrics.servicemonitor.yaml.yml │ ├── auth_proxy_role.yaml │ ├── auth_proxy_role_binding.yaml │ ├── certificate.yaml │ ├── ci-secret.yaml │ ├── controller.metrics.service.yaml │ ├── controller.metrics.serviceMonitor.yaml │ ├── controller.pdb.yaml │ ├── deployment.yaml │ ├── githubwebhook.deployment.yaml │ ├── githubwebhook.ingress.yaml │ ├── githubwebhook.pdb.yaml │ ├── githubwebhook.role.yaml │ ├── githubwebhook.role_binding.yaml │ ├── githubwebhook.secrets.yaml │ ├── githubwebhook.service.yaml │ ├── githubwebhook.serviceMonitor.yaml │ ├── githubwebhook.serviceaccount.yaml │ ├── leader_election_role.yaml │ ├── leader_election_role_binding.yaml │ ├── manager_role.yaml │ ├── manager_role_binding.yaml │ ├── manager_role_binding_secrets.yaml │ ├── manager_role_secrets.yaml │ ├── manager_secrets.yaml │ ├── runner_editor_role.yaml │ ├── runner_viewer_role.yaml │ ├── serviceaccount.yaml │ ├── webhook_configs.yaml │ └── webhook_service.yaml └── values.yaml ├── affinity-toleration ├── node-affinity-deploy.yml ├── pod-anti-affinity-deploy.yml └── tolerations-deploy.yml ├── argo-applicationset ├── .vscode │ └── settings.json ├── application-image-server.yaml ├── application-nginx-helm.yaml ├── applicationset-best-practices.yaml └── applicationset.yaml ├── argo-cd-app-of-apps ├── Chart.yaml ├── apps-application.yaml ├── templates │ └── sealed-secrets-application.yaml └── values.yaml ├── argo-cd ├── appProject.yaml ├── argo-cd-5.14.1 │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ └── redis-ha │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── ci │ │ │ └── haproxy-enabled-values.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _configs.tpl │ │ │ ├── _helpers.tpl │ │ │ ├── redis-auth-secret.yaml │ │ │ ├── redis-ha-announce-service.yaml │ │ │ ├── redis-ha-configmap.yaml │ │ │ ├── redis-ha-exporter-script-configmap.yaml │ │ │ ├── redis-ha-health-configmap.yaml │ │ │ ├── redis-ha-network-policy.yaml │ │ │ ├── redis-ha-pdb.yaml │ │ │ ├── redis-ha-prometheus-rule.yaml │ │ │ ├── redis-ha-role.yaml │ │ │ ├── redis-ha-rolebinding.yaml │ │ │ ├── redis-ha-secret.yaml │ │ │ ├── redis-ha-service.yaml │ │ │ ├── redis-ha-serviceaccount.yaml │ │ │ ├── redis-ha-servicemonitor.yaml │ │ │ ├── redis-ha-statefulset.yaml │ │ │ ├── redis-haproxy-deployment.yaml │ │ │ ├── redis-haproxy-pdb.yaml │ │ │ ├── redis-haproxy-role.yaml │ │ │ ├── redis-haproxy-rolebinding.yaml │ │ │ ├── redis-haproxy-service.yaml │ │ │ ├── redis-haproxy-serviceaccount.yaml │ │ │ ├── redis-haproxy-servicemonitor.yaml │ │ │ ├── redis-tls-secret.yaml │ │ │ ├── sentinel-auth-secret.yaml │ │ │ └── tests │ │ │ │ ├── test-redis-ha-configmap.yaml │ │ │ │ └── test-redis-ha-pod.yaml │ │ │ └── values.yaml │ ├── ci │ │ ├── ingress-values.yaml │ │ └── jerry-test-values.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _common.tpl │ │ ├── _helpers.tpl │ │ ├── _versions.tpl │ │ ├── aggregate-roles.yaml │ │ ├── argocd-application-controller │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── metrics.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── prometheusrule.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── statefulset.yaml │ │ ├── argocd-applicationset │ │ │ ├── deployment.yaml │ │ │ ├── metrics.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── webhook-ingress.yaml │ │ ├── argocd-configs │ │ │ ├── argocd-cm.yaml │ │ │ ├── argocd-cmd-params-cm.yaml │ │ │ ├── argocd-dex-server-tls-secret.yaml │ │ │ ├── argocd-gpg-keys-cm.yaml │ │ │ ├── argocd-notifications-cm.yaml │ │ │ ├── argocd-notifications-secret.yaml │ │ │ ├── argocd-rbac-cm.yaml │ │ │ ├── argocd-secret.yaml │ │ │ ├── argocd-server-tls.yaml │ │ │ ├── argocd-ssh-known-hosts-cm.yaml │ │ │ ├── argocd-styles-cm.yaml │ │ │ ├── argocd-tls-certs-cm.yaml │ │ │ ├── cluster-secrets.yaml │ │ │ ├── externalredis-secret.yaml │ │ │ ├── repository-credentials-secret.yaml │ │ │ └── repository-secret.yaml │ │ ├── argocd-notifications │ │ │ ├── bots │ │ │ │ └── slack │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── role.yaml │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ ├── deployment.yaml │ │ │ ├── metrics.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ ├── argocd-repo-server │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── deployment.yaml │ │ │ ├── hpa.yaml │ │ │ ├── metrics.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ ├── argocd-server │ │ │ ├── aws │ │ │ │ └── service.yaml │ │ │ ├── certificate.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── deployment.yaml │ │ │ ├── gke │ │ │ │ ├── backendconfig.yaml │ │ │ │ ├── frontendconfig.yaml │ │ │ │ └── managedcertificate.yaml │ │ │ ├── hpa.yaml │ │ │ ├── ingress-grpc.yaml │ │ │ ├── ingress.yaml │ │ │ ├── metrics.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── openshift │ │ │ │ └── route.yaml │ │ │ ├── pdb.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ ├── crds │ │ │ ├── crd-application.yaml │ │ │ ├── crd-applicationset.yaml │ │ │ ├── crd-extension.yaml │ │ │ └── crd-project.yaml │ │ ├── dex │ │ │ ├── deployment.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ ├── extra-manifests.yaml │ │ ├── networkpolicy-default-deny.yaml │ │ └── redis │ │ │ ├── deployment.yaml │ │ │ ├── metrics.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ └── values.yaml ├── argo-cd-5.51.4 │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ └── redis-ha │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── ci │ │ │ └── haproxy-enabled-values.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _configs.tpl │ │ │ ├── _helpers.tpl │ │ │ ├── redis-auth-secret.yaml │ │ │ ├── redis-ha-announce-service.yaml │ │ │ ├── redis-ha-configmap.yaml │ │ │ ├── redis-ha-exporter-script-configmap.yaml │ │ │ ├── redis-ha-health-configmap.yaml │ │ │ ├── redis-ha-network-policy.yaml │ │ │ ├── redis-ha-pdb.yaml │ │ │ ├── redis-ha-prometheus-rule.yaml │ │ │ ├── redis-ha-role.yaml │ │ │ ├── redis-ha-rolebinding.yaml │ │ │ ├── redis-ha-secret.yaml │ │ │ ├── redis-ha-service.yaml │ │ │ ├── redis-ha-serviceaccount.yaml │ │ │ ├── redis-ha-servicemonitor.yaml │ │ │ ├── redis-ha-statefulset.yaml │ │ │ ├── redis-haproxy-deployment.yaml │ │ │ ├── redis-haproxy-pdb.yaml │ │ │ ├── redis-haproxy-role.yaml │ │ │ ├── redis-haproxy-rolebinding.yaml │ │ │ ├── redis-haproxy-service.yaml │ │ │ ├── redis-haproxy-serviceaccount.yaml │ │ │ ├── redis-haproxy-servicemonitor.yaml │ │ │ ├── redis-tls-secret.yaml │ │ │ ├── sentinel-auth-secret.yaml │ │ │ └── tests │ │ │ │ ├── test-redis-ha-configmap.yaml │ │ │ │ └── test-redis-ha-pod.yaml │ │ │ └── values.yaml │ ├── ci │ │ └── baas-values.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _common.tpl │ │ ├── _helpers.tpl │ │ ├── _versions.tpl │ │ ├── aggregate-roles.yaml │ │ ├── argocd-application-controller │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── metrics.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── prometheusrule.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── statefulset.yaml │ │ ├── argocd-applicationset │ │ │ ├── certificate.yaml │ │ │ ├── deployment.yaml │ │ │ ├── metrics.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── webhook-ingress.yaml │ │ ├── argocd-configs │ │ │ ├── argocd-cm.yaml │ │ │ ├── argocd-cmd-params-cm.yaml │ │ │ ├── argocd-cmp-cm.yaml │ │ │ ├── argocd-dex-server-tls-secret.yaml │ │ │ ├── argocd-gpg-keys-cm.yaml │ │ │ ├── argocd-notifications-cm.yaml │ │ │ ├── argocd-notifications-secret.yaml │ │ │ ├── argocd-rbac-cm.yaml │ │ │ ├── argocd-repo-server-tls-secret.yaml │ │ │ ├── argocd-secret.yaml │ │ │ ├── argocd-server-tls-secret.yaml │ │ │ ├── argocd-ssh-known-hosts-cm.yaml │ │ │ ├── argocd-styles-cm.yaml │ │ │ ├── argocd-tls-certs-cm.yaml │ │ │ ├── cluster-secrets.yaml │ │ │ ├── externalredis-secret.yaml │ │ │ ├── repository-credentials-secret.yaml │ │ │ └── repository-secret.yaml │ │ ├── argocd-notifications │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── deployment.yaml │ │ │ ├── metrics.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ ├── argocd-repo-server │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── deployment.yaml │ │ │ ├── hpa.yaml │ │ │ ├── metrics.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ ├── argocd-server │ │ │ ├── aws │ │ │ │ └── service.yaml │ │ │ ├── certificate.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── deployment.yaml │ │ │ ├── gke │ │ │ │ ├── backendconfig.yaml │ │ │ │ ├── frontendconfig.yaml │ │ │ │ └── managedcertificate.yaml │ │ │ ├── hpa.yaml │ │ │ ├── ingress-grpc.yaml │ │ │ ├── ingress.yaml │ │ │ ├── metrics.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── openshift │ │ │ │ └── route.yaml │ │ │ ├── pdb.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ ├── crds │ │ │ ├── crd-application.yaml │ │ │ ├── crd-applicationset.yaml │ │ │ ├── crd-extension.yaml │ │ │ └── crd-project.yaml │ │ ├── dex │ │ │ ├── deployment.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ ├── extra-manifests.yaml │ │ ├── networkpolicy-default-deny.yaml │ │ └── redis │ │ │ ├── deployment.yaml │ │ │ ├── metrics.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ └── values.yaml └── argo-cd-8.1.0 │ ├── origin.values.yaml │ └── values.yaml ├── aws-ebs-csi ├── ebs-csi-add-on.sh ├── ebs-csi-irsa.sh ├── ebs-default-storageclass.yaml ├── ebs-pvc.yaml └── pvc-pod.yaml ├── aws-fis └── fis-karpenter-cloudformation.yaml ├── aws-load-balancer-controller ├── aws-lb-controller-1.13.2 │ ├── origin-values.yaml │ └── values.yaml ├── aws-lb-controller-1.4.8 │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── ci │ │ ├── extra_args │ │ ├── my-values.yaml │ │ └── values.yaml │ ├── crds │ │ └── crds.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── ingressclass.yaml │ │ ├── pdb.yaml │ │ ├── rbac.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ └── webhook.yaml │ └── values.yaml ├── aws-lb-controller-1.6.1 │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── ci │ │ ├── extra_args │ │ ├── my-values.yaml │ │ └── values.yaml │ ├── crds │ │ └── crds.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── ingressclass.yaml │ │ ├── pdb.yaml │ │ ├── rbac.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ └── webhook.yaml │ └── values.yaml ├── examples-applications │ ├── echo_server.md │ ├── echoservice │ │ ├── echoserver-deployment.yaml │ │ ├── echoserver-ingress.yaml │ │ └── echoserver-service.yaml │ └── helm-examples.yaml └── iam_policy.json ├── cert-manager ├── cert-manager-v1.11.1 │ ├── Chart.yaml │ ├── README.md │ ├── my-values.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── cainjector-deployment.yaml │ │ ├── cainjector-psp-clusterrole.yaml │ │ ├── cainjector-psp-clusterrolebinding.yaml │ │ ├── cainjector-psp.yaml │ │ ├── cainjector-rbac.yaml │ │ ├── cainjector-serviceaccount.yaml │ │ ├── crds.yaml │ │ ├── deployment.yaml │ │ ├── networkpolicy-egress.yaml │ │ ├── networkpolicy-webhooks.yaml │ │ ├── psp-clusterrole.yaml │ │ ├── psp-clusterrolebinding.yaml │ │ ├── psp.yaml │ │ ├── rbac.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ ├── startupapicheck-job.yaml │ │ ├── startupapicheck-psp-clusterrole.yaml │ │ ├── startupapicheck-psp-clusterrolebinding.yaml │ │ ├── startupapicheck-psp.yaml │ │ ├── startupapicheck-rbac.yaml │ │ ├── startupapicheck-serviceaccount.yaml │ │ ├── webhook-config.yaml │ │ ├── webhook-deployment.yaml │ │ ├── webhook-mutating-webhook.yaml │ │ ├── webhook-psp-clusterrole.yaml │ │ ├── webhook-psp-clusterrolebinding.yaml │ │ ├── webhook-psp.yaml │ │ ├── webhook-rbac.yaml │ │ ├── webhook-service.yaml │ │ ├── webhook-serviceaccount.yaml │ │ └── webhook-validating-webhook.yaml │ └── values.yaml └── cert-manager-v1.12.0 │ ├── Chart.yaml │ ├── README.md │ ├── my-values.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── cainjector-deployment.yaml │ ├── cainjector-poddisruptionbudget.yaml │ ├── cainjector-psp-clusterrole.yaml │ ├── cainjector-psp-clusterrolebinding.yaml │ ├── cainjector-psp.yaml │ ├── cainjector-rbac.yaml │ ├── cainjector-serviceaccount.yaml │ ├── crds.yaml │ ├── deployment.yaml │ ├── networkpolicy-egress.yaml │ ├── networkpolicy-webhooks.yaml │ ├── poddisruptionbudget.yaml │ ├── psp-clusterrole.yaml │ ├── psp-clusterrolebinding.yaml │ ├── psp.yaml │ ├── rbac.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ ├── servicemonitor.yaml │ ├── startupapicheck-job.yaml │ ├── startupapicheck-psp-clusterrole.yaml │ ├── startupapicheck-psp-clusterrolebinding.yaml │ ├── startupapicheck-psp.yaml │ ├── startupapicheck-rbac.yaml │ ├── startupapicheck-serviceaccount.yaml │ ├── webhook-config.yaml │ ├── webhook-deployment.yaml │ ├── webhook-mutating-webhook.yaml │ ├── webhook-poddisruptionbudget.yaml │ ├── webhook-psp-clusterrole.yaml │ ├── webhook-psp-clusterrolebinding.yaml │ ├── webhook-psp.yaml │ ├── webhook-rbac.yaml │ ├── webhook-service.yaml │ ├── webhook-serviceaccount.yaml │ └── webhook-validating-webhook.yaml │ └── values.yaml ├── cilium-1.14.2 ├── .helmignore ├── Chart.yaml ├── LICENSE ├── README.md ├── README.md.gotmpl ├── ci │ └── my-values.yaml ├── files │ ├── agent │ │ └── poststart-eni.bash │ ├── cilium-agent │ │ └── dashboards │ │ │ └── cilium-dashboard.json │ ├── cilium-envoy │ │ └── configmap │ │ │ └── bootstrap-config.json │ ├── cilium-operator │ │ └── dashboards │ │ │ └── cilium-operator-dashboard.json │ ├── hubble │ │ └── dashboards │ │ │ ├── hubble-dashboard.json │ │ │ └── hubble-l7-http-metrics-by-workload.json │ ├── nodeinit │ │ ├── prestop.bash │ │ └── startup.bash │ └── spire │ │ ├── init.bash │ │ └── wait-for-spire.bash ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── cilium-agent │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── daemonset.yaml │ │ ├── dashboards-configmap.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── servicemonitor.yaml │ ├── cilium-ca-bundle-configmap.yaml │ ├── cilium-ca-secret.yaml │ ├── cilium-configmap.yaml │ ├── cilium-envoy │ │ ├── configmap.yaml │ │ ├── daemonset.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── servicemonitor.yaml │ ├── cilium-gateway-api-class.yaml │ ├── cilium-ingress-class.yaml │ ├── cilium-ingress-service.yaml │ ├── cilium-nodeinit │ │ ├── daemonset.yaml │ │ └── serviceaccount.yaml │ ├── cilium-operator │ │ ├── _helpers.tpl │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── dashboards-configmap.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 │ │ ├── _helpers.tpl │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── deployment.yaml │ │ ├── metrics-service.yaml │ │ ├── poddisruptionbudget.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ ├── tls-certmanager │ │ │ ├── admin-secret.yaml │ │ │ ├── client-secret.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 │ │ └── users-configmap.yaml │ ├── clustermesh-config │ │ ├── _helpers.tpl │ │ ├── clustermesh-secret.yaml │ │ └── kvstoremesh-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 │ │ ├── dashboards-configmap.yaml │ │ ├── metrics-service.yaml │ │ ├── peer-service.yaml │ │ ├── servicemonitor.yaml │ │ ├── tls-certmanager │ │ │ ├── relay-client-secret.yaml │ │ │ ├── relay-server-secret.yaml │ │ │ ├── server-secret.yaml │ │ │ └── ui-client-certs.yaml │ │ ├── tls-cronjob │ │ │ ├── _job-spec.tpl │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── cronjob.yaml │ │ │ ├── job.yaml │ │ │ └── serviceaccount.yaml │ │ ├── tls-helm │ │ │ ├── _helpers.tpl │ │ │ ├── relay-client-secret.yaml │ │ │ ├── relay-server-secret.yaml │ │ │ ├── server-secret.yaml │ │ │ └── ui-client-certs.yaml │ │ └── tls-provided │ │ │ ├── relay-client-secret.yaml │ │ │ ├── relay-server-secret.yaml │ │ │ ├── server-secret.yaml │ │ │ └── ui-client-certs.yaml │ ├── spire │ │ ├── agent │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap.yaml │ │ │ ├── daemonset.yaml │ │ │ └── serviceaccount.yaml │ │ ├── bundle-configmap.yaml │ │ ├── namespace.yaml │ │ └── server │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── statefulset.yaml │ └── validate.yaml ├── test │ ├── busybox-pod.yaml │ └── nginx-pod.yaml ├── values.yaml └── values.yaml.tmpl ├── coredns └── pod-dns-ndot.yaml ├── crd └── crd-example.yaml ├── cronjob ├── 3times-cronjob.yaml └── 5tims-bash.sh ├── demo-app ├── eks-app-mesh-polyglot-demo │ ├── LICENSE │ ├── README.md │ └── helm-chart │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── my-values.yaml │ │ ├── productcatalog_workshop-1.0.0.tgz │ │ ├── security │ │ ├── values-psa-pss-baseline-ns.yaml │ │ ├── values-psa-pss-baseline.yaml │ │ ├── values-psa-pss-priv.yaml │ │ ├── values-psa-pss-restricted-ns.yaml │ │ ├── values-psa-pss-restricted.yaml │ │ └── values-psa-pss.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── catalog_deployment.yaml │ │ ├── catalog_service.yaml │ │ ├── detail_deployment.yaml │ │ ├── detail_service.yaml │ │ ├── frontend_deployment.yaml │ │ ├── frontend_service.yaml │ │ ├── ingress.yaml │ │ └── tests │ │ │ └── test-connection.yaml │ │ ├── values-aurora.yaml │ │ ├── values-ebs.yaml │ │ ├── values-efs.yaml │ │ ├── values-k8s-secret.yaml │ │ ├── values-secrets-manager.yaml │ │ └── values.yaml ├── grpc-deploy.yaml ├── nginx-hello │ └── nginx-hello-deploy-svc-ingress.yaml └── opentelemetry-demo-0.22.3 │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── UPGRADING.md │ ├── charts │ ├── grafana │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── ci │ │ │ ├── default-values.yaml │ │ │ ├── with-affinity-values.yaml │ │ │ ├── with-dashboard-json-values.yaml │ │ │ ├── with-dashboard-values.yaml │ │ │ ├── with-extraconfigmapmounts-values.yaml │ │ │ ├── with-image-renderer-values.yaml │ │ │ └── with-persistence.yaml │ │ ├── dashboards │ │ │ └── custom-dashboard.json │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── _pod.tpl │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-dashboard-provider.yaml │ │ │ ├── configmap.yaml │ │ │ ├── dashboards-json-configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── extra-manifests.yaml │ │ │ ├── headless-service.yaml │ │ │ ├── hpa.yaml │ │ │ ├── image-renderer-deployment.yaml │ │ │ ├── image-renderer-hpa.yaml │ │ │ ├── image-renderer-network-policy.yaml │ │ │ ├── image-renderer-service.yaml │ │ │ ├── image-renderer-servicemonitor.yaml │ │ │ ├── ingress.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── poddisruptionbudget.yaml │ │ │ ├── podsecuritypolicy.yaml │ │ │ ├── pvc.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── secret-env.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ ├── statefulset.yaml │ │ │ └── tests │ │ │ │ ├── test-configmap.yaml │ │ │ │ ├── test-podsecuritypolicy.yaml │ │ │ │ ├── test-role.yaml │ │ │ │ ├── test-rolebinding.yaml │ │ │ │ ├── test-serviceaccount.yaml │ │ │ │ └── test.yaml │ │ └── values.yaml │ ├── jaeger │ │ ├── .helmignore │ │ ├── Chart.lock │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── charts │ │ │ ├── cassandra │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── sample │ │ │ │ │ └── create-storage-gce.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── backup │ │ │ │ │ │ ├── cronjob.yaml │ │ │ │ │ │ └── rbac.yaml │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ └── statefulset.yaml │ │ │ │ └── values.yaml │ │ │ ├── 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 │ │ │ ├── elasticsearch │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── examples │ │ │ │ │ ├── config │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ └── goss.yaml │ │ │ │ │ │ ├── values.yaml │ │ │ │ │ │ └── watcher_encryption_key │ │ │ │ │ ├── default │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── rolling_upgrade.sh │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── goss.yaml │ │ │ │ │ ├── docker-for-mac │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── values.yaml │ │ │ │ │ ├── kubernetes-kind │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── values-local-path.yaml │ │ │ │ │ │ └── values.yaml │ │ │ │ │ ├── microk8s │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── values.yaml │ │ │ │ │ ├── migration │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── client.yaml │ │ │ │ │ │ ├── data.yaml │ │ │ │ │ │ └── master.yaml │ │ │ │ │ ├── minikube │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── values.yaml │ │ │ │ │ ├── multi │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── client.yaml │ │ │ │ │ │ ├── data.yaml │ │ │ │ │ │ ├── master.yaml │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── goss.yaml │ │ │ │ │ ├── networkpolicy │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── values.yaml │ │ │ │ │ ├── openshift │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ └── goss.yaml │ │ │ │ │ │ └── values.yaml │ │ │ │ │ ├── security │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ └── goss.yaml │ │ │ │ │ │ └── values.yaml │ │ │ │ │ └── upgrade │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── scripts │ │ │ │ │ │ └── upgrade.sh │ │ │ │ │ │ ├── test │ │ │ │ │ │ └── goss.yaml │ │ │ │ │ │ └── values.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ │ ├── role.yaml │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ ├── statefulset.yaml │ │ │ │ │ └── test │ │ │ │ │ │ └── test-elasticsearch-health.yaml │ │ │ │ └── values.yaml │ │ │ └── kafka │ │ │ │ ├── .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 │ │ │ │ └── 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 │ │ │ │ │ │ │ ├── _mysql.tpl │ │ │ │ │ │ │ ├── _postgresql.tpl │ │ │ │ │ │ │ ├── _redis.tpl │ │ │ │ │ │ │ └── _validations.tpl │ │ │ │ │ │ └── values.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 │ │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── configmap.yaml │ │ │ │ ├── extra-list.yaml │ │ │ │ ├── jaas-secret.yaml │ │ │ │ ├── jmx-configmap.yaml │ │ │ │ ├── jmx-metrics-svc.yaml │ │ │ │ ├── kafka-metrics-deployment.yaml │ │ │ │ ├── kafka-metrics-serviceaccount.yaml │ │ │ │ ├── kafka-metrics-svc.yaml │ │ │ │ ├── kafka-provisioning-secret.yaml │ │ │ │ ├── kafka-provisioning-serviceaccount.yaml │ │ │ │ ├── kafka-provisioning.yaml │ │ │ │ ├── log4j-configmap.yaml │ │ │ │ ├── networkpolicy-egress.yaml │ │ │ │ ├── networkpolicy-ingress.yaml │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ ├── prometheusrule.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── scripts-configmap.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── servicemonitor-jmx-metrics.yaml │ │ │ │ ├── servicemonitor-metrics.yaml │ │ │ │ ├── statefulset.yaml │ │ │ │ ├── svc-external-access.yaml │ │ │ │ ├── svc-headless.yaml │ │ │ │ ├── svc.yaml │ │ │ │ └── tls-secrets.yaml │ │ │ │ └── values.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── agent-ds.yaml │ │ │ ├── agent-sa.yaml │ │ │ ├── agent-servicemonitor.yaml │ │ │ ├── agent-svc.yaml │ │ │ ├── allinone-agent-svc.yaml │ │ │ ├── allinone-collector-svc.yaml │ │ │ ├── allinone-configmap.yaml │ │ │ ├── allinone-deploy.yaml │ │ │ ├── allinone-ing.yaml │ │ │ ├── allinone-query-svc.yaml │ │ │ ├── allinone-sa.yaml │ │ │ ├── cassandra-schema-job.yaml │ │ │ ├── cassandra-schema-sa.yaml │ │ │ ├── cassandra-secret.yaml │ │ │ ├── collector-configmap.yaml │ │ │ ├── collector-deploy.yaml │ │ │ ├── collector-hpa.yaml │ │ │ ├── collector-ing.yaml │ │ │ ├── collector-networkpolicy-egress.yaml │ │ │ ├── collector-networkpolicy-ingress.yaml │ │ │ ├── collector-sa.yaml │ │ │ ├── collector-servicemonitor.yaml │ │ │ ├── collector-svc.yaml │ │ │ ├── elasticsearch-secret.yaml │ │ │ ├── es-index-cleaner-cronjob.yaml │ │ │ ├── es-index-cleaner-sa.yaml │ │ │ ├── es-lookback-cronjob.yaml │ │ │ ├── es-lookback-sa.yaml │ │ │ ├── es-rollover-cronjob.yaml │ │ │ ├── es-rollover-hook.yml │ │ │ ├── es-rollover-sa.yaml │ │ │ ├── extra-list.yaml │ │ │ ├── hotrod-deploy.yaml │ │ │ ├── hotrod-ing.yaml │ │ │ ├── hotrod-sa.yaml │ │ │ ├── hotrod-svc.yaml │ │ │ ├── ingester-deploy.yaml │ │ │ ├── ingester-hpa.yaml │ │ │ ├── ingester-sa.yaml │ │ │ ├── ingester-servicemonitor.yaml │ │ │ ├── ingester-svc.yaml │ │ │ ├── oauth-sidecar-configmap.yaml │ │ │ ├── query-configmap.yaml │ │ │ ├── query-deploy.yaml │ │ │ ├── query-ing.yaml │ │ │ ├── query-networkpolicy-egress.yaml │ │ │ ├── query-networkpolicy-ingress.yaml │ │ │ ├── query-sa.yaml │ │ │ ├── query-servicemonitor.yaml │ │ │ ├── query-svc.yaml │ │ │ ├── spark-cronjob.yaml │ │ │ └── spark-sa.yaml │ │ └── values.yaml │ ├── opentelemetry-collector │ │ ├── .helmignore │ │ ├── CONTRIBUTING.md │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── UPGRADING.md │ │ ├── ci │ │ │ ├── clusterrole-values.yaml │ │ │ ├── config-override-values.yaml │ │ │ ├── daemonset-values.yaml │ │ │ ├── deployment-values.yaml │ │ │ ├── disabling-protocols-values.yaml │ │ │ ├── multiple-ingress-values.yaml │ │ │ ├── networkpolicy-override-values.yaml │ │ │ ├── networkpolicy-values.yaml │ │ │ ├── preset-clustermetrics-values.yaml │ │ │ ├── preset-hostmetrics-values.yaml │ │ │ ├── preset-k8sevents-values.yaml │ │ │ ├── preset-kubeletmetrics-values.yaml │ │ │ ├── preset-kubernetesattributes-values.yaml │ │ │ ├── preset-logscollection-values.yaml │ │ │ └── statefulset-values.yaml │ │ ├── examples │ │ │ ├── README.md │ │ │ ├── daemonset-and-deployment │ │ │ │ ├── daemonset-values.yaml │ │ │ │ ├── deployment-values.yaml │ │ │ │ └── rendered │ │ │ │ │ ├── configmap-agent.yaml │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── daemonset.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ ├── daemonset-collector-logs │ │ │ │ ├── rendered │ │ │ │ │ ├── configmap-agent.yaml │ │ │ │ │ ├── daemonset.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ └── values.yaml │ │ │ ├── daemonset-hostmetrics │ │ │ │ ├── rendered │ │ │ │ │ ├── configmap-agent.yaml │ │ │ │ │ ├── daemonset.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ └── values.yaml │ │ │ ├── daemonset-lifecycle-hooks │ │ │ │ ├── rendered │ │ │ │ │ ├── configmap-agent.yaml │ │ │ │ │ ├── daemonset.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ └── values.yaml │ │ │ ├── daemonset-only │ │ │ │ ├── rendered │ │ │ │ │ ├── configmap-agent.yaml │ │ │ │ │ ├── daemonset.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ └── values.yaml │ │ │ ├── deployment-only │ │ │ │ ├── rendered │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ └── values.yaml │ │ │ ├── deployment-otlp-traces │ │ │ │ ├── rendered │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ └── values.yaml │ │ │ ├── deployment-use-existing-configMap │ │ │ │ ├── deployment-values.yaml │ │ │ │ └── rendered │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ └── statefulset-only │ │ │ │ ├── rendered │ │ │ │ ├── configmap-statefulset.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── statefulset.yaml │ │ │ │ └── values.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _config.tpl │ │ │ ├── _helpers.tpl │ │ │ ├── _pod.tpl │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-agent.yaml │ │ │ ├── configmap-statefulset.yaml │ │ │ ├── configmap.yaml │ │ │ ├── daemonset.yaml │ │ │ ├── deployment.yaml │ │ │ ├── hpa.yaml │ │ │ ├── ingress.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── podmonitor.yaml │ │ │ ├── prometheusrule.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── statefulset.yaml │ │ ├── values.schema.json │ │ └── values.yaml │ └── prometheus │ │ ├── .helmignore │ │ ├── Chart.lock │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── charts │ │ ├── alertmanager │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── ci │ │ │ │ └── config-reload-values.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── configmap.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── pdb.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── services.yaml │ │ │ │ ├── statefulset.yaml │ │ │ │ └── tests │ │ │ │ │ └── test-connection.yaml │ │ │ └── values.yaml │ │ ├── kube-state-metrics │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kubeconfig-secret.yaml │ │ │ │ ├── pdb.yaml │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ ├── psp-clusterrole.yaml │ │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ │ ├── rbac-configmap.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ ├── stsdiscovery-role.yaml │ │ │ │ ├── stsdiscovery-rolebinding.yaml │ │ │ │ └── verticalpodautoscaler.yaml │ │ │ └── values.yaml │ │ ├── prometheus-node-exporter │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── ci │ │ │ │ └── port-values.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── daemonset.yaml │ │ │ │ ├── endpoints.yaml │ │ │ │ ├── psp-clusterrole.yaml │ │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ │ ├── psp.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ └── verticalpodautoscaler.yaml │ │ │ └── values.yaml │ │ └── prometheus-pushgateway │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── pushgateway-pvc.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── statefulset.yaml │ │ │ └── values.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── cm.yaml │ │ ├── deploy.yaml │ │ ├── extra-manifests.yaml │ │ ├── headless-svc.yaml │ │ ├── ingress.yaml │ │ ├── network-policy.yaml │ │ ├── pdb.yaml │ │ ├── psp.yaml │ │ ├── pvc.yaml │ │ ├── rolebinding.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── sts.yaml │ │ └── vpa.yaml │ │ ├── values.schema.json │ │ └── values.yaml │ ├── ci │ ├── collector-as-daemonset.yaml │ ├── default-values.yaml │ ├── multiple-ingress-values.yaml │ └── public-hosted-ingress-values.yaml │ ├── examples │ ├── README.md │ ├── bring-your-own-observability │ │ ├── rendered │ │ │ ├── component.yaml │ │ │ └── serviceaccount.yaml │ │ └── values.yaml │ ├── collector-as-daemonset │ │ ├── rendered │ │ │ ├── component.yaml │ │ │ ├── grafana-dashboards.yaml │ │ │ ├── grafana │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── tests │ │ │ │ │ ├── test-configmap.yaml │ │ │ │ │ ├── test-serviceaccount.yaml │ │ │ │ │ └── test.yaml │ │ │ ├── jaeger │ │ │ │ ├── allinone-agent-svc.yaml │ │ │ │ ├── allinone-collector-svc.yaml │ │ │ │ ├── allinone-deploy.yaml │ │ │ │ ├── allinone-query-svc.yaml │ │ │ │ └── allinone-sa.yaml │ │ │ ├── opentelemetry-collector │ │ │ │ ├── configmap-agent.yaml │ │ │ │ ├── daemonset.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ ├── prometheus │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── cm.yaml │ │ │ │ ├── deploy.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── serviceaccount.yaml │ │ └── values.yaml │ ├── custom-environment-variables │ │ ├── rendered │ │ │ ├── component.yaml │ │ │ ├── grafana-dashboards.yaml │ │ │ ├── grafana │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── tests │ │ │ │ │ ├── test-configmap.yaml │ │ │ │ │ ├── test-serviceaccount.yaml │ │ │ │ │ └── test.yaml │ │ │ ├── jaeger │ │ │ │ ├── allinone-agent-svc.yaml │ │ │ │ ├── allinone-collector-svc.yaml │ │ │ │ ├── allinone-deploy.yaml │ │ │ │ ├── allinone-query-svc.yaml │ │ │ │ └── allinone-sa.yaml │ │ │ ├── opentelemetry-collector │ │ │ │ ├── configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ ├── prometheus │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── cm.yaml │ │ │ │ ├── deploy.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── serviceaccount.yaml │ │ └── values.yaml │ ├── default │ │ ├── rendered │ │ │ ├── component.yaml │ │ │ ├── grafana-dashboards.yaml │ │ │ ├── grafana │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── tests │ │ │ │ │ ├── test-configmap.yaml │ │ │ │ │ ├── test-serviceaccount.yaml │ │ │ │ │ └── test.yaml │ │ │ ├── jaeger │ │ │ │ ├── allinone-agent-svc.yaml │ │ │ │ ├── allinone-collector-svc.yaml │ │ │ │ ├── allinone-deploy.yaml │ │ │ │ ├── allinone-query-svc.yaml │ │ │ │ └── allinone-sa.yaml │ │ │ ├── opentelemetry-collector │ │ │ │ ├── configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ ├── prometheus │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── cm.yaml │ │ │ │ ├── deploy.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── serviceaccount.yaml │ │ └── values.yaml │ └── public-hosted-ingress │ │ ├── rendered │ │ ├── component.yaml │ │ ├── grafana-dashboards.yaml │ │ ├── grafana │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── tests │ │ │ │ ├── test-configmap.yaml │ │ │ │ ├── test-serviceaccount.yaml │ │ │ │ └── test.yaml │ │ ├── jaeger │ │ │ ├── allinone-agent-svc.yaml │ │ │ ├── allinone-collector-svc.yaml │ │ │ ├── allinone-deploy.yaml │ │ │ ├── allinone-query-svc.yaml │ │ │ └── allinone-sa.yaml │ │ ├── opentelemetry-collector │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ ├── service.yaml │ │ │ └── serviceaccount.yaml │ │ ├── prometheus │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── cm.yaml │ │ │ ├── deploy.yaml │ │ │ ├── service.yaml │ │ │ └── serviceaccount.yaml │ │ └── serviceaccount.yaml │ │ └── values.yaml │ ├── grafana-dashboards │ ├── demo-dashboard.json │ ├── opentelemetry-collector-data-flow.json │ ├── opentelemetry-collector.json │ └── spanmetrics-dashboard.json │ ├── my-values.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── _objects.tpl │ ├── _pod.tpl │ ├── component.yaml │ ├── grafana-dashboards.yaml │ └── serviceaccount.yaml │ ├── values.schema.json │ └── values.yaml ├── deployment ├── busybox-deploy.yaml ├── date-pvc-deploy.yml ├── deploy-ecr-python-flask.yaml ├── deploy-netshoot.yaml ├── ecr-python-test-deploy.yaml └── request-busybox-deploy.yaml ├── elasticsearch ├── eck-operator-2.10.0 │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── charts │ │ └── eck-operator-crds │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ └── all-crds.yaml │ │ │ └── values.yaml │ ├── ci │ │ └── 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 │ │ ├── pdb.yaml │ │ ├── podMonitor.yaml │ │ ├── role-bindings.yaml │ │ ├── service-account.yaml │ │ ├── statefulset.yaml │ │ ├── validate-chart.yaml │ │ └── webhook.yaml │ └── values.yaml └── elasticsearch.yaml ├── envsubst └── my-values.yaml ├── external-dns ├── external-dns-1.12.2 │ ├── .helmignore │ ├── CHANGELOG.md │ ├── Chart.yaml │ ├── README.md │ ├── RELEASE.md │ ├── ci │ │ └── my-values.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── deployment.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── servicemonitor.yaml │ ├── values.schema.json │ └── values.yaml ├── external-dns-1.16.1 │ ├── origin-values.yaml │ └── values.yaml └── policy.json ├── github-actions-workflow ├── Dockerfile ├── LICENSE ├── README.md ├── app.py ├── docker-build-hash-push.yml ├── docker-build-push.yml ├── requirements.txt └── workflows │ └── build-timestamp-push.yaml ├── gitlab ├── gitlab-7.0.1 │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── Chart.yaml │ ├── LICENSE.md │ ├── README.md │ ├── charts │ │ ├── cert-manager │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── cainjector-deployment.yaml │ │ │ │ ├── cainjector-psp-clusterrole.yaml │ │ │ │ ├── cainjector-psp-clusterrolebinding.yaml │ │ │ │ ├── cainjector-psp.yaml │ │ │ │ ├── cainjector-rbac.yaml │ │ │ │ ├── cainjector-serviceaccount.yaml │ │ │ │ ├── crds.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── networkpolicy-egress.yaml │ │ │ │ ├── networkpolicy-webhooks.yaml │ │ │ │ ├── psp-clusterrole.yaml │ │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ │ ├── psp.yaml │ │ │ │ ├── rbac.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ ├── startupapicheck-job.yaml │ │ │ │ ├── startupapicheck-psp-clusterrole.yaml │ │ │ │ ├── startupapicheck-psp-clusterrolebinding.yaml │ │ │ │ ├── startupapicheck-psp.yaml │ │ │ │ ├── startupapicheck-rbac.yaml │ │ │ │ ├── startupapicheck-serviceaccount.yaml │ │ │ │ ├── webhook-config.yaml │ │ │ │ ├── webhook-deployment.yaml │ │ │ │ ├── webhook-mutating-webhook.yaml │ │ │ │ ├── webhook-psp-clusterrole.yaml │ │ │ │ ├── webhook-psp-clusterrolebinding.yaml │ │ │ │ ├── webhook-psp.yaml │ │ │ │ ├── webhook-rbac.yaml │ │ │ │ ├── webhook-service.yaml │ │ │ │ ├── webhook-serviceaccount.yaml │ │ │ │ └── webhook-validating-webhook.yaml │ │ │ └── values.yaml │ │ ├── certmanager-issuer │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── _create_issuer.sh │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _issuer.yaml │ │ │ │ ├── cert-manager.yml │ │ │ │ ├── issuer-job.yaml │ │ │ │ └── rbac-config.yaml │ │ │ └── values.yaml │ │ ├── gitlab-runner │ │ │ ├── .gitlab-ci.yml │ │ │ ├── .gitlab │ │ │ │ ├── .common.release.yml │ │ │ │ ├── branch.release.yml │ │ │ │ ├── changelog.release.yml │ │ │ │ ├── changelog.yml │ │ │ │ └── merge.release.yml │ │ │ ├── .helmignore │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Chart.yaml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _cache.tpl │ │ │ │ ├── _env_vars.tpl │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── hpa.yaml │ │ │ │ ├── role-binding.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── secrets.yaml │ │ │ │ ├── service-account.yaml │ │ │ │ ├── service-session-server.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ └── values.yaml │ │ ├── gitlab-zoekt │ │ │ ├── .gitignore │ │ │ ├── .gitlab-ci.yml │ │ │ ├── Chart.yaml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lefthook.yml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── ingress.yaml │ │ │ │ ├── networkpolicy.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── stateful_sets.yaml │ │ │ └── values.yaml │ │ ├── gitlab │ │ │ ├── Chart.yaml │ │ │ ├── charts │ │ │ │ ├── geo-logcursor │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── configmap.yml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── gitaly │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _configmap_spec.yaml │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── _pdb_spec.yaml │ │ │ │ │ │ ├── _service_spec.yaml │ │ │ │ │ │ ├── _statefulset_spec.yaml │ │ │ │ │ │ ├── configmap-with-praefect.yml │ │ │ │ │ │ ├── configmap.yml │ │ │ │ │ │ ├── pdb-with-praefect.yaml │ │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ │ ├── service-with-praefect.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ │ ├── statefulset-with-praefect.yml │ │ │ │ │ │ └── statefulset.yml │ │ │ │ │ └── values.yaml │ │ │ │ ├── gitlab-exporter │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── gitlab-pages │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── configmap.yml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ │ ├── service-custom-domains.yaml │ │ │ │ │ │ ├── service-metrics.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── gitlab-shell │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _shell.tpl │ │ │ │ │ │ ├── configmap-sshd.yml │ │ │ │ │ │ ├── configmap.yml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ │ ├── nginx-tcp-configmap.yml │ │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ │ ├── values.schema.json │ │ │ │ │ └── values.yaml │ │ │ │ ├── kas │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _default-config.yaml │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── mailroom │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── migrations │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── _jobspec.yaml │ │ │ │ │ │ ├── _serviceaccountspec.yaml │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ └── job.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── praefect │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ │ └── statefulset.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── sidekiq │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ │ ├── podmonitor.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── spamcheck │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── values.yaml │ │ │ │ ├── toolbox │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── backup-job.yaml │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── values.yaml │ │ │ │ └── webservice │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── templates │ │ │ │ │ ├── _datamodel.tpl │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── configmap.yml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── ingress_smartcard.yaml │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ ├── servicemonitor-workhorse.yaml │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ └── tests │ │ │ │ │ │ ├── test-runner.yaml │ │ │ │ │ │ └── tests.yaml │ │ │ │ │ ├── values.schema.json │ │ │ │ │ └── values.yaml │ │ │ ├── requirements.yaml │ │ │ ├── templates │ │ │ │ ├── _artifacts.tpl │ │ │ │ ├── _ciSecureFiles.tpl │ │ │ │ ├── _configure.tpl │ │ │ │ ├── _contentSecurityPolicy.tpl │ │ │ │ ├── _database.yml.tpl │ │ │ │ ├── _databaseDatamodel.tpl │ │ │ │ ├── _defaultProjectsFeatures.tpl │ │ │ │ ├── _dependencyProxy.tpl │ │ │ │ ├── _duo_auth.tpl │ │ │ │ ├── _externaldiffs.tpl │ │ │ │ ├── _geo.tpl │ │ │ │ ├── _gitaly.tpl │ │ │ │ ├── _gitlab.yaml.tpl │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _kas.tpl │ │ │ │ ├── _kerberos.tpl │ │ │ │ ├── _ldap.tpl │ │ │ │ ├── _lfs.tpl │ │ │ │ ├── _mailroom.tpl │ │ │ │ ├── _minio.tpl │ │ │ │ ├── _objectStorage.tpl │ │ │ │ ├── _omniauth.tpl │ │ │ │ ├── _packages.tpl │ │ │ │ ├── _pages.tpl │ │ │ │ ├── _postgresql.tpl │ │ │ │ ├── _praefect.tpl │ │ │ │ ├── _rails.redis.tpl │ │ │ │ ├── _redis.cluster.tpl │ │ │ │ ├── _redis.tpl │ │ │ │ ├── _registry.tpl │ │ │ │ ├── _sentry.tpl │ │ │ │ ├── _serviceAccount.tpl │ │ │ │ ├── _sidekiq.tpl │ │ │ │ ├── _smartcard.tpl │ │ │ │ ├── _smtp.tpl │ │ │ │ ├── _spamcheck.tpl │ │ │ │ ├── _suggested_reviewers.tpl │ │ │ │ ├── _terraformState.tpl │ │ │ │ ├── _tracing.tpl │ │ │ │ ├── _uploads.tpl │ │ │ │ └── _workhorse.tpl │ │ │ └── values.yaml │ │ ├── minio │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helper_create_buckets.sh │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── create-buckets-job.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── minio_deployment.yaml │ │ │ │ ├── minio_networkpolicy.yaml │ │ │ │ ├── minio_pvc.yaml │ │ │ │ ├── minio_svc.yaml │ │ │ │ ├── minioconfig_configmap.yaml │ │ │ │ └── pdb.yaml │ │ │ └── values.yaml │ │ ├── nginx-ingress │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── admission-webhooks │ │ │ │ │ ├── job-patch │ │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ │ ├── job-createSecret.yaml │ │ │ │ │ │ ├── job-patchWebhook.yaml │ │ │ │ │ │ ├── psp.yaml │ │ │ │ │ │ ├── role.yaml │ │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ └── validating-webhook.yaml │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── controller-configmap-addheaders.yaml │ │ │ │ ├── controller-configmap-proxyheaders.yaml │ │ │ │ ├── controller-configmap-tcp.yaml │ │ │ │ ├── controller-configmap-udp.yaml │ │ │ │ ├── controller-configmap.yaml │ │ │ │ ├── controller-daemonset.yaml │ │ │ │ ├── controller-deployment.yaml │ │ │ │ ├── controller-hpa.yaml │ │ │ │ ├── controller-ingressclass.yaml │ │ │ │ ├── controller-keda.yaml │ │ │ │ ├── controller-poddisruptionbudget.yaml │ │ │ │ ├── controller-prometheusrules.yaml │ │ │ │ ├── controller-psp.yaml │ │ │ │ ├── controller-role.yaml │ │ │ │ ├── controller-rolebinding.yaml │ │ │ │ ├── controller-service-internal.yaml │ │ │ │ ├── controller-service-metrics.yaml │ │ │ │ ├── controller-service-webhook.yaml │ │ │ │ ├── controller-service.yaml │ │ │ │ ├── controller-serviceaccount.yaml │ │ │ │ ├── controller-servicemonitor.yaml │ │ │ │ ├── default-backend-deployment.yaml │ │ │ │ ├── default-backend-hpa.yaml │ │ │ │ ├── default-backend-poddisruptionbudget.yaml │ │ │ │ ├── default-backend-psp.yaml │ │ │ │ ├── default-backend-role.yaml │ │ │ │ ├── default-backend-rolebinding.yaml │ │ │ │ ├── default-backend-service.yaml │ │ │ │ ├── default-backend-serviceaccount.yaml │ │ │ │ └── dh-param-secret.yaml │ │ │ └── values.yaml │ │ ├── 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 │ │ │ │ │ │ ├── _mysql.tpl │ │ │ │ │ │ ├── _postgresql.tpl │ │ │ │ │ │ ├── _redis.tpl │ │ │ │ │ │ └── _validations.tpl │ │ │ │ │ └── values.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 │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ ├── statefulset.yaml │ │ │ │ │ ├── svc-headless.yaml │ │ │ │ │ └── svc.yaml │ │ │ │ ├── prometheusrule.yaml │ │ │ │ ├── psp.yaml │ │ │ │ ├── read │ │ │ │ │ ├── extended-configmap.yaml │ │ │ │ │ ├── metrics-configmap.yaml │ │ │ │ │ ├── metrics-svc.yaml │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ ├── statefulset.yaml │ │ │ │ │ ├── svc-headless.yaml │ │ │ │ │ └── svc.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── secrets.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── tls-secrets.yaml │ │ │ ├── values.schema.json │ │ │ └── values.yaml │ │ ├── prometheus │ │ │ ├── .helmignore │ │ │ ├── Chart.lock │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── charts │ │ │ │ └── kube-state-metrics │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── README.md │ │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── kubeconfig-secret.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ │ ├── psp-clusterrole.yaml │ │ │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ │ │ ├── role.yaml │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ ├── stsdiscovery-role.yaml │ │ │ │ │ ├── stsdiscovery-rolebinding.yaml │ │ │ │ │ └── verticalpodautoscaler.yaml │ │ │ │ │ └── values.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── alertmanager │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── cm.yaml │ │ │ │ │ ├── deploy.yaml │ │ │ │ │ ├── headless-svc.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── netpol.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── psp.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── role.yaml │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── sts.yaml │ │ │ │ ├── extra-manifests.yaml │ │ │ │ ├── node-exporter │ │ │ │ │ ├── daemonset.yaml │ │ │ │ │ ├── psp.yaml │ │ │ │ │ ├── role.yaml │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── svc.yaml │ │ │ │ ├── pushgateway │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── deploy.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── netpol.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── psp.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── vpa.yaml │ │ │ │ └── server │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── cm.yaml │ │ │ │ │ ├── deploy.yaml │ │ │ │ │ ├── extra-manifests.yaml │ │ │ │ │ ├── headless-svc.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── netpol.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── psp.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ ├── sts.yaml │ │ │ │ │ └── vpa.yaml │ │ │ └── values.yaml │ │ ├── redis │ │ │ ├── .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 │ │ │ ├── img │ │ │ │ ├── redis-cluster-topology.png │ │ │ │ └── redis-topology.png │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── configmap.yaml │ │ │ │ ├── extra-list.yaml │ │ │ │ ├── headless-svc.yaml │ │ │ │ ├── health-configmap.yaml │ │ │ │ ├── master │ │ │ │ │ ├── application.yaml │ │ │ │ │ ├── psp.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ └── service.yaml │ │ │ │ ├── metrics-svc.yaml │ │ │ │ ├── networkpolicy.yaml │ │ │ │ ├── pdb.yaml │ │ │ │ ├── prometheusrule.yaml │ │ │ │ ├── replicas │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── statefulset.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── scripts-configmap.yaml │ │ │ │ ├── secret.yaml │ │ │ │ ├── sentinel │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ ├── node-services.yaml │ │ │ │ │ ├── ports-configmap.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── statefulset.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ └── tls-secret.yaml │ │ │ ├── values.schema.json │ │ │ └── values.yaml │ │ └── registry │ │ │ ├── CHANGELOG.md │ │ │ ├── Chart.yaml │ │ │ ├── index.md │ │ │ ├── templates │ │ │ ├── _database.tpl │ │ │ ├── _gc.tpl │ │ │ ├── _helpers.tpl │ │ │ ├── _migration.tpl │ │ │ ├── _profiling.tpl │ │ │ ├── _redis.tpl │ │ │ ├── _storage_default.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── hpa.yaml │ │ │ ├── ingress.yaml │ │ │ ├── migrations-job.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ │ └── values.yaml │ ├── ci │ │ └── alooo-dev-values.yaml │ ├── requirements.lock │ ├── requirements.yaml │ ├── support │ │ └── crd.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _application.tpl │ │ ├── _boolean.tpl │ │ ├── _certificates.tpl │ │ ├── _checkConfig.tpl │ │ ├── _checkConfig_duoAuth.tpl │ │ ├── _checkConfig_geo.tpl │ │ ├── _checkConfig_gitaly.tpl │ │ ├── _checkConfig_gitlab_shell.tpl │ │ ├── _checkConfig_mailroom.tpl │ │ ├── _checkConfig_nginx.tpl │ │ ├── _checkConfig_object_storage.tpl │ │ ├── _checkConfig_omniauth.tpl │ │ ├── _checkConfig_postgresql.tpl │ │ ├── _checkConfig_registry.tpl │ │ ├── _checkConfig_sidekiq.tpl │ │ ├── _checkConfig_toolbox.tpl │ │ ├── _checkConfig_webservice.tpl │ │ ├── _checkConfig_workhorse.tpl │ │ ├── _deprecations.tpl │ │ ├── _geo.tpl │ │ ├── _gitaly.tpl │ │ ├── _gitlab_exporter.tpl │ │ ├── _helpers.tpl │ │ ├── _hpa.tpl │ │ ├── _ingress.tpl │ │ ├── _kas.tpl │ │ ├── _migrations.tpl │ │ ├── _minio.tpl │ │ ├── _oauth.tpl │ │ ├── _pages.tpl │ │ ├── _pdb.tpl │ │ ├── _praefect.tpl │ │ ├── _rails.tpl │ │ ├── _redis.tpl │ │ ├── _registry.tpl │ │ ├── _runcheck.tpl │ │ ├── _runner.tpl │ │ ├── _shell.tpl │ │ ├── _suggested_reviewers.tpl │ │ ├── _workhorse.tpl │ │ ├── application.yaml │ │ ├── chart-info.yaml │ │ ├── initdb-configmap.yaml │ │ ├── shared-secrets │ │ │ ├── _generate_secrets.sh.tpl │ │ │ ├── configmap.yaml │ │ │ ├── job.yaml │ │ │ ├── rbac-config.yaml │ │ │ └── self-signed-cert-job.yml │ │ └── upgrade_check_hook.yaml │ └── values.yaml ├── gitlab-runner-0.54.0 │ ├── .gitlab-ci.yml │ ├── .gitlab │ │ ├── branch.release.yml │ │ ├── changelog.yml │ │ └── merge.release.yml │ ├── .helmignore │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── Chart.yaml │ ├── DEVELOPMENT.md │ ├── LICENSE │ ├── Makefile │ ├── NOTICE │ ├── README.md │ ├── ci │ │ └── alooo-dev-values.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _env_vars.tpl │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── role-binding.yaml │ │ ├── role.yaml │ │ ├── secrets.yaml │ │ ├── service-account.yaml │ │ ├── service-session-server.yaml │ │ ├── service.yaml │ │ └── servicemonitor.yaml │ └── values.yaml └── passmate-tls-secret.yaml ├── harbor └── harbor-1.9.1 │ ├── .helmignore │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── cert │ ├── tls.crt │ └── tls.key │ ├── conf │ ├── notary-server.json │ └── notary-signer.json │ ├── my-values.yaml │ ├── 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 │ ├── internal │ │ └── auto-tls.yaml │ ├── jobservice │ │ ├── jobservice-cm-env.yaml │ │ ├── jobservice-cm.yaml │ │ ├── jobservice-dpl.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 │ │ └── 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 ├── helm ├── helm-starter-template │ ├── 20250619 │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── hpa.yaml │ │ │ ├── ingress.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── pvc.yaml │ │ │ ├── rbac.yaml │ │ │ ├── service.yaml │ │ │ └── serviceaccount.yaml │ │ └── values.yaml │ └── legacy │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── ci │ │ └── jerry-dev-values.yaml │ │ └── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── pdb.yaml │ │ ├── pvc.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ └── tests │ │ └── test-connection.yaml ├── nginx │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── networkpolicy.yaml │ │ ├── pdb.yaml │ │ ├── pvc.yaml │ │ ├── rbac.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ └── values.yaml └── super-mario │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── deployment.yaml │ ├── hpa.yaml │ ├── ingress.yaml │ ├── networkpolicy.yaml │ ├── pdb.yaml │ ├── pvc.yaml │ ├── rbac.yaml │ ├── service.yaml │ └── serviceaccount.yaml │ └── values.yaml ├── hpa ├── php-apache-deploy.yaml └── php-hpa.yaml ├── ingress-nginx └── ingress-nginx-4.4.0 │ ├── .helmignore │ ├── CHANGELOG.md │ ├── Chart.yaml │ ├── OWNERS │ ├── README.md │ ├── README.md.gotmpl │ ├── ci │ ├── controller-custom-ingressclass-flags.yaml │ ├── daemonset-customconfig-values.yaml │ ├── daemonset-customnodeport-values.yaml │ ├── daemonset-extra-modules.yaml │ ├── daemonset-headers-values.yaml │ ├── daemonset-internal-lb-values.yaml │ ├── daemonset-nodeport-values.yaml │ ├── daemonset-podannotations-values.yaml │ ├── daemonset-tcp-udp-configMapNamespace-values.yaml │ ├── daemonset-tcp-udp-portNamePrefix-values.yaml │ ├── daemonset-tcp-udp-values.yaml │ ├── daemonset-tcp-values.yaml │ ├── deamonset-default-values.yaml │ ├── deamonset-metrics-values.yaml │ ├── deamonset-psp-values.yaml │ ├── deamonset-webhook-and-psp-values.yaml │ ├── deamonset-webhook-values.yaml │ ├── deployment-autoscaling-behavior-values.yaml │ ├── deployment-autoscaling-values.yaml │ ├── deployment-customconfig-values.yaml │ ├── deployment-customnodeport-values.yaml │ ├── deployment-default-values.yaml │ ├── deployment-extra-modules.yaml │ ├── deployment-headers-values.yaml │ ├── deployment-internal-lb-values.yaml │ ├── deployment-metrics-values.yaml │ ├── deployment-nodeport-values.yaml │ ├── deployment-podannotations-values.yaml │ ├── deployment-psp-values.yaml │ ├── deployment-tcp-udp-configMapNamespace-values.yaml │ ├── deployment-tcp-udp-portNamePrefix-values.yaml │ ├── deployment-tcp-udp-values.yaml │ ├── deployment-tcp-values.yaml │ ├── deployment-webhook-and-psp-values.yaml │ ├── deployment-webhook-extraEnvs-values.yaml │ ├── deployment-webhook-resources-values.yaml │ ├── deployment-webhook-values.yaml │ └── my-values.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── _params.tpl │ ├── admission-webhooks │ │ ├── job-patch │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── job-createSecret.yaml │ │ │ ├── job-patchWebhook.yaml │ │ │ ├── psp.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ └── serviceaccount.yaml │ │ └── validating-webhook.yaml │ ├── clusterrole.yaml │ ├── clusterrolebinding.yaml │ ├── controller-configmap-addheaders.yaml │ ├── controller-configmap-proxyheaders.yaml │ ├── controller-configmap-tcp.yaml │ ├── controller-configmap-udp.yaml │ ├── controller-configmap.yaml │ ├── controller-daemonset.yaml │ ├── controller-deployment.yaml │ ├── controller-hpa.yaml │ ├── controller-ingressclass.yaml │ ├── controller-keda.yaml │ ├── controller-poddisruptionbudget.yaml │ ├── controller-prometheusrules.yaml │ ├── controller-psp.yaml │ ├── controller-role.yaml │ ├── controller-rolebinding.yaml │ ├── controller-service-internal.yaml │ ├── controller-service-metrics.yaml │ ├── controller-service-webhook.yaml │ ├── controller-service.yaml │ ├── controller-serviceaccount.yaml │ ├── controller-servicemonitor.yaml │ ├── controller-webhooks-networkpolicy.yaml │ ├── default-backend-deployment.yaml │ ├── default-backend-hpa.yaml │ ├── default-backend-poddisruptionbudget.yaml │ ├── default-backend-psp.yaml │ ├── default-backend-role.yaml │ ├── default-backend-rolebinding.yaml │ ├── default-backend-service.yaml │ ├── default-backend-serviceaccount.yaml │ └── dh-param-secret.yaml │ └── values.yaml ├── ingress ├── ingress.yaml ├── nginx-deployment.yaml ├── nginx-ingress.yaml └── nginx-service.yaml ├── jaeger └── simple-jaeger.yml ├── job └── job.yaml ├── k8s-class.code-workspace ├── kafka-ui-0.7.5 ├── .helmignore ├── Chart.yaml ├── artifacthub-repo.yml ├── ci │ └── my-values.yaml ├── index.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── configmap_fromValues.yaml │ ├── deployment.yaml │ ├── hpa.yaml │ ├── ingress.yaml │ ├── networkpolicy-egress.yaml │ ├── networkpolicy-ingress.yaml │ ├── secret.yaml │ ├── service.yaml │ └── serviceaccount.yaml └── values.yaml ├── kafka ├── kafka-19.1.3 │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── cd │ │ └── switch-singapore-test-application.yaml │ ├── 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 │ │ └── 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 │ │ │ │ │ ├── _mysql.tpl │ │ │ │ │ ├── _postgresql.tpl │ │ │ │ │ ├── _redis.tpl │ │ │ │ │ └── _validations.tpl │ │ │ │ └── values.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 │ ├── ci │ │ └── singapore-test-values.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── extra-list.yaml │ │ ├── jaas-secret.yaml │ │ ├── jmx-configmap.yaml │ │ ├── jmx-metrics-svc.yaml │ │ ├── kafka-metrics-deployment.yaml │ │ ├── kafka-metrics-serviceaccount.yaml │ │ ├── kafka-metrics-svc.yaml │ │ ├── kafka-provisioning-secret.yaml │ │ ├── kafka-provisioning-serviceaccount.yaml │ │ ├── kafka-provisioning.yaml │ │ ├── log4j-configmap.yaml │ │ ├── networkpolicy-egress.yaml │ │ ├── networkpolicy-ingress.yaml │ │ ├── poddisruptionbudget.yaml │ │ ├── prometheusrule.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── scripts-configmap.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor-jmx-metrics.yaml │ │ ├── servicemonitor-metrics.yaml │ │ ├── statefulset.yaml │ │ ├── svc-external-access.yaml │ │ ├── svc-headless.yaml │ │ ├── svc.yaml │ │ └── tls-secrets.yaml │ └── values.yaml ├── kafka-28.0.3 │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ ├── common │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── _affinities.tpl │ │ │ │ ├── _capabilities.tpl │ │ │ │ ├── _compatibility.tpl │ │ │ │ ├── _errors.tpl │ │ │ │ ├── _images.tpl │ │ │ │ ├── _ingress.tpl │ │ │ │ ├── _labels.tpl │ │ │ │ ├── _names.tpl │ │ │ │ ├── _resources.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 │ │ └── zookeeper │ │ │ ├── .helmignore │ │ │ ├── Chart.lock │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── charts │ │ │ └── common │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── templates │ │ │ │ ├── _affinities.tpl │ │ │ │ ├── _capabilities.tpl │ │ │ │ ├── _compatibility.tpl │ │ │ │ ├── _errors.tpl │ │ │ │ ├── _images.tpl │ │ │ │ ├── _ingress.tpl │ │ │ │ ├── _labels.tpl │ │ │ │ ├── _names.tpl │ │ │ │ ├── _resources.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 │ │ │ ├── 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 │ ├── ci │ │ └── values.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── broker │ │ │ ├── config-secrets.yaml │ │ │ ├── configmap.yaml │ │ │ ├── pdb.yaml │ │ │ ├── statefulset.yaml │ │ │ ├── svc-external-access.yaml │ │ │ └── svc-headless.yaml │ │ ├── controller-eligible │ │ │ ├── config-secrets.yaml │ │ │ ├── configmap.yaml │ │ │ ├── pdb.yaml │ │ │ ├── statefulset.yaml │ │ │ ├── svc-external-access.yaml │ │ │ └── svc-headless.yaml │ │ ├── extra-list.yaml │ │ ├── log4j-configmap.yaml │ │ ├── metrics │ │ │ ├── deployment.yaml │ │ │ ├── jmx-configmap.yaml │ │ │ ├── jmx-servicemonitor.yaml │ │ │ ├── jmx-svc.yaml │ │ │ ├── prometheusrule.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── svc.yaml │ │ ├── networkpolicy.yaml │ │ ├── provisioning │ │ │ ├── job.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── tls-secret.yaml │ │ ├── rbac │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ └── serviceaccount.yaml │ │ ├── scripts-configmap.yaml │ │ ├── secrets.yaml │ │ ├── svc.yaml │ │ └── tls-secret.yaml │ └── values.yaml ├── kafka-client.yaml ├── kafka-jerry-dev-persistent.yaml └── kafka-topic.yaml ├── karpenter ├── .vscode │ └── settings.json ├── EC2NodeClass │ └── EC2NodeClass.yaml ├── NodePool │ ├── NodePool.yaml │ ├── nodepool-platform.yaml │ └── nodepool-service.yaml ├── busybox-graceful-shutdown-pod.yaml ├── deploy-node-affinity.yaml ├── karpenter-1.4.0 │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README.md.gotmpl │ ├── artifacthub-repo.yaml │ ├── ci │ │ └── values.yaml │ ├── crds │ │ ├── karpenter.k8s.aws_ec2nodeclasses.yaml │ │ ├── karpenter.sh_nodeclaims.yaml │ │ └── karpenter.sh_nodepools.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── aggregate-clusterrole.yaml │ │ ├── clusterrole-core.yaml │ │ ├── clusterrole.yaml │ │ ├── deployment.yaml │ │ ├── poddisruptionbudget.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── servicemonitor.yaml │ └── values.yaml ├── karpenter-1.5.2 │ ├── origin-values.yaml │ ├── sqs-policy.json │ └── values.yaml ├── karpenter-v0.27.5 │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README.md.gotmpl │ ├── cd │ │ └── switch-oregon-stage.yaml │ ├── ci │ │ └── my-values.yaml │ ├── crds │ │ ├── karpenter.k8s.aws_awsnodetemplates.yaml │ │ └── karpenter.sh_provisioners.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── aggregate-clusterrole.yaml │ │ ├── clusterrole-core.yaml │ │ ├── clusterrole.yaml │ │ ├── configmap-logging.yaml │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── extra-manifests.yaml │ │ ├── poddisruptionbudget.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── secret-webhook-cert.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ ├── webhooks-core.yaml │ │ └── webhooks.yaml │ └── values.yaml ├── karpenter-v0.33.1 │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README.md.gotmpl │ ├── ci │ │ └── jerry-dev-values.yaml │ ├── crds │ │ ├── karpenter.k8s.aws_ec2nodeclasses.yaml │ │ ├── karpenter.sh_nodeclaims.yaml │ │ └── karpenter.sh_nodepools.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── aggregate-clusterrole.yaml │ │ ├── clusterrole-core.yaml │ │ ├── clusterrole.yaml │ │ ├── configmap-logging.yaml │ │ ├── deployment.yaml │ │ ├── poddisruptionbudget.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── secret-webhook-cert.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ ├── webhooks-core.yaml │ │ └── webhooks.yaml │ └── values.yaml ├── legacy │ ├── awsNodeTemplate.yaml │ └── provisioner.yaml ├── podAntiAffinity-deploy.yml └── tf │ ├── .terraform.lock.hcl │ ├── README.md │ ├── karpenter-iam.md │ └── karpenter-iam.tf ├── keda └── api-hpa.yaml ├── kind └── kind-no-default.yaml ├── kubecost ├── cost-analyzer-1.103.4 │ ├── Chart.yaml │ ├── README.md │ ├── attached-disks.json │ ├── charts │ │ ├── grafana │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── configmap-dashboard-provider.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── dashboards-json-configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── secret.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── values.yaml │ │ ├── prometheus │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── charts │ │ │ │ └── kube-state-metrics │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── README.md │ │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ │ ├── psp-clusterrole.yaml │ │ │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ ├── stsdiscovery-role.yaml │ │ │ │ │ └── stsdiscovery-rolebinding.yaml │ │ │ │ │ └── values.yaml │ │ │ ├── requirements.lock │ │ │ ├── requirements.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── alertmanager-clusterrole.yaml │ │ │ │ ├── alertmanager-clusterrolebinding.yaml │ │ │ │ ├── alertmanager-configmap.yaml │ │ │ │ ├── alertmanager-deployment.yaml │ │ │ │ ├── alertmanager-ingress.yaml │ │ │ │ ├── alertmanager-networkpolicy.yaml │ │ │ │ ├── alertmanager-pdb.yaml │ │ │ │ ├── alertmanager-podsecuritypolicy.yaml │ │ │ │ ├── alertmanager-pvc.yaml │ │ │ │ ├── alertmanager-service-headless.yaml │ │ │ │ ├── alertmanager-service.yaml │ │ │ │ ├── alertmanager-serviceaccount.yaml │ │ │ │ ├── alertmanager-statefulset.yaml │ │ │ │ ├── node-exporter-daemonset.yaml │ │ │ │ ├── node-exporter-podsecuritypolicy.yaml │ │ │ │ ├── node-exporter-role.yaml │ │ │ │ ├── node-exporter-rolebinding.yaml │ │ │ │ ├── node-exporter-service.yaml │ │ │ │ ├── node-exporter-serviceaccount.yaml │ │ │ │ ├── pushgateway-clusterrole.yaml │ │ │ │ ├── pushgateway-clusterrolebinding.yaml │ │ │ │ ├── pushgateway-deployment.yaml │ │ │ │ ├── pushgateway-ingress.yaml │ │ │ │ ├── pushgateway-networkpolicy.yaml │ │ │ │ ├── pushgateway-pdb.yaml │ │ │ │ ├── pushgateway-podsecuritypolicy.yaml │ │ │ │ ├── pushgateway-pvc.yaml │ │ │ │ ├── pushgateway-service.yaml │ │ │ │ ├── pushgateway-serviceaccount.yaml │ │ │ │ ├── server-clusterrole.yaml │ │ │ │ ├── server-clusterrolebinding.yaml │ │ │ │ ├── server-configmap.yaml │ │ │ │ ├── server-deployment.yaml │ │ │ │ ├── server-ingress.yaml │ │ │ │ ├── server-networkpolicy.yaml │ │ │ │ ├── server-pdb.yaml │ │ │ │ ├── server-podsecuritypolicy.yaml │ │ │ │ ├── server-pvc.yaml │ │ │ │ ├── server-service-headless.yaml │ │ │ │ ├── server-service.yaml │ │ │ │ ├── server-serviceaccount.yaml │ │ │ │ ├── server-statefulset.yaml │ │ │ │ └── server-vpa.yaml │ │ │ └── values.yaml │ │ └── thanos │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── requirements.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── bucket-deployment.yaml │ │ │ ├── bucket-ingress.yaml │ │ │ ├── bucket-poddisruptionbudget.yaml │ │ │ ├── bucket-service.yaml │ │ │ ├── compact-deployment.yaml │ │ │ ├── compact-pvc.yaml │ │ │ ├── compact-service.yaml │ │ │ ├── compact-servicemonitor.yaml │ │ │ ├── query-deployment.yaml │ │ │ ├── query-frontend-deployment.yaml │ │ │ ├── query-frontend-horizontalpodautoscaler.yaml │ │ │ ├── query-frontend-ingress.yml │ │ │ ├── query-frontend-poddisruptionbudget.yaml │ │ │ ├── query-frontend-service.yaml │ │ │ ├── query-frontend-servicemonitor.yaml │ │ │ ├── query-horizontalpodautoscaler.yaml │ │ │ ├── query-ingress.yml │ │ │ ├── query-poddisruptionbudget.yaml │ │ │ ├── query-service.yaml │ │ │ ├── query-servicemonitor.yaml │ │ │ ├── sidecar-service.yaml │ │ │ ├── sidecar-servicemonitor.yaml │ │ │ ├── store-deployment.yaml │ │ │ ├── store-ingress.yaml │ │ │ ├── store-pvc.yaml │ │ │ ├── store-service.yaml │ │ │ └── store-servicemonitor.yaml │ │ │ └── values.yaml │ ├── cluster-metrics.json │ ├── cluster-utilization.json │ ├── custom-pricing.csv │ ├── deployment-utilization.json │ ├── grafana-templates │ │ ├── README.md │ │ ├── multi-cluster-disk-usage.json │ │ ├── multi-cluster-kubernetes-resource-efficiency.json │ │ └── multi-cluster-network-transfer-data.json │ ├── kubernetes-resource-efficiency.json │ ├── label-cost-utilization.json │ ├── namespace-utilization.json │ ├── networkCosts-metrics.json │ ├── node-utilization.json │ ├── pod-utilization-multi-cluster.json │ ├── pod-utilization.json │ ├── prom-benchmark.json │ ├── scripts │ │ └── create-admission-controller-tls.sh │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── alibaba-service-key-secret.yaml │ │ ├── aws-service-key-secret.yaml │ │ ├── awsstore-deployment-template.yaml │ │ ├── awsstore-service-account-template.yaml │ │ ├── azure-service-key-secret.yaml │ │ ├── azure-storage-config-secret.yaml │ │ ├── cost-analyzer-advanced-reports-configmap.yaml │ │ ├── cost-analyzer-alerts-configmap.yaml │ │ ├── cost-analyzer-asset-reports-configmap.yaml │ │ ├── cost-analyzer-cloud-cost-reports-configmap.yaml │ │ ├── cost-analyzer-cluster-role-binding-template.yaml │ │ ├── cost-analyzer-cluster-role-template-readonly.yaml │ │ ├── cost-analyzer-cluster-role-template.yaml │ │ ├── cost-analyzer-config-map-template.yaml │ │ ├── cost-analyzer-db-pvc-template.yaml │ │ ├── cost-analyzer-deployment-template.yaml │ │ ├── cost-analyzer-federator-config-map-template.yaml │ │ ├── cost-analyzer-frontend-config-map-template.yaml │ │ ├── cost-analyzer-ingress-template.yaml │ │ ├── cost-analyzer-metrics-config-map-template.yaml │ │ ├── cost-analyzer-network-costs-config-map-template.yaml │ │ ├── cost-analyzer-network-costs-podmonitor-template.yaml │ │ ├── cost-analyzer-network-costs-service-template.yaml │ │ ├── cost-analyzer-network-costs-template.yaml │ │ ├── cost-analyzer-network-policy-template.yaml │ │ ├── cost-analyzer-network-policy.yaml │ │ ├── cost-analyzer-oidc-config-map-template.yaml │ │ ├── cost-analyzer-pkey-configmap.yaml │ │ ├── cost-analyzer-pricing-configmap.yaml │ │ ├── cost-analyzer-prometheus-postgres-adapter-deployment.yaml │ │ ├── cost-analyzer-prometheus-postgres-adapter-service.yaml │ │ ├── cost-analyzer-prometheusrule-template.yaml │ │ ├── cost-analyzer-psp-role.template.yaml │ │ ├── cost-analyzer-psp-rolebinding.template.yaml │ │ ├── cost-analyzer-psp.template.yaml │ │ ├── cost-analyzer-pvc-template.yaml │ │ ├── cost-analyzer-saml-config-map-template.yaml │ │ ├── cost-analyzer-saved-reports-configmap.yaml │ │ ├── cost-analyzer-server-configmap.yaml │ │ ├── cost-analyzer-service-account-template.yaml │ │ ├── cost-analyzer-service-template.yaml │ │ ├── cost-analyzer-servicemonitor-template.yaml │ │ ├── external-grafana-config-map-template.yaml │ │ ├── gcpstore-config-map-template.yaml │ │ ├── grafana-attached-disk-metrics-template.yaml │ │ ├── grafana-dashboard-cluster-metrics-template.yaml │ │ ├── grafana-dashboard-cluster-utilization-template.yaml │ │ ├── grafana-dashboard-deployment-utilization-template.yaml │ │ ├── grafana-dashboard-kubernetes-resource-efficiency-template.yaml │ │ ├── grafana-dashboard-label-cost-utilization-template.yaml │ │ ├── grafana-dashboard-namespace-utilization-template.yaml │ │ ├── grafana-dashboard-node-utilization-template.yaml │ │ ├── grafana-dashboard-pod-utilization-template.yaml │ │ ├── grafana-dashboard-prometheus-metrics-template.yaml │ │ ├── grafana-datasource-template.yaml │ │ ├── grafana-networkcosts-metrics-template.yaml │ │ ├── grafana-pod-utilization-multi-cluster-template.yaml │ │ ├── kubecost-admission-controller-service-template.yaml │ │ ├── kubecost-admission-controller-template.yaml │ │ ├── kubecost-agent-secret-template.yaml │ │ ├── kubecost-agent-secretprovider-template.yaml │ │ ├── kubecost-cluster-controller-template.yaml │ │ ├── kubecost-cluster-manager-configmap-template.yaml │ │ ├── kubecost-metrics-deployment-template.yaml │ │ ├── kubecost-metrics-service-monitor-template.yaml │ │ ├── kubecost-metrics-service-template.yaml │ │ ├── kubecost-oidc-secret-template.yaml │ │ ├── kubecost-priority-class-template.yaml │ │ ├── network-costs-psp.template.yaml │ │ ├── network-costs-role.template.yaml │ │ ├── network-costs-rolebinding.template.yaml │ │ ├── network-costs-servicemonitor-template.yaml │ │ ├── query-service-cluster-role-binding-template.yaml │ │ ├── query-service-cluster-role-template.yaml │ │ ├── query-service-deployment-template.yaml │ │ ├── query-service-service-account-template.yaml │ │ └── query-service-service-template.yaml │ ├── values-agent.yaml │ ├── values-amp.yaml │ ├── values-cloud-agent.yaml │ ├── values-custom-pricing.yaml │ ├── values-eks-cost-monitoring.yaml │ ├── values-thanos.yaml │ ├── values-windows-node-affinity.yaml │ └── values.yaml ├── cost-analyzer-1.107.0 │ ├── Chart.yaml │ ├── README.md │ ├── attached-disks.json │ ├── charts │ │ ├── grafana │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── configmap-dashboard-provider.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── dashboards-json-configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── secret.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── values.yaml │ │ ├── prometheus │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── charts │ │ │ │ └── kube-state-metrics │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── README.md │ │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ │ ├── psp-clusterrole.yaml │ │ │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ ├── stsdiscovery-role.yaml │ │ │ │ │ └── stsdiscovery-rolebinding.yaml │ │ │ │ │ └── values.yaml │ │ │ ├── requirements.lock │ │ │ ├── requirements.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── alertmanager-clusterrole.yaml │ │ │ │ ├── alertmanager-clusterrolebinding.yaml │ │ │ │ ├── alertmanager-configmap.yaml │ │ │ │ ├── alertmanager-deployment.yaml │ │ │ │ ├── alertmanager-ingress.yaml │ │ │ │ ├── alertmanager-networkpolicy.yaml │ │ │ │ ├── alertmanager-pdb.yaml │ │ │ │ ├── alertmanager-podsecuritypolicy.yaml │ │ │ │ ├── alertmanager-pvc.yaml │ │ │ │ ├── alertmanager-service-headless.yaml │ │ │ │ ├── alertmanager-service.yaml │ │ │ │ ├── alertmanager-serviceaccount.yaml │ │ │ │ ├── alertmanager-statefulset.yaml │ │ │ │ ├── node-exporter-daemonset.yaml │ │ │ │ ├── node-exporter-podsecuritypolicy.yaml │ │ │ │ ├── node-exporter-role.yaml │ │ │ │ ├── node-exporter-rolebinding.yaml │ │ │ │ ├── node-exporter-service.yaml │ │ │ │ ├── node-exporter-serviceaccount.yaml │ │ │ │ ├── pushgateway-clusterrole.yaml │ │ │ │ ├── pushgateway-clusterrolebinding.yaml │ │ │ │ ├── pushgateway-deployment.yaml │ │ │ │ ├── pushgateway-ingress.yaml │ │ │ │ ├── pushgateway-networkpolicy.yaml │ │ │ │ ├── pushgateway-pdb.yaml │ │ │ │ ├── pushgateway-podsecuritypolicy.yaml │ │ │ │ ├── pushgateway-pvc.yaml │ │ │ │ ├── pushgateway-service.yaml │ │ │ │ ├── pushgateway-serviceaccount.yaml │ │ │ │ ├── server-clusterrole.yaml │ │ │ │ ├── server-clusterrolebinding.yaml │ │ │ │ ├── server-configmap.yaml │ │ │ │ ├── server-deployment.yaml │ │ │ │ ├── server-ingress.yaml │ │ │ │ ├── server-networkpolicy.yaml │ │ │ │ ├── server-pdb.yaml │ │ │ │ ├── server-podsecuritypolicy.yaml │ │ │ │ ├── server-pvc.yaml │ │ │ │ ├── server-service-headless.yaml │ │ │ │ ├── server-service.yaml │ │ │ │ ├── server-serviceaccount.yaml │ │ │ │ ├── server-statefulset.yaml │ │ │ │ └── server-vpa.yaml │ │ │ └── values.yaml │ │ └── thanos │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── requirements.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── bucket-deployment.yaml │ │ │ ├── bucket-ingress.yaml │ │ │ ├── bucket-poddisruptionbudget.yaml │ │ │ ├── bucket-service.yaml │ │ │ ├── compact-deployment.yaml │ │ │ ├── compact-pvc.yaml │ │ │ ├── compact-service.yaml │ │ │ ├── compact-servicemonitor.yaml │ │ │ ├── query-deployment.yaml │ │ │ ├── query-frontend-deployment.yaml │ │ │ ├── query-frontend-horizontalpodautoscaler.yaml │ │ │ ├── query-frontend-ingress.yml │ │ │ ├── query-frontend-poddisruptionbudget.yaml │ │ │ ├── query-frontend-service.yaml │ │ │ ├── query-frontend-servicemonitor.yaml │ │ │ ├── query-horizontalpodautoscaler.yaml │ │ │ ├── query-ingress.yml │ │ │ ├── query-poddisruptionbudget.yaml │ │ │ ├── query-service.yaml │ │ │ ├── query-servicemonitor.yaml │ │ │ ├── sidecar-service.yaml │ │ │ ├── sidecar-servicemonitor.yaml │ │ │ ├── store-deployment.yaml │ │ │ ├── store-ingress.yaml │ │ │ ├── store-pvc.yaml │ │ │ ├── store-service.yaml │ │ │ └── store-servicemonitor.yaml │ │ │ └── values.yaml │ ├── ci │ │ └── my-values.yaml │ ├── cluster-metrics.json │ ├── cluster-utilization.json │ ├── custom-pricing.csv │ ├── deployment-utilization.json │ ├── grafana-templates │ │ ├── README.md │ │ ├── multi-cluster-container-stats.json │ │ ├── multi-cluster-disk-usage.json │ │ └── multi-cluster-network-transfer-data.json │ ├── kubernetes-resource-efficiency.json │ ├── label-cost-utilization.json │ ├── namespace-utilization.json │ ├── networkCosts-metrics.json │ ├── node-utilization.json │ ├── pod-utilization-multi-cluster.json │ ├── pod-utilization.json │ ├── prom-benchmark.json │ ├── scripts │ │ └── create-admission-controller-tls.sh │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── aggregator-cloud-cost-deployment.yaml │ │ ├── aggregator-cloud-cost-service-account.yaml │ │ ├── aggregator-cloud-cost-service.yaml │ │ ├── aggregator-service.yaml │ │ ├── aggregator-statefulset.yaml │ │ ├── alibaba-service-key-secret.yaml │ │ ├── aws-service-key-secret.yaml │ │ ├── awsstore-deployment-template.yaml │ │ ├── awsstore-service-account-template.yaml │ │ ├── azure-service-key-secret.yaml │ │ ├── azure-storage-config-secret.yaml │ │ ├── cost-analyzer-advanced-reports-configmap.yaml │ │ ├── cost-analyzer-alerts-configmap.yaml │ │ ├── cost-analyzer-asset-reports-configmap.yaml │ │ ├── cost-analyzer-cloud-cost-reports-configmap.yaml │ │ ├── cost-analyzer-cluster-role-binding-template.yaml │ │ ├── cost-analyzer-cluster-role-template-readonly.yaml │ │ ├── cost-analyzer-cluster-role-template.yaml │ │ ├── cost-analyzer-config-map-template.yaml │ │ ├── cost-analyzer-db-pvc-template.yaml │ │ ├── cost-analyzer-deployment-template.yaml │ │ ├── cost-analyzer-federator-config-map-template.yaml │ │ ├── cost-analyzer-frontend-config-map-template.yaml │ │ ├── cost-analyzer-ingress-template.yaml │ │ ├── cost-analyzer-metrics-config-map-template.yaml │ │ ├── cost-analyzer-network-costs-config-map-template.yaml │ │ ├── cost-analyzer-network-costs-podmonitor-template.yaml │ │ ├── cost-analyzer-network-costs-service-template.yaml │ │ ├── cost-analyzer-network-costs-template.yaml │ │ ├── cost-analyzer-network-policy-template.yaml │ │ ├── cost-analyzer-network-policy.yaml │ │ ├── cost-analyzer-oidc-config-map-template.yaml │ │ ├── cost-analyzer-pkey-configmap.yaml │ │ ├── cost-analyzer-pricing-configmap.yaml │ │ ├── cost-analyzer-prometheus-postgres-adapter-deployment.yaml │ │ ├── cost-analyzer-prometheus-postgres-adapter-service.yaml │ │ ├── cost-analyzer-prometheusrule-template.yaml │ │ ├── cost-analyzer-psp-role.template.yaml │ │ ├── cost-analyzer-psp-rolebinding.template.yaml │ │ ├── cost-analyzer-psp.template.yaml │ │ ├── cost-analyzer-pvc-template.yaml │ │ ├── cost-analyzer-saml-config-map-template.yaml │ │ ├── cost-analyzer-saved-reports-configmap.yaml │ │ ├── cost-analyzer-server-configmap.yaml │ │ ├── cost-analyzer-service-account-template.yaml │ │ ├── cost-analyzer-service-template.yaml │ │ ├── cost-analyzer-servicemonitor-template.yaml │ │ ├── etl-utils-deployment.yaml │ │ ├── etl-utils-service.yaml │ │ ├── external-grafana-config-map-template.yaml │ │ ├── extra-manifests.yaml │ │ ├── federator-deployment-template.yaml │ │ ├── gcpstore-config-map-template.yaml │ │ ├── grafana-attached-disk-metrics-template.yaml │ │ ├── grafana-dashboard-cluster-metrics-template.yaml │ │ ├── grafana-dashboard-cluster-utilization-template.yaml │ │ ├── grafana-dashboard-deployment-utilization-template.yaml │ │ ├── grafana-dashboard-kubernetes-resource-efficiency-template.yaml │ │ ├── grafana-dashboard-label-cost-utilization-template.yaml │ │ ├── grafana-dashboard-namespace-utilization-template.yaml │ │ ├── grafana-dashboard-node-utilization-template.yaml │ │ ├── grafana-dashboard-pod-utilization-template.yaml │ │ ├── grafana-dashboard-prometheus-metrics-template.yaml │ │ ├── grafana-datasource-template.yaml │ │ ├── grafana-networkcosts-metrics-template.yaml │ │ ├── grafana-pod-utilization-multi-cluster-template.yaml │ │ ├── kubecost-admission-controller-service-template.yaml │ │ ├── kubecost-admission-controller-template.yaml │ │ ├── kubecost-agent-secret-template.yaml │ │ ├── kubecost-agent-secretprovider-template.yaml │ │ ├── kubecost-cluster-controller-template.yaml │ │ ├── kubecost-cluster-manager-configmap-template.yaml │ │ ├── kubecost-metrics-deployment-template.yaml │ │ ├── kubecost-metrics-service-monitor-template.yaml │ │ ├── kubecost-metrics-service-template.yaml │ │ ├── kubecost-oidc-secret-template.yaml │ │ ├── kubecost-priority-class-template.yaml │ │ ├── mimir-proxy-configmap-template.yaml │ │ ├── mimir-proxy-deployment-template.yaml │ │ ├── mimir-proxy-service-template.yaml │ │ ├── model-ingress-template.yaml │ │ ├── network-costs-psp.template.yaml │ │ ├── network-costs-role.template.yaml │ │ ├── network-costs-rolebinding.template.yaml │ │ ├── network-costs-servicemonitor-template.yaml │ │ ├── query-service-cluster-role-binding-template.yaml │ │ ├── query-service-cluster-role-template.yaml │ │ ├── query-service-deployment-template.yaml │ │ ├── query-service-service-account-template.yaml │ │ ├── query-service-service-template.yaml │ │ └── tests │ │ │ ├── _helpers.tpl │ │ │ └── basic-health.yaml │ ├── values-agent.yaml │ ├── values-amp.yaml │ ├── values-cloud-agent.yaml │ ├── values-custom-pricing.yaml │ ├── values-eks-cost-monitoring.yaml │ ├── values-thanos.yaml │ ├── values-windows-node-affinity.yaml │ └── values.yaml └── cost-analyzer-1.107.1 │ ├── Chart.yaml │ ├── README.md │ ├── attached-disks.json │ ├── charts │ ├── grafana │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-dashboard-provider.yaml │ │ │ ├── configmap.yaml │ │ │ ├── dashboards-json-configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ ├── podsecuritypolicy.yaml │ │ │ ├── pvc.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── secret.yaml │ │ │ ├── service.yaml │ │ │ └── serviceaccount.yaml │ │ └── values.yaml │ ├── prometheus │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── charts │ │ │ └── kube-state-metrics │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── OWNERS │ │ │ │ ├── README.md │ │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ ├── psp-clusterrole.yaml │ │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ ├── stsdiscovery-role.yaml │ │ │ │ └── stsdiscovery-rolebinding.yaml │ │ │ │ └── values.yaml │ │ ├── requirements.lock │ │ ├── requirements.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── alertmanager-clusterrole.yaml │ │ │ ├── alertmanager-clusterrolebinding.yaml │ │ │ ├── alertmanager-configmap.yaml │ │ │ ├── alertmanager-deployment.yaml │ │ │ ├── alertmanager-ingress.yaml │ │ │ ├── alertmanager-networkpolicy.yaml │ │ │ ├── alertmanager-pdb.yaml │ │ │ ├── alertmanager-podsecuritypolicy.yaml │ │ │ ├── alertmanager-pvc.yaml │ │ │ ├── alertmanager-service-headless.yaml │ │ │ ├── alertmanager-service.yaml │ │ │ ├── alertmanager-serviceaccount.yaml │ │ │ ├── alertmanager-statefulset.yaml │ │ │ ├── node-exporter-daemonset.yaml │ │ │ ├── node-exporter-podsecuritypolicy.yaml │ │ │ ├── node-exporter-role.yaml │ │ │ ├── node-exporter-rolebinding.yaml │ │ │ ├── node-exporter-service.yaml │ │ │ ├── node-exporter-serviceaccount.yaml │ │ │ ├── pushgateway-clusterrole.yaml │ │ │ ├── pushgateway-clusterrolebinding.yaml │ │ │ ├── pushgateway-deployment.yaml │ │ │ ├── pushgateway-ingress.yaml │ │ │ ├── pushgateway-networkpolicy.yaml │ │ │ ├── pushgateway-pdb.yaml │ │ │ ├── pushgateway-podsecuritypolicy.yaml │ │ │ ├── pushgateway-pvc.yaml │ │ │ ├── pushgateway-service.yaml │ │ │ ├── pushgateway-serviceaccount.yaml │ │ │ ├── server-clusterrole.yaml │ │ │ ├── server-clusterrolebinding.yaml │ │ │ ├── server-configmap.yaml │ │ │ ├── server-deployment.yaml │ │ │ ├── server-ingress.yaml │ │ │ ├── server-networkpolicy.yaml │ │ │ ├── server-pdb.yaml │ │ │ ├── server-podsecuritypolicy.yaml │ │ │ ├── server-pvc.yaml │ │ │ ├── server-service-headless.yaml │ │ │ ├── server-service.yaml │ │ │ ├── server-serviceaccount.yaml │ │ │ ├── server-statefulset.yaml │ │ │ └── server-vpa.yaml │ │ └── values.yaml │ └── thanos │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── requirements.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── bucket-deployment.yaml │ │ ├── bucket-ingress.yaml │ │ ├── bucket-poddisruptionbudget.yaml │ │ ├── bucket-service.yaml │ │ ├── compact-deployment.yaml │ │ ├── compact-pvc.yaml │ │ ├── compact-service.yaml │ │ ├── compact-servicemonitor.yaml │ │ ├── query-deployment.yaml │ │ ├── query-frontend-deployment.yaml │ │ ├── query-frontend-horizontalpodautoscaler.yaml │ │ ├── query-frontend-ingress.yml │ │ ├── query-frontend-poddisruptionbudget.yaml │ │ ├── query-frontend-service.yaml │ │ ├── query-frontend-servicemonitor.yaml │ │ ├── query-horizontalpodautoscaler.yaml │ │ ├── query-ingress.yml │ │ ├── query-poddisruptionbudget.yaml │ │ ├── query-service.yaml │ │ ├── query-servicemonitor.yaml │ │ ├── sidecar-service.yaml │ │ ├── sidecar-servicemonitor.yaml │ │ ├── store-deployment.yaml │ │ ├── store-ingress.yaml │ │ ├── store-pvc.yaml │ │ ├── store-service.yaml │ │ └── store-servicemonitor.yaml │ │ └── values.yaml │ ├── ci │ ├── jerry-test-values.yaml │ └── values-eks-cost-monitoring.yaml │ ├── cluster-metrics.json │ ├── cluster-utilization.json │ ├── custom-pricing.csv │ ├── deployment-utilization.json │ ├── grafana-templates │ ├── README.md │ ├── multi-cluster-container-stats.json │ ├── multi-cluster-disk-usage.json │ └── multi-cluster-network-transfer-data.json │ ├── kubernetes-resource-efficiency.json │ ├── label-cost-utilization.json │ ├── namespace-utilization.json │ ├── networkCosts-metrics.json │ ├── node-utilization.json │ ├── pod-utilization-multi-cluster.json │ ├── pod-utilization.json │ ├── prom-benchmark.json │ ├── scripts │ └── create-admission-controller-tls.sh │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── aggregator-cloud-cost-deployment.yaml │ ├── aggregator-cloud-cost-service-account.yaml │ ├── aggregator-cloud-cost-service.yaml │ ├── aggregator-service.yaml │ ├── aggregator-statefulset.yaml │ ├── alibaba-service-key-secret.yaml │ ├── aws-service-key-secret.yaml │ ├── awsstore-deployment-template.yaml │ ├── awsstore-service-account-template.yaml │ ├── azure-service-key-secret.yaml │ ├── azure-storage-config-secret.yaml │ ├── cost-analyzer-advanced-reports-configmap.yaml │ ├── cost-analyzer-alerts-configmap.yaml │ ├── cost-analyzer-asset-reports-configmap.yaml │ ├── cost-analyzer-cloud-cost-reports-configmap.yaml │ ├── cost-analyzer-cluster-role-binding-template.yaml │ ├── cost-analyzer-cluster-role-template-readonly.yaml │ ├── cost-analyzer-cluster-role-template.yaml │ ├── cost-analyzer-config-map-template.yaml │ ├── cost-analyzer-db-pvc-template.yaml │ ├── cost-analyzer-deployment-template.yaml │ ├── cost-analyzer-federator-config-map-template.yaml │ ├── cost-analyzer-frontend-config-map-template.yaml │ ├── cost-analyzer-ingress-template.yaml │ ├── cost-analyzer-metrics-config-map-template.yaml │ ├── cost-analyzer-network-costs-config-map-template.yaml │ ├── cost-analyzer-network-costs-podmonitor-template.yaml │ ├── cost-analyzer-network-costs-service-template.yaml │ ├── cost-analyzer-network-costs-template.yaml │ ├── cost-analyzer-network-policy-template.yaml │ ├── cost-analyzer-network-policy.yaml │ ├── cost-analyzer-oidc-config-map-template.yaml │ ├── cost-analyzer-pkey-configmap.yaml │ ├── cost-analyzer-pricing-configmap.yaml │ ├── cost-analyzer-prometheus-postgres-adapter-deployment.yaml │ ├── cost-analyzer-prometheus-postgres-adapter-service.yaml │ ├── cost-analyzer-prometheusrule-template.yaml │ ├── cost-analyzer-psp-role.template.yaml │ ├── cost-analyzer-psp-rolebinding.template.yaml │ ├── cost-analyzer-psp.template.yaml │ ├── cost-analyzer-pvc-template.yaml │ ├── cost-analyzer-saml-config-map-template.yaml │ ├── cost-analyzer-saved-reports-configmap.yaml │ ├── cost-analyzer-server-configmap.yaml │ ├── cost-analyzer-service-account-template.yaml │ ├── cost-analyzer-service-template.yaml │ ├── cost-analyzer-servicemonitor-template.yaml │ ├── etl-utils-deployment.yaml │ ├── etl-utils-service.yaml │ ├── external-grafana-config-map-template.yaml │ ├── extra-manifests.yaml │ ├── federator-deployment-template.yaml │ ├── gcpstore-config-map-template.yaml │ ├── grafana-attached-disk-metrics-template.yaml │ ├── grafana-dashboard-cluster-metrics-template.yaml │ ├── grafana-dashboard-cluster-utilization-template.yaml │ ├── grafana-dashboard-deployment-utilization-template.yaml │ ├── grafana-dashboard-kubernetes-resource-efficiency-template.yaml │ ├── grafana-dashboard-label-cost-utilization-template.yaml │ ├── grafana-dashboard-namespace-utilization-template.yaml │ ├── grafana-dashboard-node-utilization-template.yaml │ ├── grafana-dashboard-pod-utilization-template.yaml │ ├── grafana-dashboard-prometheus-metrics-template.yaml │ ├── grafana-datasource-template.yaml │ ├── grafana-networkcosts-metrics-template.yaml │ ├── grafana-pod-utilization-multi-cluster-template.yaml │ ├── kubecost-admission-controller-service-template.yaml │ ├── kubecost-admission-controller-template.yaml │ ├── kubecost-agent-secret-template.yaml │ ├── kubecost-agent-secretprovider-template.yaml │ ├── kubecost-cluster-controller-template.yaml │ ├── kubecost-cluster-manager-configmap-template.yaml │ ├── kubecost-metrics-deployment-template.yaml │ ├── kubecost-metrics-service-monitor-template.yaml │ ├── kubecost-metrics-service-template.yaml │ ├── kubecost-oidc-secret-template.yaml │ ├── kubecost-priority-class-template.yaml │ ├── mimir-proxy-configmap-template.yaml │ ├── mimir-proxy-deployment-template.yaml │ ├── mimir-proxy-service-template.yaml │ ├── model-ingress-template.yaml │ ├── network-costs-psp.template.yaml │ ├── network-costs-role.template.yaml │ ├── network-costs-rolebinding.template.yaml │ ├── network-costs-servicemonitor-template.yaml │ ├── query-service-cluster-role-binding-template.yaml │ ├── query-service-cluster-role-template.yaml │ ├── query-service-deployment-template.yaml │ ├── query-service-service-account-template.yaml │ ├── query-service-service-template.yaml │ └── tests │ │ ├── _helpers.tpl │ │ └── basic-health.yaml │ ├── values-agent.yaml │ ├── values-amp.yaml │ ├── values-cloud-agent.yaml │ ├── values-custom-pricing.yaml │ ├── values-eks-cost-monitoring.yaml │ ├── values-thanos.yaml │ ├── values-windows-node-affinity.yaml │ └── values.yaml ├── kubeletConfiguration └── kubeletConfiguration.yaml ├── limitRange ├── limitRange.yaml └── test-pod.yaml ├── loki ├── error-echo-deploy.yml ├── loki-5.36.3 │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── Makefile │ ├── README.md │ ├── charts │ │ ├── grafana-agent-operator │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── README.md.gotmpl │ │ │ ├── crds │ │ │ │ ├── monitoring.coreos.com_podmonitors.yaml │ │ │ │ ├── monitoring.coreos.com_probes.yaml │ │ │ │ ├── monitoring.coreos.com_servicemonitors.yaml │ │ │ │ ├── monitoring.grafana.com_grafanaagents.yaml │ │ │ │ ├── monitoring.grafana.com_integrations.yaml │ │ │ │ ├── monitoring.grafana.com_logsinstances.yaml │ │ │ │ ├── monitoring.grafana.com_metricsinstances.yaml │ │ │ │ └── monitoring.grafana.com_podlogs.yaml │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── operator-clusterrole.yaml │ │ │ │ ├── operator-clusterrolebinding.yaml │ │ │ │ ├── operator-deployment.yaml │ │ │ │ ├── operator-serviceaccount.yaml │ │ │ │ └── tests │ │ │ │ │ └── test-grafanaagent.yaml │ │ │ └── values.yaml │ │ └── minio │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helper_create_bucket.txt │ │ │ ├── _helper_create_policy.txt │ │ │ ├── _helper_create_user.txt │ │ │ ├── _helper_custom_command.txt │ │ │ ├── _helper_policy.tpl │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── console-ingress.yaml │ │ │ ├── console-service.yaml │ │ │ ├── deployment.yaml │ │ │ ├── gateway-deployment.yaml │ │ │ ├── ingress.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── poddisruptionbudget.yaml │ │ │ ├── post-install-create-bucket-job.yaml │ │ │ ├── post-install-create-policy-job.yaml │ │ │ ├── post-install-create-user-job.yaml │ │ │ ├── post-install-custom-command.yaml │ │ │ ├── pvc.yaml │ │ │ ├── secrets.yaml │ │ │ ├── securitycontextconstraints.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── statefulset.yaml │ │ │ └── values.yaml │ ├── ci │ │ └── jerry-test-values.yaml │ ├── docs │ │ └── examples │ │ │ ├── README.md │ │ │ ├── enterprise │ │ │ ├── README.md │ │ │ ├── enterprise-secrets.yaml │ │ │ └── overrides-enterprise-gcs.yaml │ │ │ └── oss │ │ │ ├── README.md │ │ │ ├── oss-secrets.yaml │ │ │ └── overrides-oss-gcs.yaml │ ├── reference.md.gotmpl │ ├── src │ │ ├── .yamllint.yaml │ │ ├── alerts.yaml.tpl │ │ ├── dashboards │ │ │ ├── loki-chunks.json │ │ │ ├── loki-deletion.json │ │ │ ├── loki-logs.json │ │ │ ├── loki-mixin-recording-rules.json │ │ │ ├── loki-operational.json │ │ │ ├── loki-reads-resources.json │ │ │ ├── loki-reads.json │ │ │ ├── loki-retention.json │ │ │ ├── loki-writes-resources.json │ │ │ └── loki-writes.json │ │ ├── helm-test │ │ │ ├── Dockerfile │ │ │ ├── README.md │ │ │ ├── canary_test.go │ │ │ └── default.nix │ │ └── rules.yaml.tpl │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── backend │ │ │ ├── _helpers-backend.tpl │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── hpa.yaml │ │ │ ├── poddisruptionbudget-backend.yaml │ │ │ ├── query-scheduler-discovery.yaml │ │ │ ├── service-backend-headless.yaml │ │ │ ├── service-backend.yaml │ │ │ └── statefulset-backend.yaml │ │ ├── config.yaml │ │ ├── extra-manifests.yaml │ │ ├── gateway │ │ │ ├── _helpers-gateway.tpl │ │ │ ├── configmap-gateway.yaml │ │ │ ├── deployment-gateway.yaml │ │ │ ├── hpa.yaml │ │ │ ├── ingress-gateway.yaml │ │ │ ├── poddisruptionbudget-gateway.yaml │ │ │ ├── secret-gateway.yaml │ │ │ └── service-gateway.yaml │ │ ├── ingress.yaml │ │ ├── loki-canary │ │ │ ├── _helpers.tpl │ │ │ ├── daemonset.yaml │ │ │ ├── service.yaml │ │ │ └── serviceaccount.yaml │ │ ├── monitoring │ │ │ ├── _helpers-monitoring.tpl │ │ │ ├── dashboards │ │ │ │ ├── _helpers-dashboards.tpl │ │ │ │ ├── configmap-1.yaml │ │ │ │ └── configmap-2.yaml │ │ │ ├── grafana-agent.yaml │ │ │ ├── logs-instance.yaml │ │ │ ├── loki-alerts.yaml │ │ │ ├── loki-rules.yaml │ │ │ ├── metrics-instance.yaml │ │ │ ├── pod-logs.yaml │ │ │ └── servicemonitor.yaml │ │ ├── networkpolicy.yaml │ │ ├── podsecuritypolicy.yaml │ │ ├── provisioner │ │ │ ├── _helpers.yaml │ │ │ ├── job-provisioner.yaml │ │ │ ├── role-provisioner.yaml │ │ │ ├── rolebinding-provisioner.yaml │ │ │ └── serviceaccount-provisioner.yaml │ │ ├── read │ │ │ ├── _helpers-read.tpl │ │ │ ├── deployment-read.yaml │ │ │ ├── hpa.yaml │ │ │ ├── poddisruptionbudget-read.yaml │ │ │ ├── service-read-headless.yaml │ │ │ ├── service-read.yaml │ │ │ └── statefulset-read.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── runtime-configmap.yaml │ │ ├── secret-license.yaml │ │ ├── securitycontextconstraints.yaml │ │ ├── service-memberlist.yaml │ │ ├── serviceaccount.yaml │ │ ├── single-binary │ │ │ ├── _helpers-single-binary.tpl │ │ │ ├── hpa.yaml │ │ │ ├── pdb.yaml │ │ │ ├── service-headless.yaml │ │ │ ├── service.yaml │ │ │ └── statefulset.yaml │ │ ├── table-manager │ │ │ ├── _helpers-table-manager.tpl │ │ │ ├── deployment-table-manager.yaml │ │ │ ├── service-table-manager.yaml │ │ │ └── servicemonitor-table-manager.yaml │ │ ├── tests │ │ │ ├── _helpers.tpl │ │ │ └── test-canary.yaml │ │ ├── tokengen │ │ │ ├── _helpers.yaml │ │ │ ├── clusterrole-tokengen.yaml │ │ │ ├── clusterrolebinding-tokengen.yaml │ │ │ ├── job-tokengen.yaml │ │ │ └── serviceaccount-tokengen.yaml │ │ ├── validate.yaml │ │ └── write │ │ │ ├── _helpers-write.tpl │ │ │ ├── hpa.yaml │ │ │ ├── poddisruptionbudget-write.yaml │ │ │ ├── service-write-headless.yaml │ │ │ ├── service-write.yaml │ │ │ └── statefulset-write.yaml │ └── values.yaml ├── promtail-6.15.3 │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── README.md.gotmpl │ ├── ci │ │ ├── autoscaled-deployment-values.yaml │ │ ├── default-values.yaml │ │ ├── deployment-values.yaml │ │ ├── jerry-test-values.yaml │ │ ├── netpol-values.yaml │ │ └── service-values.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── _pod.tpl │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── configmap.yaml │ │ ├── daemonset.yaml │ │ ├── deployment.yaml │ │ ├── extra-manifests.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── networkpolicy.yaml │ │ ├── podsecuritypolicy.yaml │ │ ├── prometheus-rules.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── secret.yaml │ │ ├── service-extra.yaml │ │ ├── service-metrics.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ └── verticalpodautoscaler.yaml │ └── values.yaml └── values.yaml ├── longhorn-1.5.1 ├── .helmignore ├── Chart.yaml ├── README.md ├── app-readme.md ├── ci │ └── my-values.yaml ├── longhorn-pvc-pod.yaml ├── longhorn-rwx-pvc-pod.yaml ├── questions.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── clusterrole.yaml │ ├── clusterrolebinding.yaml │ ├── crds.yaml │ ├── daemonset-sa.yaml │ ├── default-setting.yaml │ ├── deployment-driver.yaml │ ├── deployment-ui.yaml │ ├── ingress.yaml │ ├── network-policies │ │ ├── backing-image-data-source-network-policy.yaml │ │ ├── backing-image-manager-network-policy.yaml │ │ ├── instance-manager-networking.yaml │ │ ├── manager-network-policy.yaml │ │ ├── recovery-backend-network-policy.yaml │ │ ├── ui-frontend-network-policy.yaml │ │ └── webhook-network-policy.yaml │ ├── postupgrade-job.yaml │ ├── preupgrade-job.yaml │ ├── psp.yaml │ ├── registry-secret.yaml │ ├── serviceaccount.yaml │ ├── services.yaml │ ├── storageclass.yaml │ ├── tls-secrets.yaml │ ├── uninstall-job.yaml │ └── validate-psp-install.yaml └── values.yaml ├── mariadb-backup-cronjob ├── mariadb-backup-pvc.yaml └── mariadb-cronjob.yaml ├── mariadb-galera ├── mariadb-client-deploy.yaml └── mariadb-galera-7.5.3 │ ├── .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 │ ├── ci │ ├── my-values.yaml │ └── restore-values.yaml │ ├── files │ └── docker-entrypoint-initdb.d │ │ └── README.md │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── extra-list.yaml │ ├── headless-svc.yaml │ ├── initialization-configmap.yaml │ ├── metrics-svc.yaml │ ├── pdb.yaml │ ├── prometheusrules.yaml │ ├── role.yaml │ ├── rolebinding.yaml │ ├── secrets.yaml │ ├── serviceaccount.yaml │ ├── servicemonitor.yaml │ ├── statefulset.yaml │ ├── svc.yaml │ └── tls-secrets.yaml │ ├── values.schema.json │ └── values.yaml ├── metrics-server ├── metrics-server-3.10.0 │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── ci │ │ └── values.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── apiservice.yaml │ │ ├── clusterrole-aggregated-reader.yaml │ │ ├── clusterrole-nanny.yaml │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding-auth-delegator.yaml │ │ ├── clusterrolebinding-nanny.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── configmaps-nanny.yaml │ │ ├── deployment.yaml │ │ ├── pdb.yaml │ │ ├── psp.yaml │ │ ├── role-nanny.yaml │ │ ├── rolebinding-nanny.yaml │ │ ├── rolebinding.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── servicemonitor.yaml │ └── values.yaml └── metrics-server-3.11.0 │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── ci │ └── on-prem-values.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── apiservice.yaml │ ├── clusterrole-aggregated-reader.yaml │ ├── clusterrole-nanny.yaml │ ├── clusterrole.yaml │ ├── clusterrolebinding-auth-delegator.yaml │ ├── clusterrolebinding-nanny.yaml │ ├── clusterrolebinding.yaml │ ├── configmaps-nanny.yaml │ ├── deployment.yaml │ ├── pdb.yaml │ ├── psp.yaml │ ├── role-nanny.yaml │ ├── rolebinding-nanny.yaml │ ├── rolebinding.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ └── servicemonitor.yaml │ └── values.yaml ├── mongodb ├── mongodb-client-deploy.yaml ├── psmdb-db-1.15.0 │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── ci │ │ └── values.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── cluster-secret.yaml │ │ └── cluster.yaml │ └── values.yaml └── psmdb-operator-1.15.0 │ ├── .helmignore │ ├── Chart.yaml │ ├── LICENSE.txt │ ├── README.md │ ├── ci │ └── values.yaml │ ├── crds │ └── crd.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── namespace.yaml │ ├── role-binding.yaml │ └── role.yaml │ └── values.yaml ├── network-policy ├── manifests │ ├── 00-namespace.yaml │ ├── 01-demo-app.yaml │ ├── 02-clients-same-ns.yaml │ ├── 03-clients-another-ns.yaml │ └── ingress.yaml └── policies │ ├── 01-deny-all-ingress.yaml │ ├── 02-allow-ingress-from-samens.yaml │ ├── 03-allow-ingress-from-samens-client-one.yaml │ ├── 04-allow-ingress-from-xns.yaml │ ├── 05-allow-ingress-from-xns-client-one.yaml │ ├── 06-deny-egress-from-client-one.yaml │ ├── 07-allow-egress-to-coredns.yaml │ ├── 08-allow-egress-to-demo-app.yaml │ ├── 09-allow-egress-to-ip.yaml │ └── allow-ingress-from-ip.yaml ├── nfs-server-provisioner-1.8.0 ├── .helmignore ├── Chart.yaml ├── README.md ├── ci │ └── my-values.yaml ├── nfs-busybox-deployment.yaml ├── nfs-pvc.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── clusterrole.yaml │ ├── priorityclass.yaml │ ├── rolebinding.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ ├── statefulset.yaml │ └── storageclass.yaml └── values.yaml ├── nginx-webserver └── nginx-15.1.0 │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── cd │ └── my-application.yaml │ ├── 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 │ ├── ci │ ├── ingress-values.yaml │ └── my-values.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── extra-list.yaml │ ├── health-ingress.yaml │ ├── hpa.yaml │ ├── ingress.yaml │ ├── pdb.yaml │ ├── prometheusrules.yaml │ ├── server-block-configmap.yaml │ ├── serviceaccount.yaml │ ├── servicemonitor.yaml │ ├── svc.yaml │ └── tls-secrets.yaml │ ├── values.schema.json │ └── values.yaml ├── node-selector └── node-selector-deployment.yaml ├── openebs ├── openebs-lite-sc.yaml └── openebs-operator-lite.yaml ├── opentelemetry-collector ├── opentelemetry-collector-0.59.1 │ ├── .helmignore │ ├── CONTRIBUTING.md │ ├── Chart.yaml │ ├── README.md │ ├── UPGRADING.md │ ├── ci │ │ ├── clusterrole-values.yaml │ │ ├── config-override-values.yaml │ │ ├── daemonset-values.yaml │ │ ├── deployment-values.yaml │ │ ├── disabling-protocols-values.yaml │ │ ├── multiple-ingress-values.yaml │ │ ├── networkpolicy-override-values.yaml │ │ ├── networkpolicy-values.yaml │ │ ├── preset-clustermetrics-values.yaml │ │ ├── preset-hostmetrics-values.yaml │ │ ├── preset-k8sevents-values.yaml │ │ ├── preset-kubeletmetrics-values.yaml │ │ ├── preset-kubernetesattributes-values.yaml │ │ ├── preset-logscollection-values.yaml │ │ └── statefulset-values.yaml │ ├── examples │ │ ├── README.md │ │ ├── daemonset-and-deployment │ │ │ ├── daemonset-values.yaml │ │ │ ├── deployment-values.yaml │ │ │ └── rendered │ │ │ │ ├── configmap-agent.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── daemonset.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── serviceaccount.yaml │ │ ├── daemonset-collector-logs │ │ │ ├── rendered │ │ │ │ ├── configmap-agent.yaml │ │ │ │ ├── daemonset.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── values.yaml │ │ ├── daemonset-hostmetrics │ │ │ ├── rendered │ │ │ │ ├── configmap-agent.yaml │ │ │ │ ├── daemonset.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── values.yaml │ │ ├── daemonset-lifecycle-hooks │ │ │ ├── rendered │ │ │ │ ├── configmap-agent.yaml │ │ │ │ ├── daemonset.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── values.yaml │ │ ├── daemonset-only │ │ │ ├── rendered │ │ │ │ ├── configmap-agent.yaml │ │ │ │ ├── daemonset.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── values.yaml │ │ ├── deployment-only │ │ │ ├── rendered │ │ │ │ ├── configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── values.yaml │ │ ├── deployment-otlp-traces │ │ │ ├── rendered │ │ │ │ ├── configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ └── values.yaml │ │ ├── deployment-use-existing-configMap │ │ │ ├── deployment-values.yaml │ │ │ └── rendered │ │ │ │ ├── deployment.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── serviceaccount.yaml │ │ └── statefulset-only │ │ │ ├── rendered │ │ │ ├── configmap-statefulset.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── statefulset.yaml │ │ │ └── values.yaml │ ├── my-values.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _config.tpl │ │ ├── _helpers.tpl │ │ ├── _pod.tpl │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── configmap-agent.yaml │ │ ├── configmap-statefulset.yaml │ │ ├── configmap.yaml │ │ ├── daemonset.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── networkpolicy.yaml │ │ ├── pdb.yaml │ │ ├── podmonitor.yaml │ │ ├── prometheusrule.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ └── statefulset.yaml │ ├── values.schema.json │ └── values.yaml └── opentelemetry-collector.yaml ├── opentelemetry-instrumentation └── opentelemetry-instrumentation.yaml ├── opentelemetry-operator └── opentelemetry-operator-0.29.2 │ ├── .helmignore │ ├── CONTRIBUTING.md │ ├── Chart.yaml │ ├── README.md │ ├── UPGRADING.md │ ├── ci │ ├── cert-manager-disable-nameoverride-values.yaml │ ├── cert-manager-disable-values.yaml │ ├── nameoverride-values.yaml │ ├── secret-name-nameoverride-values.yaml │ └── secret-name-values.yaml │ ├── crds │ ├── crd-opentelemetrycollector.yaml │ └── crd-opentelemetryinstrumentation.yaml │ ├── examples │ ├── README.md │ └── default │ │ ├── rendered │ │ ├── admission-webhooks │ │ │ └── operator-webhook-with-cert-manager.yaml │ │ ├── certmanager.yaml │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── deployment.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── tests │ │ │ ├── test-certmanager-connection.yaml │ │ │ └── test-service-connection.yaml │ │ └── values.yaml │ ├── kuttl-test.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── admission-webhooks │ │ ├── operator-webhook-with-cert-manager.yaml │ │ └── operator-webhook.yaml │ ├── certmanager.yaml │ ├── clusterrole.yaml │ ├── clusterrolebinding.yaml │ ├── deployment.yaml │ ├── pdb.yaml │ ├── prometheusrule.yaml │ ├── role.yaml │ ├── rolebinding.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ ├── servicemonitor.yaml │ ├── tests │ │ ├── test-certmanager-connection.yaml │ │ └── test-service-connection.yaml │ └── verticalpodautoscaler.yaml │ ├── values.schema.json │ └── values.yaml ├── pod ├── busybox-pod.yaml ├── pod-ephemeral-vol.yaml ├── pod-log-emptydir-sidecar.yaml ├── pod-log-emptydir.yaml ├── python-web-pod.yaml └── ubuntu-utils-pod.yaml ├── podDisruptionBudget ├── deployment-nginx-single.yaml ├── deployment-nodeSelector-nginx.yaml └── pdb-nginx.yaml ├── polaris ├── polaris-5.16.0 │ ├── CHANGELOG.md │ ├── Chart.yaml │ ├── README.md │ ├── README.md.gotmpl │ ├── ci │ │ ├── merge-values.yaml │ │ ├── my-values.yaml │ │ ├── test-values-2.yaml │ │ └── test-values.yaml │ ├── templates │ │ ├── 0-namespace.yaml │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── audit.job.yaml │ │ ├── audit.rbac.yaml │ │ ├── configmap.yaml │ │ ├── dashboard.deployment.yaml │ │ ├── dashboard.pdb.yaml │ │ ├── dashboard.service.yaml │ │ ├── ingress.yaml │ │ ├── mutate-webhook.configuration.yaml │ │ ├── rbac.yaml │ │ ├── serviceaccount.yaml │ │ ├── validate-webhook.configuration.yaml │ │ ├── webhook.cert.yaml │ │ ├── webhook.deployment.yaml │ │ ├── webhook.pdb.yaml │ │ └── webhook.service.yaml │ └── values.yaml └── polaris-5.8.0 │ ├── CHANGELOG.md │ ├── Chart.yaml │ ├── README.md │ ├── README.md.gotmpl │ ├── ci │ ├── merge-values.yaml │ └── test-values.yaml │ ├── my-values.yaml │ ├── templates │ ├── 0-namespace.yaml │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── audit.job.yaml │ ├── audit.rbac.yaml │ ├── configmap.yaml │ ├── dashboard.deployment.yaml │ ├── dashboard.service.yaml │ ├── ingress.yaml │ ├── mutate-webhook.configuration.yaml │ ├── rbac.yaml │ ├── serviceaccount.yaml │ ├── validate-webhook.configuration.yaml │ ├── webhook.cert.yaml │ ├── webhook.deployment.yaml │ └── webhook.service.yaml │ └── values.yaml ├── postgresql ├── cloudnative-pg-operator.yaml ├── myclient.yaml ├── pg-cluster.yaml ├── pg-sync-replica-cluster.yaml ├── pooler.yaml └── query.sql ├── prometheus ├── kube-prometheus-stack-47.0.0 │ ├── .helmignore │ ├── CONTRIBUTING.md │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ ├── grafana │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── ci │ │ │ │ ├── default-values.yaml │ │ │ │ ├── with-affinity-values.yaml │ │ │ │ ├── with-dashboard-json-values.yaml │ │ │ │ ├── with-dashboard-values.yaml │ │ │ │ ├── with-extraconfigmapmounts-values.yaml │ │ │ │ ├── with-image-renderer-values.yaml │ │ │ │ └── with-persistence.yaml │ │ │ ├── dashboards │ │ │ │ └── custom-dashboard.json │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _pod.tpl │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── configmap-dashboard-provider.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── dashboards-json-configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── extra-manifests.yaml │ │ │ │ ├── headless-service.yaml │ │ │ │ ├── hpa.yaml │ │ │ │ ├── image-renderer-deployment.yaml │ │ │ │ ├── image-renderer-hpa.yaml │ │ │ │ ├── image-renderer-network-policy.yaml │ │ │ │ ├── image-renderer-service.yaml │ │ │ │ ├── image-renderer-servicemonitor.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── networkpolicy.yaml │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── secret-env.yaml │ │ │ │ ├── secret.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ ├── statefulset.yaml │ │ │ │ └── tests │ │ │ │ │ ├── test-configmap.yaml │ │ │ │ │ ├── test-podsecuritypolicy.yaml │ │ │ │ │ ├── test-role.yaml │ │ │ │ │ ├── test-rolebinding.yaml │ │ │ │ │ ├── test-serviceaccount.yaml │ │ │ │ │ └── test.yaml │ │ │ └── values.yaml │ │ ├── kube-state-metrics │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── ciliumnetworkpolicy.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kubeconfig-secret.yaml │ │ │ │ ├── networkpolicy.yaml │ │ │ │ ├── pdb.yaml │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ ├── psp-clusterrole.yaml │ │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ │ ├── rbac-configmap.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ ├── stsdiscovery-role.yaml │ │ │ │ ├── stsdiscovery-rolebinding.yaml │ │ │ │ └── verticalpodautoscaler.yaml │ │ │ └── values.yaml │ │ └── prometheus-node-exporter │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── ci │ │ │ └── port-values.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── daemonset.yaml │ │ │ ├── endpoints.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── podmonitor.yaml │ │ │ ├── psp-clusterrole.yaml │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ ├── psp.yaml │ │ │ ├── rbac-configmap.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── verticalpodautoscaler.yaml │ │ │ └── values.yaml │ ├── ci │ │ └── my-values.yaml │ ├── crds │ │ ├── crd-alertmanagerconfigs.yaml │ │ ├── crd-alertmanagers.yaml │ │ ├── crd-podmonitors.yaml │ │ ├── crd-probes.yaml │ │ ├── crd-prometheusagents.yaml │ │ ├── crd-prometheuses.yaml │ │ ├── crd-prometheusrules.yaml │ │ ├── crd-scrapeconfigs.yaml │ │ ├── crd-servicemonitors.yaml │ │ └── crd-thanosrulers.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── alertmanager │ │ │ ├── alertmanager.yaml │ │ │ ├── extrasecret.yaml │ │ │ ├── ingress.yaml │ │ │ ├── ingressperreplica.yaml │ │ │ ├── podDisruptionBudget.yaml │ │ │ ├── psp-role.yaml │ │ │ ├── psp-rolebinding.yaml │ │ │ ├── psp.yaml │ │ │ ├── secret.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── serviceperreplica.yaml │ │ ├── exporters │ │ │ ├── core-dns │ │ │ │ ├── service.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ ├── kube-api-server │ │ │ │ └── servicemonitor.yaml │ │ │ ├── kube-controller-manager │ │ │ │ ├── endpoints.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ ├── kube-dns │ │ │ │ ├── service.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ ├── kube-etcd │ │ │ │ ├── endpoints.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ ├── kube-proxy │ │ │ │ ├── endpoints.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ ├── kube-scheduler │ │ │ │ ├── endpoints.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ └── kubelet │ │ │ │ └── servicemonitor.yaml │ │ ├── extra-objects.yaml │ │ ├── grafana │ │ │ ├── configmap-dashboards.yaml │ │ │ ├── configmaps-datasources.yaml │ │ │ └── dashboards-1.14 │ │ │ │ ├── alertmanager-overview.yaml │ │ │ │ ├── apiserver.yaml │ │ │ │ ├── cluster-total.yaml │ │ │ │ ├── controller-manager.yaml │ │ │ │ ├── etcd.yaml │ │ │ │ ├── grafana-overview.yaml │ │ │ │ ├── k8s-coredns.yaml │ │ │ │ ├── k8s-resources-cluster.yaml │ │ │ │ ├── k8s-resources-multicluster.yaml │ │ │ │ ├── k8s-resources-namespace.yaml │ │ │ │ ├── k8s-resources-node.yaml │ │ │ │ ├── k8s-resources-pod.yaml │ │ │ │ ├── k8s-resources-workload.yaml │ │ │ │ ├── k8s-resources-workloads-namespace.yaml │ │ │ │ ├── kubelet.yaml │ │ │ │ ├── namespace-by-pod.yaml │ │ │ │ ├── namespace-by-workload.yaml │ │ │ │ ├── node-cluster-rsrc-use.yaml │ │ │ │ ├── node-rsrc-use.yaml │ │ │ │ ├── nodes-darwin.yaml │ │ │ │ ├── nodes.yaml │ │ │ │ ├── persistentvolumesusage.yaml │ │ │ │ ├── pod-total.yaml │ │ │ │ ├── prometheus-remote-write.yaml │ │ │ │ ├── prometheus.yaml │ │ │ │ ├── proxy.yaml │ │ │ │ ├── scheduler.yaml │ │ │ │ └── workload-total.yaml │ │ ├── prometheus-operator │ │ │ ├── admission-webhooks │ │ │ │ ├── job-patch │ │ │ │ │ ├── ciliumnetworkpolicy-createSecret.yaml │ │ │ │ │ ├── ciliumnetworkpolicy-patchWebhook.yaml │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── job-createSecret.yaml │ │ │ │ │ ├── job-patchWebhook.yaml │ │ │ │ │ ├── networkpolicy-createSecret.yaml │ │ │ │ │ ├── networkpolicy-patchWebhook.yaml │ │ │ │ │ ├── psp.yaml │ │ │ │ │ ├── role.yaml │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ ├── mutatingWebhookConfiguration.yaml │ │ │ │ └── validatingWebhookConfiguration.yaml │ │ │ ├── aggregate-clusterroles.yaml │ │ │ ├── certmanager.yaml │ │ │ ├── ciliumnetworkpolicy.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── deployment.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── psp-clusterrole.yaml │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ ├── psp.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── verticalpodautoscaler.yaml │ │ ├── prometheus │ │ │ ├── _rules.tpl │ │ │ ├── additionalAlertRelabelConfigs.yaml │ │ │ ├── additionalAlertmanagerConfigs.yaml │ │ │ ├── additionalPrometheusRules.yaml │ │ │ ├── additionalScrapeConfigs.yaml │ │ │ ├── ciliumnetworkpolicy.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── csi-secret.yaml │ │ │ ├── extrasecret.yaml │ │ │ ├── ingress.yaml │ │ │ ├── ingressThanosSidecar.yaml │ │ │ ├── ingressperreplica.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── podDisruptionBudget.yaml │ │ │ ├── podmonitors.yaml │ │ │ ├── prometheus.yaml │ │ │ ├── psp-clusterrole.yaml │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ ├── psp.yaml │ │ │ ├── rules-1.14 │ │ │ │ ├── alertmanager.rules.yaml │ │ │ │ ├── config-reloaders.yaml │ │ │ │ ├── etcd.yaml │ │ │ │ ├── general.rules.yaml │ │ │ │ ├── k8s.rules.yaml │ │ │ │ ├── kube-apiserver-availability.rules.yaml │ │ │ │ ├── kube-apiserver-burnrate.rules.yaml │ │ │ │ ├── kube-apiserver-histogram.rules.yaml │ │ │ │ ├── kube-apiserver-slos.yaml │ │ │ │ ├── kube-prometheus-general.rules.yaml │ │ │ │ ├── kube-prometheus-node-recording.rules.yaml │ │ │ │ ├── kube-scheduler.rules.yaml │ │ │ │ ├── kube-state-metrics.yaml │ │ │ │ ├── kubelet.rules.yaml │ │ │ │ ├── kubernetes-apps.yaml │ │ │ │ ├── kubernetes-resources.yaml │ │ │ │ ├── kubernetes-storage.yaml │ │ │ │ ├── kubernetes-system-apiserver.yaml │ │ │ │ ├── kubernetes-system-controller-manager.yaml │ │ │ │ ├── kubernetes-system-kube-proxy.yaml │ │ │ │ ├── kubernetes-system-kubelet.yaml │ │ │ │ ├── kubernetes-system-scheduler.yaml │ │ │ │ ├── kubernetes-system.yaml │ │ │ │ ├── node-exporter.rules.yaml │ │ │ │ ├── node-exporter.yaml │ │ │ │ ├── node-network.yaml │ │ │ │ ├── node.rules.yaml │ │ │ │ ├── prometheus-operator.yaml │ │ │ │ └── prometheus.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceThanosSidecar.yaml │ │ │ ├── serviceThanosSidecarExternal.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ ├── servicemonitorThanosSidecar.yaml │ │ │ ├── servicemonitors.yaml │ │ │ └── serviceperreplica.yaml │ │ └── thanos-ruler │ │ │ ├── extrasecret.yaml │ │ │ ├── ingress.yaml │ │ │ ├── podDisruptionBudget.yaml │ │ │ ├── ruler.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ └── values.yaml ├── kube-prometheus-stack-48.3.1 │ ├── .helmignore │ ├── CONTRIBUTING.md │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ ├── crds │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ └── crds │ │ │ │ ├── crd-alertmanagerconfigs.yaml │ │ │ │ ├── crd-alertmanagers.yaml │ │ │ │ ├── crd-podmonitors.yaml │ │ │ │ ├── crd-probes.yaml │ │ │ │ ├── crd-prometheusagents.yaml │ │ │ │ ├── crd-prometheuses.yaml │ │ │ │ ├── crd-prometheusrules.yaml │ │ │ │ ├── crd-scrapeconfigs.yaml │ │ │ │ ├── crd-servicemonitors.yaml │ │ │ │ └── crd-thanosrulers.yaml │ │ ├── grafana │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── ci │ │ │ │ ├── default-values.yaml │ │ │ │ ├── with-affinity-values.yaml │ │ │ │ ├── with-dashboard-json-values.yaml │ │ │ │ ├── with-dashboard-values.yaml │ │ │ │ ├── with-extraconfigmapmounts-values.yaml │ │ │ │ ├── with-image-renderer-values.yaml │ │ │ │ └── with-persistence.yaml │ │ │ ├── dashboards │ │ │ │ └── custom-dashboard.json │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _pod.tpl │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── configmap-dashboard-provider.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── dashboards-json-configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── extra-manifests.yaml │ │ │ │ ├── headless-service.yaml │ │ │ │ ├── hpa.yaml │ │ │ │ ├── image-renderer-deployment.yaml │ │ │ │ ├── image-renderer-hpa.yaml │ │ │ │ ├── image-renderer-network-policy.yaml │ │ │ │ ├── image-renderer-service.yaml │ │ │ │ ├── image-renderer-servicemonitor.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── networkpolicy.yaml │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── secret-env.yaml │ │ │ │ ├── secret.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ ├── statefulset.yaml │ │ │ │ └── tests │ │ │ │ │ ├── test-configmap.yaml │ │ │ │ │ ├── test-podsecuritypolicy.yaml │ │ │ │ │ ├── test-role.yaml │ │ │ │ │ ├── test-rolebinding.yaml │ │ │ │ │ ├── test-serviceaccount.yaml │ │ │ │ │ └── test.yaml │ │ │ └── values.yaml │ │ ├── kube-state-metrics │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── ciliumnetworkpolicy.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── crs-configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── extra-manifests.yaml │ │ │ │ ├── kubeconfig-secret.yaml │ │ │ │ ├── networkpolicy.yaml │ │ │ │ ├── pdb.yaml │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ ├── psp-clusterrole.yaml │ │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ │ ├── rbac-configmap.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ ├── stsdiscovery-role.yaml │ │ │ │ ├── stsdiscovery-rolebinding.yaml │ │ │ │ └── verticalpodautoscaler.yaml │ │ │ └── values.yaml │ │ ├── prometheus-node-exporter │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── ci │ │ │ │ └── port-values.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── daemonset.yaml │ │ │ │ ├── endpoints.yaml │ │ │ │ ├── extra-manifests.yaml │ │ │ │ ├── networkpolicy.yaml │ │ │ │ ├── podmonitor.yaml │ │ │ │ ├── psp-clusterrole.yaml │ │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ │ ├── psp.yaml │ │ │ │ ├── rbac-configmap.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ └── verticalpodautoscaler.yaml │ │ │ └── values.yaml │ │ └── prometheus-windows-exporter │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── config.yaml │ │ │ ├── daemonset.yaml │ │ │ ├── podmonitor.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ │ └── values.yaml │ ├── ci │ │ └── my-values.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── alertmanager │ │ │ ├── alertmanager.yaml │ │ │ ├── extrasecret.yaml │ │ │ ├── ingress.yaml │ │ │ ├── ingressperreplica.yaml │ │ │ ├── podDisruptionBudget.yaml │ │ │ ├── psp-role.yaml │ │ │ ├── psp-rolebinding.yaml │ │ │ ├── psp.yaml │ │ │ ├── secret.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── serviceperreplica.yaml │ │ ├── exporters │ │ │ ├── core-dns │ │ │ │ ├── service.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ ├── kube-api-server │ │ │ │ └── servicemonitor.yaml │ │ │ ├── kube-controller-manager │ │ │ │ ├── endpoints.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ ├── kube-dns │ │ │ │ ├── service.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ ├── kube-etcd │ │ │ │ ├── endpoints.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ ├── kube-proxy │ │ │ │ ├── endpoints.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ ├── kube-scheduler │ │ │ │ ├── endpoints.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ └── kubelet │ │ │ │ └── servicemonitor.yaml │ │ ├── extra-objects.yaml │ │ ├── grafana │ │ │ ├── configmap-dashboards.yaml │ │ │ ├── configmaps-datasources.yaml │ │ │ └── dashboards-1.14 │ │ │ │ ├── alertmanager-overview.yaml │ │ │ │ ├── apiserver.yaml │ │ │ │ ├── cluster-total.yaml │ │ │ │ ├── controller-manager.yaml │ │ │ │ ├── etcd.yaml │ │ │ │ ├── grafana-overview.yaml │ │ │ │ ├── k8s-coredns.yaml │ │ │ │ ├── k8s-resources-cluster.yaml │ │ │ │ ├── k8s-resources-multicluster.yaml │ │ │ │ ├── k8s-resources-namespace.yaml │ │ │ │ ├── k8s-resources-node.yaml │ │ │ │ ├── k8s-resources-pod.yaml │ │ │ │ ├── k8s-resources-windows-cluster.yaml │ │ │ │ ├── k8s-resources-windows-namespace.yaml │ │ │ │ ├── k8s-resources-windows-pod.yaml │ │ │ │ ├── k8s-resources-workload.yaml │ │ │ │ ├── k8s-resources-workloads-namespace.yaml │ │ │ │ ├── k8s-windows-cluster-rsrc-use.yaml │ │ │ │ ├── k8s-windows-node-rsrc-use.yaml │ │ │ │ ├── kubelet.yaml │ │ │ │ ├── namespace-by-pod.yaml │ │ │ │ ├── namespace-by-workload.yaml │ │ │ │ ├── node-cluster-rsrc-use.yaml │ │ │ │ ├── node-rsrc-use.yaml │ │ │ │ ├── nodes-darwin.yaml │ │ │ │ ├── nodes.yaml │ │ │ │ ├── persistentvolumesusage.yaml │ │ │ │ ├── pod-total.yaml │ │ │ │ ├── prometheus-remote-write.yaml │ │ │ │ ├── prometheus.yaml │ │ │ │ ├── proxy.yaml │ │ │ │ ├── scheduler.yaml │ │ │ │ └── workload-total.yaml │ │ ├── prometheus-operator │ │ │ ├── admission-webhooks │ │ │ │ ├── job-patch │ │ │ │ │ ├── ciliumnetworkpolicy-createSecret.yaml │ │ │ │ │ ├── ciliumnetworkpolicy-patchWebhook.yaml │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── job-createSecret.yaml │ │ │ │ │ ├── job-patchWebhook.yaml │ │ │ │ │ ├── networkpolicy-createSecret.yaml │ │ │ │ │ ├── networkpolicy-patchWebhook.yaml │ │ │ │ │ ├── psp.yaml │ │ │ │ │ ├── role.yaml │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ ├── mutatingWebhookConfiguration.yaml │ │ │ │ └── validatingWebhookConfiguration.yaml │ │ │ ├── aggregate-clusterroles.yaml │ │ │ ├── certmanager.yaml │ │ │ ├── ciliumnetworkpolicy.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── deployment.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── psp-clusterrole.yaml │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ ├── psp.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── verticalpodautoscaler.yaml │ │ ├── prometheus │ │ │ ├── _rules.tpl │ │ │ ├── additionalAlertRelabelConfigs.yaml │ │ │ ├── additionalAlertmanagerConfigs.yaml │ │ │ ├── additionalPrometheusRules.yaml │ │ │ ├── additionalScrapeConfigs.yaml │ │ │ ├── ciliumnetworkpolicy.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── csi-secret.yaml │ │ │ ├── extrasecret.yaml │ │ │ ├── ingress.yaml │ │ │ ├── ingressThanosSidecar.yaml │ │ │ ├── ingressperreplica.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── podDisruptionBudget.yaml │ │ │ ├── podmonitors.yaml │ │ │ ├── prometheus.yaml │ │ │ ├── psp-clusterrole.yaml │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ ├── psp.yaml │ │ │ ├── rules-1.14 │ │ │ │ ├── alertmanager.rules.yaml │ │ │ │ ├── config-reloaders.yaml │ │ │ │ ├── etcd.yaml │ │ │ │ ├── general.rules.yaml │ │ │ │ ├── k8s.rules.yaml │ │ │ │ ├── kube-apiserver-availability.rules.yaml │ │ │ │ ├── kube-apiserver-burnrate.rules.yaml │ │ │ │ ├── kube-apiserver-histogram.rules.yaml │ │ │ │ ├── kube-apiserver-slos.yaml │ │ │ │ ├── kube-prometheus-general.rules.yaml │ │ │ │ ├── kube-prometheus-node-recording.rules.yaml │ │ │ │ ├── kube-scheduler.rules.yaml │ │ │ │ ├── kube-state-metrics.yaml │ │ │ │ ├── kubelet.rules.yaml │ │ │ │ ├── kubernetes-apps.yaml │ │ │ │ ├── kubernetes-resources.yaml │ │ │ │ ├── kubernetes-storage.yaml │ │ │ │ ├── kubernetes-system-apiserver.yaml │ │ │ │ ├── kubernetes-system-controller-manager.yaml │ │ │ │ ├── kubernetes-system-kube-proxy.yaml │ │ │ │ ├── kubernetes-system-kubelet.yaml │ │ │ │ ├── kubernetes-system-scheduler.yaml │ │ │ │ ├── kubernetes-system.yaml │ │ │ │ ├── node-exporter.rules.yaml │ │ │ │ ├── node-exporter.yaml │ │ │ │ ├── node-network.yaml │ │ │ │ ├── node.rules.yaml │ │ │ │ ├── prometheus-operator.yaml │ │ │ │ ├── prometheus.yaml │ │ │ │ ├── windows.node.rules.yaml │ │ │ │ └── windows.pod.rules.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceThanosSidecar.yaml │ │ │ ├── serviceThanosSidecarExternal.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ ├── servicemonitorThanosSidecar.yaml │ │ │ ├── servicemonitors.yaml │ │ │ └── serviceperreplica.yaml │ │ └── thanos-ruler │ │ │ ├── extrasecret.yaml │ │ │ ├── ingress.yaml │ │ │ ├── podDisruptionBudget.yaml │ │ │ ├── ruler.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ └── values.yaml └── prometheus-pushgateway-2.4.2 │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── ci │ └── jerry-test-values.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── ingress.yaml │ ├── networkpolicy.yaml │ ├── pdb.yaml │ ├── pushgateway-pvc.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ ├── servicemonitor.yaml │ └── statefulset.yaml │ └── values.yaml ├── pvc ├── date-from-pv-pvc.yaml ├── date-pvc-deploy.yml ├── date-pvc.yml ├── ephemeral-vol-deploy.yaml ├── pv-to-pvc.yaml └── pvc-efs.yml ├── redis ├── redis-17.8.5 │ ├── .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 │ ├── ci │ │ └── my-values.yaml │ ├── img │ │ ├── redis-cluster-topology.png │ │ └── redis-topology.png │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── extra-list.yaml │ │ ├── headless-svc.yaml │ │ ├── health-configmap.yaml │ │ ├── master │ │ │ ├── application.yaml │ │ │ ├── psp.yaml │ │ │ ├── pvc.yaml │ │ │ ├── service.yaml │ │ │ └── serviceaccount.yaml │ │ ├── metrics-svc.yaml │ │ ├── networkpolicy.yaml │ │ ├── pdb.yaml │ │ ├── prometheusrule.yaml │ │ ├── replicas │ │ │ ├── hpa.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── statefulset.yaml │ │ ├── role.yaml │ │ ├── rolebinding.yaml │ │ ├── scripts-configmap.yaml │ │ ├── secret.yaml │ │ ├── sentinel │ │ │ ├── hpa.yaml │ │ │ ├── node-services.yaml │ │ │ ├── ports-configmap.yaml │ │ │ ├── service.yaml │ │ │ └── statefulset.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ └── tls-secret.yaml │ ├── values.schema.json │ └── values.yaml └── redis-client-deploy.yaml ├── resourceQuotas └── resourceQuotas.yaml ├── robusta ├── robusta-0.10.23 │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── charts │ │ └── kube-prometheus-stack │ │ │ ├── .helmignore │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Chart.lock │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── charts │ │ │ ├── grafana │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── ci │ │ │ │ │ ├── default-values.yaml │ │ │ │ │ ├── with-affinity-values.yaml │ │ │ │ │ ├── with-dashboard-json-values.yaml │ │ │ │ │ ├── with-dashboard-values.yaml │ │ │ │ │ ├── with-extraconfigmapmounts-values.yaml │ │ │ │ │ ├── with-image-renderer-values.yaml │ │ │ │ │ └── with-persistence.yaml │ │ │ │ ├── dashboards │ │ │ │ │ └── custom-dashboard.json │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── _pod.tpl │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── configmap-dashboard-provider.yaml │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── dashboards-json-configmap.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── extra-manifests.yaml │ │ │ │ │ ├── headless-service.yaml │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ ├── image-renderer-deployment.yaml │ │ │ │ │ ├── image-renderer-hpa.yaml │ │ │ │ │ ├── image-renderer-network-policy.yaml │ │ │ │ │ ├── image-renderer-service.yaml │ │ │ │ │ ├── image-renderer-servicemonitor.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── role.yaml │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ ├── secret-env.yaml │ │ │ │ │ ├── secret.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ ├── statefulset.yaml │ │ │ │ │ └── tests │ │ │ │ │ │ ├── test-configmap.yaml │ │ │ │ │ │ ├── test-podsecuritypolicy.yaml │ │ │ │ │ │ ├── test-role.yaml │ │ │ │ │ │ ├── test-rolebinding.yaml │ │ │ │ │ │ ├── test-serviceaccount.yaml │ │ │ │ │ │ └── test.yaml │ │ │ │ └── values.yaml │ │ │ ├── kube-state-metrics │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── ciliumnetworkpolicy.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── crs-configmap.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── kubeconfig-secret.yaml │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ │ ├── psp-clusterrole.yaml │ │ │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ │ │ ├── rbac-configmap.yaml │ │ │ │ │ ├── role.yaml │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ ├── stsdiscovery-role.yaml │ │ │ │ │ ├── stsdiscovery-rolebinding.yaml │ │ │ │ │ └── verticalpodautoscaler.yaml │ │ │ │ └── values.yaml │ │ │ ├── prometheus-node-exporter │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── ci │ │ │ │ │ └── port-values.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── daemonset.yaml │ │ │ │ │ ├── endpoints.yaml │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ ├── podmonitor.yaml │ │ │ │ │ ├── psp-clusterrole.yaml │ │ │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ │ │ ├── psp.yaml │ │ │ │ │ ├── rbac-configmap.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ └── verticalpodautoscaler.yaml │ │ │ │ └── values.yaml │ │ │ └── prometheus-windows-exporter │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── config.yaml │ │ │ │ ├── daemonset.yaml │ │ │ │ ├── podmonitor.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ │ └── values.yaml │ │ │ ├── crds │ │ │ ├── crd-alertmanagerconfigs.yaml │ │ │ ├── crd-alertmanagers.yaml │ │ │ ├── crd-podmonitors.yaml │ │ │ ├── crd-probes.yaml │ │ │ ├── crd-prometheusagents.yaml │ │ │ ├── crd-prometheuses.yaml │ │ │ ├── crd-prometheusrules.yaml │ │ │ ├── crd-scrapeconfigs.yaml │ │ │ ├── crd-servicemonitors.yaml │ │ │ └── crd-thanosrulers.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── alertmanager │ │ │ │ ├── alertmanager.yaml │ │ │ │ ├── extrasecret.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── ingressperreplica.yaml │ │ │ │ ├── podDisruptionBudget.yaml │ │ │ │ ├── psp-role.yaml │ │ │ │ ├── psp-rolebinding.yaml │ │ │ │ ├── psp.yaml │ │ │ │ ├── secret.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ └── serviceperreplica.yaml │ │ │ ├── exporters │ │ │ │ ├── core-dns │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ ├── kube-api-server │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ ├── kube-controller-manager │ │ │ │ │ ├── endpoints.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ ├── kube-dns │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ ├── kube-etcd │ │ │ │ │ ├── endpoints.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ ├── kube-proxy │ │ │ │ │ ├── endpoints.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ ├── kube-scheduler │ │ │ │ │ ├── endpoints.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ └── kubelet │ │ │ │ │ └── servicemonitor.yaml │ │ │ ├── extra-objects.yaml │ │ │ ├── grafana │ │ │ │ ├── configmap-dashboards.yaml │ │ │ │ ├── configmaps-datasources.yaml │ │ │ │ └── dashboards-1.14 │ │ │ │ │ ├── alertmanager-overview.yaml │ │ │ │ │ ├── apiserver.yaml │ │ │ │ │ ├── cluster-total.yaml │ │ │ │ │ ├── controller-manager.yaml │ │ │ │ │ ├── etcd.yaml │ │ │ │ │ ├── grafana-overview.yaml │ │ │ │ │ ├── k8s-coredns.yaml │ │ │ │ │ ├── k8s-resources-cluster.yaml │ │ │ │ │ ├── k8s-resources-multicluster.yaml │ │ │ │ │ ├── k8s-resources-namespace.yaml │ │ │ │ │ ├── k8s-resources-node.yaml │ │ │ │ │ ├── k8s-resources-pod.yaml │ │ │ │ │ ├── k8s-resources-windows-cluster.yaml │ │ │ │ │ ├── k8s-resources-windows-namespace.yaml │ │ │ │ │ ├── k8s-resources-windows-pod.yaml │ │ │ │ │ ├── k8s-resources-workload.yaml │ │ │ │ │ ├── k8s-resources-workloads-namespace.yaml │ │ │ │ │ ├── k8s-windows-cluster-rsrc-use.yaml │ │ │ │ │ ├── k8s-windows-node-rsrc-use.yaml │ │ │ │ │ ├── kubelet.yaml │ │ │ │ │ ├── namespace-by-pod.yaml │ │ │ │ │ ├── namespace-by-workload.yaml │ │ │ │ │ ├── node-cluster-rsrc-use.yaml │ │ │ │ │ ├── node-rsrc-use.yaml │ │ │ │ │ ├── nodes-darwin.yaml │ │ │ │ │ ├── nodes.yaml │ │ │ │ │ ├── persistentvolumesusage.yaml │ │ │ │ │ ├── pod-total.yaml │ │ │ │ │ ├── prometheus-remote-write.yaml │ │ │ │ │ ├── prometheus.yaml │ │ │ │ │ ├── proxy.yaml │ │ │ │ │ ├── scheduler.yaml │ │ │ │ │ └── workload-total.yaml │ │ │ ├── prometheus-operator │ │ │ │ ├── admission-webhooks │ │ │ │ │ ├── job-patch │ │ │ │ │ │ ├── ciliumnetworkpolicy-createSecret.yaml │ │ │ │ │ │ ├── ciliumnetworkpolicy-patchWebhook.yaml │ │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ │ ├── job-createSecret.yaml │ │ │ │ │ │ ├── job-patchWebhook.yaml │ │ │ │ │ │ ├── networkpolicy-createSecret.yaml │ │ │ │ │ │ ├── networkpolicy-patchWebhook.yaml │ │ │ │ │ │ ├── psp.yaml │ │ │ │ │ │ ├── role.yaml │ │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ ├── mutatingWebhookConfiguration.yaml │ │ │ │ │ └── validatingWebhookConfiguration.yaml │ │ │ │ ├── aggregate-clusterroles.yaml │ │ │ │ ├── certmanager.yaml │ │ │ │ ├── ciliumnetworkpolicy.yaml │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── networkpolicy.yaml │ │ │ │ ├── psp-clusterrole.yaml │ │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ │ ├── psp.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ └── verticalpodautoscaler.yaml │ │ │ ├── prometheus │ │ │ │ ├── _rules.tpl │ │ │ │ ├── additionalAlertRelabelConfigs.yaml │ │ │ │ ├── additionalAlertmanagerConfigs.yaml │ │ │ │ ├── additionalPrometheusRules.yaml │ │ │ │ ├── additionalScrapeConfigs.yaml │ │ │ │ ├── ciliumnetworkpolicy.yaml │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── csi-secret.yaml │ │ │ │ ├── extrasecret.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── ingressThanosSidecar.yaml │ │ │ │ ├── ingressperreplica.yaml │ │ │ │ ├── networkpolicy.yaml │ │ │ │ ├── podDisruptionBudget.yaml │ │ │ │ ├── podmonitors.yaml │ │ │ │ ├── prometheus.yaml │ │ │ │ ├── psp-clusterrole.yaml │ │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ │ ├── psp.yaml │ │ │ │ ├── rules-1.14 │ │ │ │ │ ├── alertmanager.rules.yaml │ │ │ │ │ ├── config-reloaders.yaml │ │ │ │ │ ├── etcd.yaml │ │ │ │ │ ├── general.rules.yaml │ │ │ │ │ ├── k8s.rules.yaml │ │ │ │ │ ├── kube-apiserver-availability.rules.yaml │ │ │ │ │ ├── kube-apiserver-burnrate.rules.yaml │ │ │ │ │ ├── kube-apiserver-histogram.rules.yaml │ │ │ │ │ ├── kube-apiserver-slos.yaml │ │ │ │ │ ├── kube-prometheus-general.rules.yaml │ │ │ │ │ ├── kube-prometheus-node-recording.rules.yaml │ │ │ │ │ ├── kube-scheduler.rules.yaml │ │ │ │ │ ├── kube-state-metrics.yaml │ │ │ │ │ ├── kubelet.rules.yaml │ │ │ │ │ ├── kubernetes-apps.yaml │ │ │ │ │ ├── kubernetes-resources.yaml │ │ │ │ │ ├── kubernetes-storage.yaml │ │ │ │ │ ├── kubernetes-system-apiserver.yaml │ │ │ │ │ ├── kubernetes-system-controller-manager.yaml │ │ │ │ │ ├── kubernetes-system-kube-proxy.yaml │ │ │ │ │ ├── kubernetes-system-kubelet.yaml │ │ │ │ │ ├── kubernetes-system-scheduler.yaml │ │ │ │ │ ├── kubernetes-system.yaml │ │ │ │ │ ├── node-exporter.rules.yaml │ │ │ │ │ ├── node-exporter.yaml │ │ │ │ │ ├── node-network.yaml │ │ │ │ │ ├── node.rules.yaml │ │ │ │ │ ├── prometheus-operator.yaml │ │ │ │ │ ├── prometheus.yaml │ │ │ │ │ ├── windows.node.rules.yaml │ │ │ │ │ └── windows.pod.rules.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceThanosSidecar.yaml │ │ │ │ ├── serviceThanosSidecarExternal.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ ├── servicemonitorThanosSidecar.yaml │ │ │ │ ├── servicemonitors.yaml │ │ │ │ └── serviceperreplica.yaml │ │ │ └── thanos-ruler │ │ │ │ ├── extrasecret.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── podDisruptionBudget.yaml │ │ │ │ ├── ruler.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ └── values.yaml │ ├── kubewatch.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── auth-config.yaml │ │ ├── forwarder-service-account.yaml │ │ ├── forwarder.yaml │ │ ├── kubewatch-configmap.yaml │ │ ├── openshift-scc-baseline.yaml │ │ ├── openshift-scc-privileged.yaml │ │ ├── playbooks-config.yaml │ │ ├── runner-service-account.yaml │ │ └── runner.yaml │ └── values.yaml └── robusta-0.10.25 │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── charts │ └── kube-prometheus-stack │ │ ├── .helmignore │ │ ├── CONTRIBUTING.md │ │ ├── Chart.lock │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── charts │ │ ├── grafana │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── ci │ │ │ │ ├── default-values.yaml │ │ │ │ ├── with-affinity-values.yaml │ │ │ │ ├── with-dashboard-json-values.yaml │ │ │ │ ├── with-dashboard-values.yaml │ │ │ │ ├── with-extraconfigmapmounts-values.yaml │ │ │ │ ├── with-image-renderer-values.yaml │ │ │ │ └── with-persistence.yaml │ │ │ ├── dashboards │ │ │ │ └── custom-dashboard.json │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _pod.tpl │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── configmap-dashboard-provider.yaml │ │ │ │ ├── configmap.yaml │ │ │ │ ├── dashboards-json-configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── extra-manifests.yaml │ │ │ │ ├── headless-service.yaml │ │ │ │ ├── hpa.yaml │ │ │ │ ├── image-renderer-deployment.yaml │ │ │ │ ├── image-renderer-hpa.yaml │ │ │ │ ├── image-renderer-network-policy.yaml │ │ │ │ ├── image-renderer-service.yaml │ │ │ │ ├── image-renderer-servicemonitor.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── networkpolicy.yaml │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── secret-env.yaml │ │ │ │ ├── secret.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ ├── statefulset.yaml │ │ │ │ └── tests │ │ │ │ │ ├── test-configmap.yaml │ │ │ │ │ ├── test-podsecuritypolicy.yaml │ │ │ │ │ ├── test-role.yaml │ │ │ │ │ ├── test-rolebinding.yaml │ │ │ │ │ ├── test-serviceaccount.yaml │ │ │ │ │ └── test.yaml │ │ │ └── values.yaml │ │ ├── kube-state-metrics │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── ciliumnetworkpolicy.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── crs-configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── kubeconfig-secret.yaml │ │ │ │ ├── networkpolicy.yaml │ │ │ │ ├── pdb.yaml │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ ├── psp-clusterrole.yaml │ │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ │ ├── rbac-configmap.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ ├── stsdiscovery-role.yaml │ │ │ │ ├── stsdiscovery-rolebinding.yaml │ │ │ │ └── verticalpodautoscaler.yaml │ │ │ └── values.yaml │ │ ├── prometheus-node-exporter │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── ci │ │ │ │ └── port-values.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── daemonset.yaml │ │ │ │ ├── endpoints.yaml │ │ │ │ ├── networkpolicy.yaml │ │ │ │ ├── podmonitor.yaml │ │ │ │ ├── psp-clusterrole.yaml │ │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ │ ├── psp.yaml │ │ │ │ ├── rbac-configmap.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ └── verticalpodautoscaler.yaml │ │ │ └── values.yaml │ │ └── prometheus-windows-exporter │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── config.yaml │ │ │ ├── daemonset.yaml │ │ │ ├── podmonitor.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ │ └── values.yaml │ │ ├── crds │ │ ├── crd-alertmanagerconfigs.yaml │ │ ├── crd-alertmanagers.yaml │ │ ├── crd-podmonitors.yaml │ │ ├── crd-probes.yaml │ │ ├── crd-prometheusagents.yaml │ │ ├── crd-prometheuses.yaml │ │ ├── crd-prometheusrules.yaml │ │ ├── crd-scrapeconfigs.yaml │ │ ├── crd-servicemonitors.yaml │ │ └── crd-thanosrulers.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── alertmanager │ │ │ ├── alertmanager.yaml │ │ │ ├── extrasecret.yaml │ │ │ ├── ingress.yaml │ │ │ ├── ingressperreplica.yaml │ │ │ ├── podDisruptionBudget.yaml │ │ │ ├── psp-role.yaml │ │ │ ├── psp-rolebinding.yaml │ │ │ ├── psp.yaml │ │ │ ├── secret.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── serviceperreplica.yaml │ │ ├── exporters │ │ │ ├── core-dns │ │ │ │ ├── service.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ ├── kube-api-server │ │ │ │ └── servicemonitor.yaml │ │ │ ├── kube-controller-manager │ │ │ │ ├── endpoints.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ ├── kube-dns │ │ │ │ ├── service.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ ├── kube-etcd │ │ │ │ ├── endpoints.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ ├── kube-proxy │ │ │ │ ├── endpoints.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ ├── kube-scheduler │ │ │ │ ├── endpoints.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ └── kubelet │ │ │ │ └── servicemonitor.yaml │ │ ├── extra-objects.yaml │ │ ├── grafana │ │ │ ├── configmap-dashboards.yaml │ │ │ ├── configmaps-datasources.yaml │ │ │ └── dashboards-1.14 │ │ │ │ ├── alertmanager-overview.yaml │ │ │ │ ├── apiserver.yaml │ │ │ │ ├── cluster-total.yaml │ │ │ │ ├── controller-manager.yaml │ │ │ │ ├── etcd.yaml │ │ │ │ ├── grafana-overview.yaml │ │ │ │ ├── k8s-coredns.yaml │ │ │ │ ├── k8s-resources-cluster.yaml │ │ │ │ ├── k8s-resources-multicluster.yaml │ │ │ │ ├── k8s-resources-namespace.yaml │ │ │ │ ├── k8s-resources-node.yaml │ │ │ │ ├── k8s-resources-pod.yaml │ │ │ │ ├── k8s-resources-windows-cluster.yaml │ │ │ │ ├── k8s-resources-windows-namespace.yaml │ │ │ │ ├── k8s-resources-windows-pod.yaml │ │ │ │ ├── k8s-resources-workload.yaml │ │ │ │ ├── k8s-resources-workloads-namespace.yaml │ │ │ │ ├── k8s-windows-cluster-rsrc-use.yaml │ │ │ │ ├── k8s-windows-node-rsrc-use.yaml │ │ │ │ ├── kubelet.yaml │ │ │ │ ├── namespace-by-pod.yaml │ │ │ │ ├── namespace-by-workload.yaml │ │ │ │ ├── node-cluster-rsrc-use.yaml │ │ │ │ ├── node-rsrc-use.yaml │ │ │ │ ├── nodes-darwin.yaml │ │ │ │ ├── nodes.yaml │ │ │ │ ├── persistentvolumesusage.yaml │ │ │ │ ├── pod-total.yaml │ │ │ │ ├── prometheus-remote-write.yaml │ │ │ │ ├── prometheus.yaml │ │ │ │ ├── proxy.yaml │ │ │ │ ├── scheduler.yaml │ │ │ │ └── workload-total.yaml │ │ ├── prometheus-operator │ │ │ ├── admission-webhooks │ │ │ │ ├── job-patch │ │ │ │ │ ├── ciliumnetworkpolicy-createSecret.yaml │ │ │ │ │ ├── ciliumnetworkpolicy-patchWebhook.yaml │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── job-createSecret.yaml │ │ │ │ │ ├── job-patchWebhook.yaml │ │ │ │ │ ├── networkpolicy-createSecret.yaml │ │ │ │ │ ├── networkpolicy-patchWebhook.yaml │ │ │ │ │ ├── psp.yaml │ │ │ │ │ ├── role.yaml │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ ├── mutatingWebhookConfiguration.yaml │ │ │ │ └── validatingWebhookConfiguration.yaml │ │ │ ├── aggregate-clusterroles.yaml │ │ │ ├── certmanager.yaml │ │ │ ├── ciliumnetworkpolicy.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── deployment.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── psp-clusterrole.yaml │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ ├── psp.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── verticalpodautoscaler.yaml │ │ ├── prometheus │ │ │ ├── _rules.tpl │ │ │ ├── additionalAlertRelabelConfigs.yaml │ │ │ ├── additionalAlertmanagerConfigs.yaml │ │ │ ├── additionalPrometheusRules.yaml │ │ │ ├── additionalScrapeConfigs.yaml │ │ │ ├── ciliumnetworkpolicy.yaml │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── csi-secret.yaml │ │ │ ├── extrasecret.yaml │ │ │ ├── ingress.yaml │ │ │ ├── ingressThanosSidecar.yaml │ │ │ ├── ingressperreplica.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── podDisruptionBudget.yaml │ │ │ ├── podmonitors.yaml │ │ │ ├── prometheus.yaml │ │ │ ├── psp-clusterrole.yaml │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ ├── psp.yaml │ │ │ ├── rules-1.14 │ │ │ │ ├── alertmanager.rules.yaml │ │ │ │ ├── config-reloaders.yaml │ │ │ │ ├── etcd.yaml │ │ │ │ ├── general.rules.yaml │ │ │ │ ├── k8s.rules.yaml │ │ │ │ ├── kube-apiserver-availability.rules.yaml │ │ │ │ ├── kube-apiserver-burnrate.rules.yaml │ │ │ │ ├── kube-apiserver-histogram.rules.yaml │ │ │ │ ├── kube-apiserver-slos.yaml │ │ │ │ ├── kube-prometheus-general.rules.yaml │ │ │ │ ├── kube-prometheus-node-recording.rules.yaml │ │ │ │ ├── kube-scheduler.rules.yaml │ │ │ │ ├── kube-state-metrics.yaml │ │ │ │ ├── kubelet.rules.yaml │ │ │ │ ├── kubernetes-apps.yaml │ │ │ │ ├── kubernetes-resources.yaml │ │ │ │ ├── kubernetes-storage.yaml │ │ │ │ ├── kubernetes-system-apiserver.yaml │ │ │ │ ├── kubernetes-system-controller-manager.yaml │ │ │ │ ├── kubernetes-system-kube-proxy.yaml │ │ │ │ ├── kubernetes-system-kubelet.yaml │ │ │ │ ├── kubernetes-system-scheduler.yaml │ │ │ │ ├── kubernetes-system.yaml │ │ │ │ ├── node-exporter.rules.yaml │ │ │ │ ├── node-exporter.yaml │ │ │ │ ├── node-network.yaml │ │ │ │ ├── node.rules.yaml │ │ │ │ ├── prometheus-operator.yaml │ │ │ │ ├── prometheus.yaml │ │ │ │ ├── windows.node.rules.yaml │ │ │ │ └── windows.pod.rules.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceThanosSidecar.yaml │ │ │ ├── serviceThanosSidecarExternal.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ ├── servicemonitorThanosSidecar.yaml │ │ │ ├── servicemonitors.yaml │ │ │ └── serviceperreplica.yaml │ │ └── thanos-ruler │ │ │ ├── extrasecret.yaml │ │ │ ├── ingress.yaml │ │ │ ├── podDisruptionBudget.yaml │ │ │ ├── ruler.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── servicemonitor.yaml │ │ └── values.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── auth-config.yaml │ ├── forwarder-service-account.yaml │ ├── forwarder.yaml │ ├── kubewatch-configmap.yaml │ ├── openshift-scc-baseline.yaml │ ├── openshift-scc-privileged.yaml │ ├── playbooks-config.yaml │ ├── runner-service-account.yaml │ └── runner.yaml │ └── values.yaml ├── sealed-secrets-2.10.0 ├── .helmignore ├── Chart.yaml ├── README.md ├── SealedSecret.yaml ├── ci │ └── singapore-test-values.yaml ├── crds │ └── bitnami.com_sealedsecrets.yaml ├── dashboards │ └── sealed-secrets-controller.json ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── cluster-role-binding.yaml │ ├── cluster-role.yaml │ ├── configmap-dashboards.yaml │ ├── deployment.yaml │ ├── extra-list.yaml │ ├── ingress.yaml │ ├── networkpolicy.yaml │ ├── psp-clusterrole.yaml │ ├── psp-clusterrolebinding.yaml │ ├── psp.yaml │ ├── role-binding.yaml │ ├── role.yaml │ ├── service-account.yaml │ ├── service.yaml │ ├── servicemonitor.yaml │ └── tls-secret.yaml └── values.yaml ├── secret ├── deploy-secret-netshoot.yaml ├── secret.yaml └── stringData-secret.yaml ├── securityContext ├── non-privileged-pod.yaml └── non-root-pod.yaml ├── service-account └── sa-deploy.yaml ├── service ├── clusterIP-svc.yml └── nginx-deploy.yaml ├── sns ├── ddl.sql ├── feed-server │ ├── .helmignore │ ├── Chart.yaml │ ├── ci │ │ └── jerry-dev-values.yaml │ └── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── pvc.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ └── tests │ │ └── test-connection.yaml ├── image-server │ ├── .helmignore │ ├── Chart.yaml │ ├── ci │ │ └── jerry-dev-values.yaml │ └── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── pvc.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ └── tests │ │ └── test-connection.yaml ├── sns-frontend │ ├── .helmignore │ ├── Chart.yaml │ ├── ci │ │ └── jerry-dev-values.yaml │ └── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── pvc.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ └── tests │ │ └── test-connection.yaml ├── timeline-server │ ├── .helmignore │ ├── Chart.yaml │ ├── ci │ │ └── jerry-dev-values.yaml │ └── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── pvc.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ └── tests │ │ └── test-connection.yaml └── user-server │ ├── .helmignore │ ├── Chart.yaml │ ├── ci │ └── jerry-dev-values.yaml │ └── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── deployment.yaml │ ├── hpa.yaml │ ├── ingress.yaml │ ├── pvc.yaml │ ├── service.yaml │ ├── serviceaccount.yaml │ ├── servicemonitor.yaml │ └── tests │ └── test-connection.yaml ├── strimzi-kafka-operator-0.39.0 ├── .helmignore ├── Chart.yaml ├── OWNERS ├── README.md ├── crds │ ├── 040-Crd-kafka.yaml │ ├── 041-Crd-kafkaconnect.yaml │ ├── 042-Crd-strimzipodset.yaml │ ├── 043-Crd-kafkatopic.yaml │ ├── 044-Crd-kafkauser.yaml │ ├── 045-Crd-kafkamirrormaker.yaml │ ├── 046-Crd-kafkabridge.yaml │ ├── 047-Crd-kafkaconnector.yaml │ ├── 048-Crd-kafkamirrormaker2.yaml │ ├── 049-Crd-kafkarebalance.yaml │ └── 04A-Crd-kafkanodepool.yaml ├── files │ └── grafana-dashboards │ │ ├── .templateignore │ │ ├── strimzi-cruise-control.json │ │ ├── strimzi-kafka-bridge.json │ │ ├── strimzi-kafka-connect.json │ │ ├── strimzi-kafka-exporter.json │ │ ├── strimzi-kafka-mirror-maker-2.json │ │ ├── strimzi-kafka-oauth.json │ │ ├── strimzi-kafka.json │ │ ├── strimzi-kraft.json │ │ ├── strimzi-operators.json │ │ └── strimzi-zookeeper.json ├── templates │ ├── 010-ServiceAccount-strimzi-cluster-operator.yaml │ ├── 020-ClusterRole-strimzi-cluster-operator-role.yaml │ ├── 020-RoleBinding-strimzi-cluster-operator.yaml │ ├── 021-ClusterRole-strimzi-cluster-operator-role.yaml │ ├── 021-ClusterRoleBinding-strimzi-cluster-operator.yaml │ ├── 022-ClusterRole-strimzi-cluster-operator-role.yaml │ ├── 022-RoleBinding-strimzi-cluster-operator.yaml │ ├── 023-ClusterRole-strimzi-cluster-operator-role.yaml │ ├── 023-RoleBinding-strimzi-cluster-operator.yaml │ ├── 030-ClusterRole-strimzi-kafka-broker.yaml │ ├── 030-ClusterRoleBinding-strimzi-cluster-operator-kafka-broker-delegation.yaml │ ├── 031-ClusterRole-strimzi-entity-operator.yaml │ ├── 031-RoleBinding-strimzi-cluster-operator-entity-operator-delegation.yaml │ ├── 033-ClusterRole-strimzi-kafka-client.yaml │ ├── 033-ClusterRoleBinding-strimzi-cluster-operator-kafka-client-delegation.yaml │ ├── 050-ConfigMap-strimzi-cluster-operator.yaml │ ├── 051-PodDisruptionBudget-strimzi-cluster-operator.yaml │ ├── 060-Deployment-strimzi-cluster-operator.yaml │ ├── 070-ClusterRole-strimzi-admin.yaml │ ├── 080-ClusterRole-strimzi-view.yaml │ ├── 090-ConfigMap-strimzi-grafana-dashboards.yaml │ ├── NOTES.txt │ ├── _helpers.tpl │ └── _kafka_image_map.tpl └── values.yaml ├── tempo └── tempo-distributed-1.4.2 │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README.md.gotmpl │ ├── charts │ ├── grafana-agent-operator │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── README.md.gotmpl │ │ ├── crds │ │ │ ├── monitoring.coreos.com_podmonitors.yaml │ │ │ ├── monitoring.coreos.com_probes.yaml │ │ │ ├── monitoring.coreos.com_servicemonitors.yaml │ │ │ ├── monitoring.grafana.com_grafanaagents.yaml │ │ │ ├── monitoring.grafana.com_integrations.yaml │ │ │ ├── monitoring.grafana.com_logsinstances.yaml │ │ │ ├── monitoring.grafana.com_metricsinstances.yaml │ │ │ └── monitoring.grafana.com_podlogs.yaml │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── operator-clusterrole.yaml │ │ │ ├── operator-clusterrolebinding.yaml │ │ │ ├── operator-deployment.yaml │ │ │ ├── operator-serviceaccount.yaml │ │ │ └── tests │ │ │ │ └── test-grafanaagent.yaml │ │ └── values.yaml │ └── minio │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── ci │ │ └── distributed-values.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helper_create_bucket.txt │ │ ├── _helpers.tpl │ │ ├── clusterroles.yaml │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── networkpolicy.yaml │ │ ├── poddisruptionbudget.yaml │ │ ├── post-install-create-bucket-job.yaml │ │ ├── post-install-prometheus-metrics-job.yaml │ │ ├── post-install-prometheus-metrics-role.yaml │ │ ├── post-install-prometheus-metrics-rolebinding.yaml │ │ ├── post-install-prometheus-metrics-serviceaccount.yaml │ │ ├── pvc.yaml │ │ ├── rolebindings.yaml │ │ ├── secrets.yaml │ │ ├── securitycontextconstraints.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ └── statefulset.yaml │ │ └── values.yaml │ ├── my-values.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── admin-api │ │ ├── admin-api-dep.yaml │ │ ├── admin-api-pdb.yaml │ │ ├── admin-api-servmon.yaml │ │ └── admin-api-svc.yaml │ ├── compactor │ │ ├── _helpers-compactor.tpl │ │ ├── deployment-compactor.yaml │ │ ├── poddisruptionbudget-compactor.yaml │ │ ├── service-compactor.yaml │ │ └── servicemonitor-compactor.yaml │ ├── configmap-tempo.yaml │ ├── distributor │ │ ├── _helpers-distributor.tpl │ │ ├── deployment-distributor.yaml │ │ ├── hpa.yaml │ │ ├── poddisruptionbudget-distributor.yaml │ │ ├── service-distributor-discovery.yaml │ │ ├── service-distributor.yaml │ │ └── servicemonitor-distributor.yaml │ ├── enterprise-gateway │ │ ├── _helpers.tpl │ │ ├── gateway-dep.yaml │ │ ├── gateway-ingress.yaml │ │ ├── gateway-pdb.yaml │ │ ├── gateway-servmon.yaml │ │ └── gateway-svc.yaml │ ├── gateway │ │ ├── _helpers-gateway.tpl │ │ ├── configmap-gateway.yaml │ │ ├── deployment-gateway.yaml │ │ ├── hpa.yaml │ │ ├── ingress-gateway.yaml │ │ ├── poddisruptionbudget-gateway.yaml │ │ ├── secret-gateway.yaml │ │ └── service-gateway.yaml │ ├── gossip-ring │ │ ├── _helpers.gossip-ring.tpl │ │ └── service-gossip-ring.yaml │ ├── ingester │ │ ├── _helpers-ingester.tpl │ │ ├── hpa.yaml │ │ ├── pdb.yaml │ │ ├── poddisruptionbudget-ingester.yaml │ │ ├── service-ingester-discovery.yaml │ │ ├── service-ingester.yaml │ │ ├── servicemonitor-ingester.yaml │ │ └── statefulset-ingester.yaml │ ├── lib │ │ ├── pdb.tpl │ │ └── service-monitor.tpl │ ├── license-secret.yaml │ ├── memcached │ │ ├── _helpers-memcached.tpl │ │ ├── poddisruptionbudget-memcached.yaml │ │ ├── service-memcached.yaml │ │ ├── servicemonitor-memcached.yaml │ │ └── statefulset-memcached.yaml │ ├── metamonitoring │ │ ├── _helpers.tpl │ │ ├── grafana-agent-cluster-role-binding.yaml │ │ ├── grafana-agent-cluster-role.yaml │ │ ├── grafana-agent-service-account.yaml │ │ ├── grafana-agent.yaml │ │ ├── kube-state-metrics-servmon.yaml │ │ ├── kubelet-cadvisor-servmon.yaml │ │ ├── logs-instance-usernames-secret.yaml │ │ ├── logs-instance.yaml │ │ ├── metrics-instance-usernames-secret.yaml │ │ ├── metrics-instance.yaml │ │ └── pod-logs.yaml │ ├── metrics-generator │ │ ├── _helpers-metrics-generator.tpl │ │ ├── deployment-metrics-generator.yaml │ │ ├── poddisruptionbudget-metrics-generator.yaml │ │ ├── service-metrics-generator-discovery.yaml │ │ ├── service-metrics-generator.yaml │ │ └── servicemonitor-metrics-generator.yaml │ ├── podsecuritypolicy.yaml │ ├── prometheusrule.yaml │ ├── querier │ │ ├── _helpers-querier.tpl │ │ ├── deployment-querier.yaml │ │ ├── hpa.yaml │ │ ├── poddisruptionbudget-querier.yaml │ │ ├── service-querier.yaml │ │ └── servicemonitor-querier.yaml │ ├── query-frontend │ │ ├── _helpers-query-frontend.tpl │ │ ├── deployment-query-frontend.yaml │ │ ├── hpa.yaml │ │ ├── ingress-query-frontend.yaml │ │ ├── poddisruptionbudget-query-frontend.yaml │ │ ├── service-query-frontend-discovery.yaml │ │ ├── service-query-frontend.yaml │ │ ├── servicemonitor-jaeger-query.yaml │ │ └── servicemonitor-query-frontend.yaml │ ├── role.yaml │ ├── rolebinding.yaml │ ├── serviceaccount.yaml │ └── tokengen │ │ └── tokengen-job.yaml │ └── values.yaml ├── tf ├── eks-v1-32-test │ ├── .terraform.lock.hcl │ ├── .vscode │ │ └── settings.json │ ├── README.md │ ├── eks-설치가이드.md │ ├── iam.tf │ ├── main.tf │ ├── outputs.tf │ ├── security-groups.tf │ ├── variables.tf │ └── vpc.tf ├── eks-v1-32 │ ├── .terraform.lock.hcl │ ├── .vscode │ │ └── settings.json │ ├── eks-al2023.tf │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ ├── versions.tf │ └── vpc.tf ├── iam │ └── loki-s3 │ │ ├── .terraform.lock.hcl │ │ ├── backend.tf │ │ ├── main.tf │ │ └── providers.tf └── s3 │ ├── backend-iam │ └── main.tf │ ├── backend-loki-s3 │ ├── .terraform.lock.hcl │ └── main.tf │ ├── backend │ ├── .terraform.lock.hcl │ └── main.tf │ └── loki-s3 │ ├── main.tf │ └── providers.tf ├── topology-aware └── echo-svc-deploy.yaml ├── topologySpreadConstraints └── echo-deployment.yaml └── utils ├── delete-available-ebs.sh └── delete-released-pv.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "git.ignoreLimitWarning": true 3 | } 4 | -------------------------------------------------------------------------------- /00.deprecated/tf-eks/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/00.deprecated/tf-eks/.terraform.lock.hcl -------------------------------------------------------------------------------- /00.deprecated/tf-eks/eks-cluster.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/00.deprecated/tf-eks/eks-cluster.tf -------------------------------------------------------------------------------- /00.deprecated/tf-eks/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/00.deprecated/tf-eks/main.tf -------------------------------------------------------------------------------- /00.deprecated/tf-eks/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/00.deprecated/tf-eks/outputs.tf -------------------------------------------------------------------------------- /00.deprecated/tf-eks/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/00.deprecated/tf-eks/variables.tf -------------------------------------------------------------------------------- /00.deprecated/tf-eks/vpc.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/00.deprecated/tf-eks/vpc.tf -------------------------------------------------------------------------------- /Kyverno/kyverno-helm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/Kyverno/kyverno-helm/values.yaml -------------------------------------------------------------------------------- /Kyverno/kyverno-policies/add-ns-quota.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/Kyverno/kyverno-policies/add-ns-quota.yaml -------------------------------------------------------------------------------- /Kyverno/kyverno-policies/disallow-latest-tag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/Kyverno/kyverno-policies/disallow-latest-tag.yaml -------------------------------------------------------------------------------- /Kyverno/kyverno-policies/forbid-cpu-limits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/Kyverno/kyverno-policies/forbid-cpu-limits.yaml -------------------------------------------------------------------------------- /Kyverno/kyverno-policies/require-drop-all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/Kyverno/kyverno-policies/require-drop-all.yaml -------------------------------------------------------------------------------- /Kyverno/kyverno-policies/require-labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/Kyverno/kyverno-policies/require-labels.yaml -------------------------------------------------------------------------------- /Kyverno/kyverno-policies/restrict-node-port.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/Kyverno/kyverno-policies/restrict-node-port.yaml -------------------------------------------------------------------------------- /Kyverno/policy-reporter/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/Kyverno/policy-reporter/ingress.yaml -------------------------------------------------------------------------------- /Kyverno/policy-reporter/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/Kyverno/policy-reporter/values.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # k8s-class 2 | 3 | -------------------------------------------------------------------------------- /actions-runner-controller-0.23.3/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/actions-runner-controller-0.23.3/.helmignore -------------------------------------------------------------------------------- /actions-runner-controller-0.23.3/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/actions-runner-controller-0.23.3/Chart.yaml -------------------------------------------------------------------------------- /actions-runner-controller-0.23.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/actions-runner-controller-0.23.3/README.md -------------------------------------------------------------------------------- /actions-runner-controller-0.23.3/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/actions-runner-controller-0.23.3/values.yaml -------------------------------------------------------------------------------- /affinity-toleration/node-affinity-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/affinity-toleration/node-affinity-deploy.yml -------------------------------------------------------------------------------- /affinity-toleration/pod-anti-affinity-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/affinity-toleration/pod-anti-affinity-deploy.yml -------------------------------------------------------------------------------- /affinity-toleration/tolerations-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/affinity-toleration/tolerations-deploy.yml -------------------------------------------------------------------------------- /argo-applicationset/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "git.ignoreLimitWarning": true 3 | } 4 | -------------------------------------------------------------------------------- /argo-applicationset/application-image-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-applicationset/application-image-server.yaml -------------------------------------------------------------------------------- /argo-applicationset/application-nginx-helm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-applicationset/application-nginx-helm.yaml -------------------------------------------------------------------------------- /argo-applicationset/applicationset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-applicationset/applicationset.yaml -------------------------------------------------------------------------------- /argo-cd-app-of-apps/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-cd-app-of-apps/Chart.yaml -------------------------------------------------------------------------------- /argo-cd-app-of-apps/apps-application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-cd-app-of-apps/apps-application.yaml -------------------------------------------------------------------------------- /argo-cd-app-of-apps/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-cd-app-of-apps/values.yaml -------------------------------------------------------------------------------- /argo-cd/appProject.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-cd/appProject.yaml -------------------------------------------------------------------------------- /argo-cd/argo-cd-5.14.1/.helmignore: -------------------------------------------------------------------------------- 1 | /*.tgz 2 | output 3 | ci/ 4 | *.gotmpl 5 | -------------------------------------------------------------------------------- /argo-cd/argo-cd-5.14.1/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-cd/argo-cd-5.14.1/Chart.lock -------------------------------------------------------------------------------- /argo-cd/argo-cd-5.14.1/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-cd/argo-cd-5.14.1/Chart.yaml -------------------------------------------------------------------------------- /argo-cd/argo-cd-5.14.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-cd/argo-cd-5.14.1/README.md -------------------------------------------------------------------------------- /argo-cd/argo-cd-5.14.1/charts/redis-ha/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-cd/argo-cd-5.14.1/charts/redis-ha/Chart.yaml -------------------------------------------------------------------------------- /argo-cd/argo-cd-5.14.1/charts/redis-ha/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-cd/argo-cd-5.14.1/charts/redis-ha/README.md -------------------------------------------------------------------------------- /argo-cd/argo-cd-5.14.1/ci/ingress-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-cd/argo-cd-5.14.1/ci/ingress-values.yaml -------------------------------------------------------------------------------- /argo-cd/argo-cd-5.14.1/ci/jerry-test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-cd/argo-cd-5.14.1/ci/jerry-test-values.yaml -------------------------------------------------------------------------------- /argo-cd/argo-cd-5.14.1/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-cd/argo-cd-5.14.1/templates/NOTES.txt -------------------------------------------------------------------------------- /argo-cd/argo-cd-5.14.1/templates/_common.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-cd/argo-cd-5.14.1/templates/_common.tpl -------------------------------------------------------------------------------- /argo-cd/argo-cd-5.14.1/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-cd/argo-cd-5.14.1/templates/_helpers.tpl -------------------------------------------------------------------------------- /argo-cd/argo-cd-5.14.1/templates/_versions.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-cd/argo-cd-5.14.1/templates/_versions.tpl -------------------------------------------------------------------------------- /argo-cd/argo-cd-5.14.1/templates/dex/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-cd/argo-cd-5.14.1/templates/dex/pdb.yaml -------------------------------------------------------------------------------- /argo-cd/argo-cd-5.14.1/templates/dex/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-cd/argo-cd-5.14.1/templates/dex/role.yaml -------------------------------------------------------------------------------- /argo-cd/argo-cd-5.14.1/templates/dex/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-cd/argo-cd-5.14.1/templates/dex/service.yaml -------------------------------------------------------------------------------- /argo-cd/argo-cd-5.14.1/templates/redis/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-cd/argo-cd-5.14.1/templates/redis/pdb.yaml -------------------------------------------------------------------------------- /argo-cd/argo-cd-5.14.1/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-cd/argo-cd-5.14.1/values.yaml -------------------------------------------------------------------------------- /argo-cd/argo-cd-5.51.4/.helmignore: -------------------------------------------------------------------------------- 1 | /*.tgz 2 | output 3 | ci/ 4 | *.gotmpl 5 | -------------------------------------------------------------------------------- /argo-cd/argo-cd-5.51.4/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-cd/argo-cd-5.51.4/Chart.lock -------------------------------------------------------------------------------- /argo-cd/argo-cd-5.51.4/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-cd/argo-cd-5.51.4/Chart.yaml -------------------------------------------------------------------------------- /argo-cd/argo-cd-5.51.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-cd/argo-cd-5.51.4/README.md -------------------------------------------------------------------------------- /argo-cd/argo-cd-5.51.4/charts/redis-ha/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-cd/argo-cd-5.51.4/charts/redis-ha/Chart.yaml -------------------------------------------------------------------------------- /argo-cd/argo-cd-5.51.4/charts/redis-ha/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-cd/argo-cd-5.51.4/charts/redis-ha/README.md -------------------------------------------------------------------------------- /argo-cd/argo-cd-5.51.4/ci/baas-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-cd/argo-cd-5.51.4/ci/baas-values.yaml -------------------------------------------------------------------------------- /argo-cd/argo-cd-5.51.4/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-cd/argo-cd-5.51.4/templates/NOTES.txt -------------------------------------------------------------------------------- /argo-cd/argo-cd-5.51.4/templates/_common.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-cd/argo-cd-5.51.4/templates/_common.tpl -------------------------------------------------------------------------------- /argo-cd/argo-cd-5.51.4/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-cd/argo-cd-5.51.4/templates/_helpers.tpl -------------------------------------------------------------------------------- /argo-cd/argo-cd-5.51.4/templates/_versions.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-cd/argo-cd-5.51.4/templates/_versions.tpl -------------------------------------------------------------------------------- /argo-cd/argo-cd-5.51.4/templates/dex/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-cd/argo-cd-5.51.4/templates/dex/pdb.yaml -------------------------------------------------------------------------------- /argo-cd/argo-cd-5.51.4/templates/dex/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-cd/argo-cd-5.51.4/templates/dex/role.yaml -------------------------------------------------------------------------------- /argo-cd/argo-cd-5.51.4/templates/dex/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-cd/argo-cd-5.51.4/templates/dex/service.yaml -------------------------------------------------------------------------------- /argo-cd/argo-cd-5.51.4/templates/redis/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-cd/argo-cd-5.51.4/templates/redis/pdb.yaml -------------------------------------------------------------------------------- /argo-cd/argo-cd-5.51.4/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-cd/argo-cd-5.51.4/values.yaml -------------------------------------------------------------------------------- /argo-cd/argo-cd-8.1.0/origin.values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-cd/argo-cd-8.1.0/origin.values.yaml -------------------------------------------------------------------------------- /argo-cd/argo-cd-8.1.0/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/argo-cd/argo-cd-8.1.0/values.yaml -------------------------------------------------------------------------------- /aws-ebs-csi/ebs-csi-add-on.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/aws-ebs-csi/ebs-csi-add-on.sh -------------------------------------------------------------------------------- /aws-ebs-csi/ebs-csi-irsa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/aws-ebs-csi/ebs-csi-irsa.sh -------------------------------------------------------------------------------- /aws-ebs-csi/ebs-default-storageclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/aws-ebs-csi/ebs-default-storageclass.yaml -------------------------------------------------------------------------------- /aws-ebs-csi/ebs-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/aws-ebs-csi/ebs-pvc.yaml -------------------------------------------------------------------------------- /aws-ebs-csi/pvc-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/aws-ebs-csi/pvc-pod.yaml -------------------------------------------------------------------------------- /aws-fis/fis-karpenter-cloudformation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/aws-fis/fis-karpenter-cloudformation.yaml -------------------------------------------------------------------------------- /aws-load-balancer-controller/iam_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/aws-load-balancer-controller/iam_policy.json -------------------------------------------------------------------------------- /cert-manager/cert-manager-v1.11.1/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cert-manager/cert-manager-v1.11.1/Chart.yaml -------------------------------------------------------------------------------- /cert-manager/cert-manager-v1.11.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cert-manager/cert-manager-v1.11.1/README.md -------------------------------------------------------------------------------- /cert-manager/cert-manager-v1.11.1/my-values.yaml: -------------------------------------------------------------------------------- 1 | prometheus: 2 | enabled: false 3 | -------------------------------------------------------------------------------- /cert-manager/cert-manager-v1.11.1/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cert-manager/cert-manager-v1.11.1/values.yaml -------------------------------------------------------------------------------- /cert-manager/cert-manager-v1.12.0/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cert-manager/cert-manager-v1.12.0/Chart.yaml -------------------------------------------------------------------------------- /cert-manager/cert-manager-v1.12.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cert-manager/cert-manager-v1.12.0/README.md -------------------------------------------------------------------------------- /cert-manager/cert-manager-v1.12.0/my-values.yaml: -------------------------------------------------------------------------------- 1 | prometheus: 2 | enabled: false 3 | -------------------------------------------------------------------------------- /cert-manager/cert-manager-v1.12.0/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cert-manager/cert-manager-v1.12.0/values.yaml -------------------------------------------------------------------------------- /cilium-1.14.2/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cilium-1.14.2/.helmignore -------------------------------------------------------------------------------- /cilium-1.14.2/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cilium-1.14.2/Chart.yaml -------------------------------------------------------------------------------- /cilium-1.14.2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cilium-1.14.2/LICENSE -------------------------------------------------------------------------------- /cilium-1.14.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cilium-1.14.2/README.md -------------------------------------------------------------------------------- /cilium-1.14.2/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cilium-1.14.2/README.md.gotmpl -------------------------------------------------------------------------------- /cilium-1.14.2/ci/my-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cilium-1.14.2/ci/my-values.yaml -------------------------------------------------------------------------------- /cilium-1.14.2/files/agent/poststart-eni.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cilium-1.14.2/files/agent/poststart-eni.bash -------------------------------------------------------------------------------- /cilium-1.14.2/files/nodeinit/prestop.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cilium-1.14.2/files/nodeinit/prestop.bash -------------------------------------------------------------------------------- /cilium-1.14.2/files/nodeinit/startup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cilium-1.14.2/files/nodeinit/startup.bash -------------------------------------------------------------------------------- /cilium-1.14.2/files/spire/init.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cilium-1.14.2/files/spire/init.bash -------------------------------------------------------------------------------- /cilium-1.14.2/files/spire/wait-for-spire.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cilium-1.14.2/files/spire/wait-for-spire.bash -------------------------------------------------------------------------------- /cilium-1.14.2/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cilium-1.14.2/templates/NOTES.txt -------------------------------------------------------------------------------- /cilium-1.14.2/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cilium-1.14.2/templates/_helpers.tpl -------------------------------------------------------------------------------- /cilium-1.14.2/templates/cilium-agent/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cilium-1.14.2/templates/cilium-agent/role.yaml -------------------------------------------------------------------------------- /cilium-1.14.2/templates/cilium-agent/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cilium-1.14.2/templates/cilium-agent/service.yaml -------------------------------------------------------------------------------- /cilium-1.14.2/templates/cilium-ca-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cilium-1.14.2/templates/cilium-ca-secret.yaml -------------------------------------------------------------------------------- /cilium-1.14.2/templates/cilium-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cilium-1.14.2/templates/cilium-configmap.yaml -------------------------------------------------------------------------------- /cilium-1.14.2/templates/cilium-envoy/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cilium-1.14.2/templates/cilium-envoy/service.yaml -------------------------------------------------------------------------------- /cilium-1.14.2/templates/cilium-ingress-class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cilium-1.14.2/templates/cilium-ingress-class.yaml -------------------------------------------------------------------------------- /cilium-1.14.2/templates/cilium-operator/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cilium-1.14.2/templates/cilium-operator/role.yaml -------------------------------------------------------------------------------- /cilium-1.14.2/templates/hubble-relay/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cilium-1.14.2/templates/hubble-relay/service.yaml -------------------------------------------------------------------------------- /cilium-1.14.2/templates/hubble-ui/_nginx.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cilium-1.14.2/templates/hubble-ui/_nginx.tpl -------------------------------------------------------------------------------- /cilium-1.14.2/templates/hubble-ui/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cilium-1.14.2/templates/hubble-ui/configmap.yaml -------------------------------------------------------------------------------- /cilium-1.14.2/templates/hubble-ui/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cilium-1.14.2/templates/hubble-ui/deployment.yaml -------------------------------------------------------------------------------- /cilium-1.14.2/templates/hubble-ui/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cilium-1.14.2/templates/hubble-ui/ingress.yaml -------------------------------------------------------------------------------- /cilium-1.14.2/templates/hubble-ui/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cilium-1.14.2/templates/hubble-ui/service.yaml -------------------------------------------------------------------------------- /cilium-1.14.2/templates/hubble/peer-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cilium-1.14.2/templates/hubble/peer-service.yaml -------------------------------------------------------------------------------- /cilium-1.14.2/templates/spire/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cilium-1.14.2/templates/spire/namespace.yaml -------------------------------------------------------------------------------- /cilium-1.14.2/templates/spire/server/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cilium-1.14.2/templates/spire/server/role.yaml -------------------------------------------------------------------------------- /cilium-1.14.2/templates/spire/server/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cilium-1.14.2/templates/spire/server/service.yaml -------------------------------------------------------------------------------- /cilium-1.14.2/templates/validate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cilium-1.14.2/templates/validate.yaml -------------------------------------------------------------------------------- /cilium-1.14.2/test/busybox-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cilium-1.14.2/test/busybox-pod.yaml -------------------------------------------------------------------------------- /cilium-1.14.2/test/nginx-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cilium-1.14.2/test/nginx-pod.yaml -------------------------------------------------------------------------------- /cilium-1.14.2/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cilium-1.14.2/values.yaml -------------------------------------------------------------------------------- /cilium-1.14.2/values.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cilium-1.14.2/values.yaml.tmpl -------------------------------------------------------------------------------- /coredns/pod-dns-ndot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/coredns/pod-dns-ndot.yaml -------------------------------------------------------------------------------- /crd/crd-example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/crd/crd-example.yaml -------------------------------------------------------------------------------- /cronjob/3times-cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cronjob/3times-cronjob.yaml -------------------------------------------------------------------------------- /cronjob/5tims-bash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/cronjob/5tims-bash.sh -------------------------------------------------------------------------------- /demo-app/eks-app-mesh-polyglot-demo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/demo-app/eks-app-mesh-polyglot-demo/LICENSE -------------------------------------------------------------------------------- /demo-app/eks-app-mesh-polyglot-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/demo-app/eks-app-mesh-polyglot-demo/README.md -------------------------------------------------------------------------------- /demo-app/grpc-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/demo-app/grpc-deploy.yaml -------------------------------------------------------------------------------- /demo-app/opentelemetry-demo-0.22.3/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/demo-app/opentelemetry-demo-0.22.3/.helmignore -------------------------------------------------------------------------------- /demo-app/opentelemetry-demo-0.22.3/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/demo-app/opentelemetry-demo-0.22.3/Chart.lock -------------------------------------------------------------------------------- /demo-app/opentelemetry-demo-0.22.3/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/demo-app/opentelemetry-demo-0.22.3/Chart.yaml -------------------------------------------------------------------------------- /demo-app/opentelemetry-demo-0.22.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/demo-app/opentelemetry-demo-0.22.3/README.md -------------------------------------------------------------------------------- /demo-app/opentelemetry-demo-0.22.3/UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/demo-app/opentelemetry-demo-0.22.3/UPGRADING.md -------------------------------------------------------------------------------- /demo-app/opentelemetry-demo-0.22.3/charts/grafana/ci/with-persistence.yaml: -------------------------------------------------------------------------------- 1 | persistence: 2 | type: pvc 3 | enabled: true 4 | -------------------------------------------------------------------------------- /demo-app/opentelemetry-demo-0.22.3/charts/grafana/dashboards/custom-dashboard.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /demo-app/opentelemetry-demo-0.22.3/charts/jaeger/charts/elasticsearch/.helmignore: -------------------------------------------------------------------------------- 1 | tests/ 2 | .pytest_cache/ 3 | -------------------------------------------------------------------------------- /demo-app/opentelemetry-demo-0.22.3/charts/jaeger/charts/elasticsearch/Makefile: -------------------------------------------------------------------------------- 1 | include ../helpers/common.mk 2 | -------------------------------------------------------------------------------- /demo-app/opentelemetry-demo-0.22.3/charts/jaeger/charts/elasticsearch/examples/config/watcher_encryption_key: -------------------------------------------------------------------------------- 1 | supersecret 2 | -------------------------------------------------------------------------------- /demo-app/opentelemetry-demo-0.22.3/charts/jaeger/charts/elasticsearch/examples/upgrade/values.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | clusterName: upgrade 3 | -------------------------------------------------------------------------------- /demo-app/opentelemetry-demo-0.22.3/charts/opentelemetry-collector/examples/daemonset-only/values.yaml: -------------------------------------------------------------------------------- 1 | mode: daemonset 2 | 3 | -------------------------------------------------------------------------------- /demo-app/opentelemetry-demo-0.22.3/charts/prometheus/charts/alertmanager/ci/config-reload-values.yaml: -------------------------------------------------------------------------------- 1 | configmapReload: 2 | enabled: true 3 | -------------------------------------------------------------------------------- /demo-app/opentelemetry-demo-0.22.3/ci/default-values.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo-app/opentelemetry-demo-0.22.3/examples/default/values.yaml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /demo-app/opentelemetry-demo-0.22.3/my-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/demo-app/opentelemetry-demo-0.22.3/my-values.yaml -------------------------------------------------------------------------------- /demo-app/opentelemetry-demo-0.22.3/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/demo-app/opentelemetry-demo-0.22.3/values.yaml -------------------------------------------------------------------------------- /deployment/busybox-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/deployment/busybox-deploy.yaml -------------------------------------------------------------------------------- /deployment/date-pvc-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/deployment/date-pvc-deploy.yml -------------------------------------------------------------------------------- /deployment/deploy-ecr-python-flask.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/deployment/deploy-ecr-python-flask.yaml -------------------------------------------------------------------------------- /deployment/deploy-netshoot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/deployment/deploy-netshoot.yaml -------------------------------------------------------------------------------- /deployment/ecr-python-test-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/deployment/ecr-python-test-deploy.yaml -------------------------------------------------------------------------------- /deployment/request-busybox-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/deployment/request-busybox-deploy.yaml -------------------------------------------------------------------------------- /elasticsearch/eck-operator-2.10.0/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/elasticsearch/eck-operator-2.10.0/.helmignore -------------------------------------------------------------------------------- /elasticsearch/eck-operator-2.10.0/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/elasticsearch/eck-operator-2.10.0/Chart.lock -------------------------------------------------------------------------------- /elasticsearch/eck-operator-2.10.0/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/elasticsearch/eck-operator-2.10.0/Chart.yaml -------------------------------------------------------------------------------- /elasticsearch/eck-operator-2.10.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/elasticsearch/eck-operator-2.10.0/LICENSE -------------------------------------------------------------------------------- /elasticsearch/eck-operator-2.10.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/elasticsearch/eck-operator-2.10.0/README.md -------------------------------------------------------------------------------- /elasticsearch/eck-operator-2.10.0/charts/eck-operator-crds/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | ECK Custom Resource Definitions installed. 2 | -------------------------------------------------------------------------------- /elasticsearch/eck-operator-2.10.0/ci/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/elasticsearch/eck-operator-2.10.0/ci/values.yaml -------------------------------------------------------------------------------- /elasticsearch/eck-operator-2.10.0/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/elasticsearch/eck-operator-2.10.0/values.yaml -------------------------------------------------------------------------------- /elasticsearch/elasticsearch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/elasticsearch/elasticsearch.yaml -------------------------------------------------------------------------------- /envsubst/my-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/envsubst/my-values.yaml -------------------------------------------------------------------------------- /external-dns/external-dns-1.12.2/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/external-dns/external-dns-1.12.2/.helmignore -------------------------------------------------------------------------------- /external-dns/external-dns-1.12.2/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/external-dns/external-dns-1.12.2/CHANGELOG.md -------------------------------------------------------------------------------- /external-dns/external-dns-1.12.2/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/external-dns/external-dns-1.12.2/Chart.yaml -------------------------------------------------------------------------------- /external-dns/external-dns-1.12.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/external-dns/external-dns-1.12.2/README.md -------------------------------------------------------------------------------- /external-dns/external-dns-1.12.2/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/external-dns/external-dns-1.12.2/RELEASE.md -------------------------------------------------------------------------------- /external-dns/external-dns-1.12.2/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/external-dns/external-dns-1.12.2/values.yaml -------------------------------------------------------------------------------- /external-dns/external-dns-1.16.1/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/external-dns/external-dns-1.16.1/values.yaml -------------------------------------------------------------------------------- /external-dns/policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/external-dns/policy.json -------------------------------------------------------------------------------- /github-actions-workflow/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/github-actions-workflow/Dockerfile -------------------------------------------------------------------------------- /github-actions-workflow/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/github-actions-workflow/LICENSE -------------------------------------------------------------------------------- /github-actions-workflow/README.md: -------------------------------------------------------------------------------- 1 | # github-actions-python -------------------------------------------------------------------------------- /github-actions-workflow/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/github-actions-workflow/app.py -------------------------------------------------------------------------------- /github-actions-workflow/docker-build-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/github-actions-workflow/docker-build-push.yml -------------------------------------------------------------------------------- /github-actions-workflow/requirements.txt: -------------------------------------------------------------------------------- 1 | flask -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/CHANGELOG.md -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/CONTRIBUTING.md -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/Chart.yaml -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/LICENSE.md -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/README.md -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/charts/cert-manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/charts/cert-manager/README.md -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/charts/gitlab-runner/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/charts/gitlab-runner/LICENSE -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/charts/gitlab-runner/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/charts/gitlab-runner/Makefile -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/charts/gitlab-runner/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/charts/gitlab-runner/NOTICE -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/charts/gitlab-zoekt/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/charts/gitlab-zoekt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/charts/gitlab-zoekt/LICENSE -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/charts/gitlab-zoekt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/charts/gitlab-zoekt/README.md -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/charts/gitlab/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/charts/gitlab/Chart.yaml -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/charts/gitlab/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/charts/gitlab/values.yaml -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/charts/minio/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/charts/minio/Chart.yaml -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/charts/minio/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/charts/minio/values.yaml -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/charts/postgresql/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/charts/postgresql/.helmignore -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/charts/postgresql/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/charts/postgresql/Chart.lock -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/charts/postgresql/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/charts/postgresql/Chart.yaml -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/charts/postgresql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/charts/postgresql/README.md -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/charts/postgresql/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/charts/postgresql/values.yaml -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/charts/prometheus/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/charts/prometheus/.helmignore -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/charts/prometheus/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/charts/prometheus/Chart.lock -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/charts/prometheus/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/charts/prometheus/Chart.yaml -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/charts/prometheus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/charts/prometheus/README.md -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/charts/prometheus/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/charts/prometheus/values.yaml -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/charts/redis/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/charts/redis/.helmignore -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/charts/redis/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/charts/redis/Chart.lock -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/charts/redis/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/charts/redis/Chart.yaml -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/charts/redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/charts/redis/README.md -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/charts/redis/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/charts/redis/values.yaml -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/charts/registry/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/charts/registry/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/charts/registry/Chart.yaml -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/charts/registry/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/charts/registry/index.md -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/charts/registry/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/charts/registry/values.yaml -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/ci/alooo-dev-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/ci/alooo-dev-values.yaml -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/requirements.lock -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/requirements.yaml -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/support/crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/support/crd.yaml -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/templates/NOTES.txt -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/templates/_application.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/templates/_application.tpl -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/templates/_boolean.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/templates/_boolean.tpl -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/templates/_certificates.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/templates/_certificates.tpl -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/templates/_checkConfig.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/templates/_checkConfig.tpl -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/templates/_deprecations.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/templates/_deprecations.tpl -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/templates/_geo.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/templates/_geo.tpl -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/templates/_gitaly.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/templates/_gitaly.tpl -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/templates/_helpers.tpl -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/templates/_hpa.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/templates/_hpa.tpl -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/templates/_ingress.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/templates/_ingress.tpl -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/templates/_kas.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/templates/_kas.tpl -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/templates/_migrations.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/templates/_migrations.tpl -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/templates/_minio.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/templates/_minio.tpl -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/templates/_oauth.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/templates/_oauth.tpl -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/templates/_pages.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/templates/_pages.tpl -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/templates/_pdb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/templates/_pdb.tpl -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/templates/_praefect.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/templates/_praefect.tpl -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/templates/_rails.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/templates/_rails.tpl -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/templates/_redis.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/templates/_redis.tpl -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/templates/_registry.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/templates/_registry.tpl -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/templates/_runcheck.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/templates/_runcheck.tpl -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/templates/_runner.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/templates/_runner.tpl -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/templates/_shell.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/templates/_shell.tpl -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/templates/_workhorse.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/templates/_workhorse.tpl -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/templates/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/templates/application.yaml -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/templates/chart-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/templates/chart-info.yaml -------------------------------------------------------------------------------- /gitlab/gitlab-7.0.1/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-7.0.1/values.yaml -------------------------------------------------------------------------------- /gitlab/gitlab-runner-0.54.0/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-runner-0.54.0/.gitlab-ci.yml -------------------------------------------------------------------------------- /gitlab/gitlab-runner-0.54.0/.gitlab/changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-runner-0.54.0/.gitlab/changelog.yml -------------------------------------------------------------------------------- /gitlab/gitlab-runner-0.54.0/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-runner-0.54.0/.helmignore -------------------------------------------------------------------------------- /gitlab/gitlab-runner-0.54.0/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-runner-0.54.0/CHANGELOG.md -------------------------------------------------------------------------------- /gitlab/gitlab-runner-0.54.0/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-runner-0.54.0/CONTRIBUTING.md -------------------------------------------------------------------------------- /gitlab/gitlab-runner-0.54.0/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-runner-0.54.0/Chart.yaml -------------------------------------------------------------------------------- /gitlab/gitlab-runner-0.54.0/DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-runner-0.54.0/DEVELOPMENT.md -------------------------------------------------------------------------------- /gitlab/gitlab-runner-0.54.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-runner-0.54.0/LICENSE -------------------------------------------------------------------------------- /gitlab/gitlab-runner-0.54.0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-runner-0.54.0/Makefile -------------------------------------------------------------------------------- /gitlab/gitlab-runner-0.54.0/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-runner-0.54.0/NOTICE -------------------------------------------------------------------------------- /gitlab/gitlab-runner-0.54.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-runner-0.54.0/README.md -------------------------------------------------------------------------------- /gitlab/gitlab-runner-0.54.0/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-runner-0.54.0/templates/NOTES.txt -------------------------------------------------------------------------------- /gitlab/gitlab-runner-0.54.0/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-runner-0.54.0/templates/hpa.yaml -------------------------------------------------------------------------------- /gitlab/gitlab-runner-0.54.0/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-runner-0.54.0/templates/role.yaml -------------------------------------------------------------------------------- /gitlab/gitlab-runner-0.54.0/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/gitlab-runner-0.54.0/values.yaml -------------------------------------------------------------------------------- /gitlab/passmate-tls-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/gitlab/passmate-tls-secret.yaml -------------------------------------------------------------------------------- /harbor/harbor-1.9.1/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/harbor/harbor-1.9.1/.helmignore -------------------------------------------------------------------------------- /harbor/harbor-1.9.1/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/harbor/harbor-1.9.1/Chart.yaml -------------------------------------------------------------------------------- /harbor/harbor-1.9.1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/harbor/harbor-1.9.1/LICENSE -------------------------------------------------------------------------------- /harbor/harbor-1.9.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/harbor/harbor-1.9.1/README.md -------------------------------------------------------------------------------- /harbor/harbor-1.9.1/cert/tls.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/harbor/harbor-1.9.1/cert/tls.crt -------------------------------------------------------------------------------- /harbor/harbor-1.9.1/cert/tls.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/harbor/harbor-1.9.1/cert/tls.key -------------------------------------------------------------------------------- /harbor/harbor-1.9.1/conf/notary-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/harbor/harbor-1.9.1/conf/notary-server.json -------------------------------------------------------------------------------- /harbor/harbor-1.9.1/conf/notary-signer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/harbor/harbor-1.9.1/conf/notary-signer.json -------------------------------------------------------------------------------- /harbor/harbor-1.9.1/my-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/harbor/harbor-1.9.1/my-values.yaml -------------------------------------------------------------------------------- /harbor/harbor-1.9.1/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/harbor/harbor-1.9.1/templates/NOTES.txt -------------------------------------------------------------------------------- /harbor/harbor-1.9.1/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/harbor/harbor-1.9.1/templates/_helpers.tpl -------------------------------------------------------------------------------- /harbor/harbor-1.9.1/templates/core/core-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/harbor/harbor-1.9.1/templates/core/core-cm.yaml -------------------------------------------------------------------------------- /harbor/harbor-1.9.1/templates/core/core-dpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/harbor/harbor-1.9.1/templates/core/core-dpl.yaml -------------------------------------------------------------------------------- /harbor/harbor-1.9.1/templates/core/core-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/harbor/harbor-1.9.1/templates/core/core-svc.yaml -------------------------------------------------------------------------------- /harbor/harbor-1.9.1/templates/core/core-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/harbor/harbor-1.9.1/templates/core/core-tls.yaml -------------------------------------------------------------------------------- /harbor/harbor-1.9.1/templates/nginx/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/harbor/harbor-1.9.1/templates/nginx/service.yaml -------------------------------------------------------------------------------- /harbor/harbor-1.9.1/templates/portal/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/harbor/harbor-1.9.1/templates/portal/service.yaml -------------------------------------------------------------------------------- /harbor/harbor-1.9.1/templates/portal/tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/harbor/harbor-1.9.1/templates/portal/tls.yaml -------------------------------------------------------------------------------- /harbor/harbor-1.9.1/templates/redis/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/harbor/harbor-1.9.1/templates/redis/service.yaml -------------------------------------------------------------------------------- /harbor/harbor-1.9.1/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/harbor/harbor-1.9.1/values.yaml -------------------------------------------------------------------------------- /helm/helm-starter-template/20250619/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/helm/helm-starter-template/20250619/.helmignore -------------------------------------------------------------------------------- /helm/helm-starter-template/20250619/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/helm/helm-starter-template/20250619/Chart.yaml -------------------------------------------------------------------------------- /helm/helm-starter-template/20250619/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/helm/helm-starter-template/20250619/README.md -------------------------------------------------------------------------------- /helm/helm-starter-template/20250619/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/helm/helm-starter-template/20250619/values.yaml -------------------------------------------------------------------------------- /helm/helm-starter-template/legacy/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/helm/helm-starter-template/legacy/.helmignore -------------------------------------------------------------------------------- /helm/helm-starter-template/legacy/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/helm/helm-starter-template/legacy/Chart.yaml -------------------------------------------------------------------------------- /helm/nginx/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/helm/nginx/.helmignore -------------------------------------------------------------------------------- /helm/nginx/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/helm/nginx/Chart.yaml -------------------------------------------------------------------------------- /helm/nginx/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/helm/nginx/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/nginx/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/helm/nginx/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/nginx/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/helm/nginx/templates/configmap.yaml -------------------------------------------------------------------------------- /helm/nginx/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/helm/nginx/templates/deployment.yaml -------------------------------------------------------------------------------- /helm/nginx/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/helm/nginx/templates/hpa.yaml -------------------------------------------------------------------------------- /helm/nginx/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/helm/nginx/templates/ingress.yaml -------------------------------------------------------------------------------- /helm/nginx/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/helm/nginx/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /helm/nginx/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/helm/nginx/templates/pdb.yaml -------------------------------------------------------------------------------- /helm/nginx/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/helm/nginx/templates/pvc.yaml -------------------------------------------------------------------------------- /helm/nginx/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/helm/nginx/templates/rbac.yaml -------------------------------------------------------------------------------- /helm/nginx/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/helm/nginx/templates/service.yaml -------------------------------------------------------------------------------- /helm/nginx/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/helm/nginx/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/nginx/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/helm/nginx/values.yaml -------------------------------------------------------------------------------- /helm/super-mario/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/helm/super-mario/.helmignore -------------------------------------------------------------------------------- /helm/super-mario/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/helm/super-mario/Chart.yaml -------------------------------------------------------------------------------- /helm/super-mario/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/helm/super-mario/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/super-mario/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/helm/super-mario/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/super-mario/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/helm/super-mario/templates/configmap.yaml -------------------------------------------------------------------------------- /helm/super-mario/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/helm/super-mario/templates/deployment.yaml -------------------------------------------------------------------------------- /helm/super-mario/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/helm/super-mario/templates/hpa.yaml -------------------------------------------------------------------------------- /helm/super-mario/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/helm/super-mario/templates/ingress.yaml -------------------------------------------------------------------------------- /helm/super-mario/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/helm/super-mario/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /helm/super-mario/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/helm/super-mario/templates/pdb.yaml -------------------------------------------------------------------------------- /helm/super-mario/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/helm/super-mario/templates/pvc.yaml -------------------------------------------------------------------------------- /helm/super-mario/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/helm/super-mario/templates/rbac.yaml -------------------------------------------------------------------------------- /helm/super-mario/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/helm/super-mario/templates/service.yaml -------------------------------------------------------------------------------- /helm/super-mario/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/helm/super-mario/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/super-mario/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/helm/super-mario/values.yaml -------------------------------------------------------------------------------- /hpa/php-apache-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/hpa/php-apache-deploy.yaml -------------------------------------------------------------------------------- /hpa/php-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/hpa/php-hpa.yaml -------------------------------------------------------------------------------- /ingress-nginx/ingress-nginx-4.4.0/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/ingress-nginx/ingress-nginx-4.4.0/.helmignore -------------------------------------------------------------------------------- /ingress-nginx/ingress-nginx-4.4.0/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/ingress-nginx/ingress-nginx-4.4.0/CHANGELOG.md -------------------------------------------------------------------------------- /ingress-nginx/ingress-nginx-4.4.0/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/ingress-nginx/ingress-nginx-4.4.0/Chart.yaml -------------------------------------------------------------------------------- /ingress-nginx/ingress-nginx-4.4.0/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/ingress-nginx/ingress-nginx-4.4.0/OWNERS -------------------------------------------------------------------------------- /ingress-nginx/ingress-nginx-4.4.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/ingress-nginx/ingress-nginx-4.4.0/README.md -------------------------------------------------------------------------------- /ingress-nginx/ingress-nginx-4.4.0/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/ingress-nginx/ingress-nginx-4.4.0/values.yaml -------------------------------------------------------------------------------- /ingress/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/ingress/ingress.yaml -------------------------------------------------------------------------------- /ingress/nginx-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/ingress/nginx-deployment.yaml -------------------------------------------------------------------------------- /ingress/nginx-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/ingress/nginx-ingress.yaml -------------------------------------------------------------------------------- /ingress/nginx-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/ingress/nginx-service.yaml -------------------------------------------------------------------------------- /jaeger/simple-jaeger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/jaeger/simple-jaeger.yml -------------------------------------------------------------------------------- /job/job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/job/job.yaml -------------------------------------------------------------------------------- /k8s-class.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/k8s-class.code-workspace -------------------------------------------------------------------------------- /kafka-ui-0.7.5/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka-ui-0.7.5/.helmignore -------------------------------------------------------------------------------- /kafka-ui-0.7.5/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka-ui-0.7.5/Chart.yaml -------------------------------------------------------------------------------- /kafka-ui-0.7.5/artifacthub-repo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka-ui-0.7.5/artifacthub-repo.yml -------------------------------------------------------------------------------- /kafka-ui-0.7.5/ci/my-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka-ui-0.7.5/ci/my-values.yaml -------------------------------------------------------------------------------- /kafka-ui-0.7.5/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka-ui-0.7.5/index.yaml -------------------------------------------------------------------------------- /kafka-ui-0.7.5/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka-ui-0.7.5/templates/NOTES.txt -------------------------------------------------------------------------------- /kafka-ui-0.7.5/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka-ui-0.7.5/templates/_helpers.tpl -------------------------------------------------------------------------------- /kafka-ui-0.7.5/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka-ui-0.7.5/templates/configmap.yaml -------------------------------------------------------------------------------- /kafka-ui-0.7.5/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka-ui-0.7.5/templates/deployment.yaml -------------------------------------------------------------------------------- /kafka-ui-0.7.5/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka-ui-0.7.5/templates/hpa.yaml -------------------------------------------------------------------------------- /kafka-ui-0.7.5/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka-ui-0.7.5/templates/ingress.yaml -------------------------------------------------------------------------------- /kafka-ui-0.7.5/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka-ui-0.7.5/templates/secret.yaml -------------------------------------------------------------------------------- /kafka-ui-0.7.5/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka-ui-0.7.5/templates/service.yaml -------------------------------------------------------------------------------- /kafka-ui-0.7.5/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka-ui-0.7.5/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /kafka-ui-0.7.5/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka-ui-0.7.5/values.yaml -------------------------------------------------------------------------------- /kafka/kafka-19.1.3/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-19.1.3/.helmignore -------------------------------------------------------------------------------- /kafka/kafka-19.1.3/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-19.1.3/Chart.lock -------------------------------------------------------------------------------- /kafka/kafka-19.1.3/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-19.1.3/Chart.yaml -------------------------------------------------------------------------------- /kafka/kafka-19.1.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-19.1.3/README.md -------------------------------------------------------------------------------- /kafka/kafka-19.1.3/charts/common/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-19.1.3/charts/common/.helmignore -------------------------------------------------------------------------------- /kafka/kafka-19.1.3/charts/common/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-19.1.3/charts/common/Chart.yaml -------------------------------------------------------------------------------- /kafka/kafka-19.1.3/charts/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-19.1.3/charts/common/README.md -------------------------------------------------------------------------------- /kafka/kafka-19.1.3/charts/common/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-19.1.3/charts/common/values.yaml -------------------------------------------------------------------------------- /kafka/kafka-19.1.3/charts/zookeeper/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-19.1.3/charts/zookeeper/.helmignore -------------------------------------------------------------------------------- /kafka/kafka-19.1.3/charts/zookeeper/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-19.1.3/charts/zookeeper/Chart.lock -------------------------------------------------------------------------------- /kafka/kafka-19.1.3/charts/zookeeper/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-19.1.3/charts/zookeeper/Chart.yaml -------------------------------------------------------------------------------- /kafka/kafka-19.1.3/charts/zookeeper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-19.1.3/charts/zookeeper/README.md -------------------------------------------------------------------------------- /kafka/kafka-19.1.3/charts/zookeeper/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-19.1.3/charts/zookeeper/values.yaml -------------------------------------------------------------------------------- /kafka/kafka-19.1.3/ci/singapore-test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-19.1.3/ci/singapore-test-values.yaml -------------------------------------------------------------------------------- /kafka/kafka-19.1.3/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-19.1.3/templates/NOTES.txt -------------------------------------------------------------------------------- /kafka/kafka-19.1.3/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-19.1.3/templates/_helpers.tpl -------------------------------------------------------------------------------- /kafka/kafka-19.1.3/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-19.1.3/templates/configmap.yaml -------------------------------------------------------------------------------- /kafka/kafka-19.1.3/templates/extra-list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-19.1.3/templates/extra-list.yaml -------------------------------------------------------------------------------- /kafka/kafka-19.1.3/templates/jaas-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-19.1.3/templates/jaas-secret.yaml -------------------------------------------------------------------------------- /kafka/kafka-19.1.3/templates/jmx-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-19.1.3/templates/jmx-configmap.yaml -------------------------------------------------------------------------------- /kafka/kafka-19.1.3/templates/jmx-metrics-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-19.1.3/templates/jmx-metrics-svc.yaml -------------------------------------------------------------------------------- /kafka/kafka-19.1.3/templates/log4j-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-19.1.3/templates/log4j-configmap.yaml -------------------------------------------------------------------------------- /kafka/kafka-19.1.3/templates/prometheusrule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-19.1.3/templates/prometheusrule.yaml -------------------------------------------------------------------------------- /kafka/kafka-19.1.3/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-19.1.3/templates/role.yaml -------------------------------------------------------------------------------- /kafka/kafka-19.1.3/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-19.1.3/templates/rolebinding.yaml -------------------------------------------------------------------------------- /kafka/kafka-19.1.3/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-19.1.3/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /kafka/kafka-19.1.3/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-19.1.3/templates/statefulset.yaml -------------------------------------------------------------------------------- /kafka/kafka-19.1.3/templates/svc-headless.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-19.1.3/templates/svc-headless.yaml -------------------------------------------------------------------------------- /kafka/kafka-19.1.3/templates/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-19.1.3/templates/svc.yaml -------------------------------------------------------------------------------- /kafka/kafka-19.1.3/templates/tls-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-19.1.3/templates/tls-secrets.yaml -------------------------------------------------------------------------------- /kafka/kafka-19.1.3/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-19.1.3/values.yaml -------------------------------------------------------------------------------- /kafka/kafka-28.0.3/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-28.0.3/.helmignore -------------------------------------------------------------------------------- /kafka/kafka-28.0.3/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-28.0.3/Chart.lock -------------------------------------------------------------------------------- /kafka/kafka-28.0.3/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-28.0.3/Chart.yaml -------------------------------------------------------------------------------- /kafka/kafka-28.0.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-28.0.3/README.md -------------------------------------------------------------------------------- /kafka/kafka-28.0.3/charts/common/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-28.0.3/charts/common/.helmignore -------------------------------------------------------------------------------- /kafka/kafka-28.0.3/charts/common/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-28.0.3/charts/common/Chart.yaml -------------------------------------------------------------------------------- /kafka/kafka-28.0.3/charts/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-28.0.3/charts/common/README.md -------------------------------------------------------------------------------- /kafka/kafka-28.0.3/charts/common/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-28.0.3/charts/common/values.yaml -------------------------------------------------------------------------------- /kafka/kafka-28.0.3/charts/zookeeper/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-28.0.3/charts/zookeeper/.helmignore -------------------------------------------------------------------------------- /kafka/kafka-28.0.3/charts/zookeeper/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-28.0.3/charts/zookeeper/Chart.lock -------------------------------------------------------------------------------- /kafka/kafka-28.0.3/charts/zookeeper/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-28.0.3/charts/zookeeper/Chart.yaml -------------------------------------------------------------------------------- /kafka/kafka-28.0.3/charts/zookeeper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-28.0.3/charts/zookeeper/README.md -------------------------------------------------------------------------------- /kafka/kafka-28.0.3/charts/zookeeper/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-28.0.3/charts/zookeeper/values.yaml -------------------------------------------------------------------------------- /kafka/kafka-28.0.3/ci/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-28.0.3/ci/values.yaml -------------------------------------------------------------------------------- /kafka/kafka-28.0.3/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-28.0.3/templates/NOTES.txt -------------------------------------------------------------------------------- /kafka/kafka-28.0.3/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-28.0.3/templates/_helpers.tpl -------------------------------------------------------------------------------- /kafka/kafka-28.0.3/templates/broker/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-28.0.3/templates/broker/pdb.yaml -------------------------------------------------------------------------------- /kafka/kafka-28.0.3/templates/extra-list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-28.0.3/templates/extra-list.yaml -------------------------------------------------------------------------------- /kafka/kafka-28.0.3/templates/log4j-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-28.0.3/templates/log4j-configmap.yaml -------------------------------------------------------------------------------- /kafka/kafka-28.0.3/templates/metrics/jmx-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-28.0.3/templates/metrics/jmx-svc.yaml -------------------------------------------------------------------------------- /kafka/kafka-28.0.3/templates/metrics/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-28.0.3/templates/metrics/svc.yaml -------------------------------------------------------------------------------- /kafka/kafka-28.0.3/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-28.0.3/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /kafka/kafka-28.0.3/templates/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-28.0.3/templates/rbac/role.yaml -------------------------------------------------------------------------------- /kafka/kafka-28.0.3/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-28.0.3/templates/secrets.yaml -------------------------------------------------------------------------------- /kafka/kafka-28.0.3/templates/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-28.0.3/templates/svc.yaml -------------------------------------------------------------------------------- /kafka/kafka-28.0.3/templates/tls-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-28.0.3/templates/tls-secret.yaml -------------------------------------------------------------------------------- /kafka/kafka-28.0.3/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-28.0.3/values.yaml -------------------------------------------------------------------------------- /kafka/kafka-client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-client.yaml -------------------------------------------------------------------------------- /kafka/kafka-jerry-dev-persistent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-jerry-dev-persistent.yaml -------------------------------------------------------------------------------- /kafka/kafka-topic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kafka/kafka-topic.yaml -------------------------------------------------------------------------------- /karpenter/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "git.ignoreLimitWarning": true 3 | } 4 | -------------------------------------------------------------------------------- /karpenter/EC2NodeClass/EC2NodeClass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/EC2NodeClass/EC2NodeClass.yaml -------------------------------------------------------------------------------- /karpenter/NodePool/NodePool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/NodePool/NodePool.yaml -------------------------------------------------------------------------------- /karpenter/NodePool/nodepool-platform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/NodePool/nodepool-platform.yaml -------------------------------------------------------------------------------- /karpenter/NodePool/nodepool-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/NodePool/nodepool-service.yaml -------------------------------------------------------------------------------- /karpenter/busybox-graceful-shutdown-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/busybox-graceful-shutdown-pod.yaml -------------------------------------------------------------------------------- /karpenter/deploy-node-affinity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/deploy-node-affinity.yaml -------------------------------------------------------------------------------- /karpenter/karpenter-1.4.0/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/karpenter-1.4.0/.helmignore -------------------------------------------------------------------------------- /karpenter/karpenter-1.4.0/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/karpenter-1.4.0/Chart.lock -------------------------------------------------------------------------------- /karpenter/karpenter-1.4.0/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/karpenter-1.4.0/Chart.yaml -------------------------------------------------------------------------------- /karpenter/karpenter-1.4.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/karpenter-1.4.0/README.md -------------------------------------------------------------------------------- /karpenter/karpenter-1.4.0/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/karpenter-1.4.0/README.md.gotmpl -------------------------------------------------------------------------------- /karpenter/karpenter-1.4.0/artifacthub-repo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/karpenter-1.4.0/artifacthub-repo.yaml -------------------------------------------------------------------------------- /karpenter/karpenter-1.4.0/ci/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/karpenter-1.4.0/ci/values.yaml -------------------------------------------------------------------------------- /karpenter/karpenter-1.4.0/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/karpenter-1.4.0/templates/role.yaml -------------------------------------------------------------------------------- /karpenter/karpenter-1.4.0/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/karpenter-1.4.0/values.yaml -------------------------------------------------------------------------------- /karpenter/karpenter-1.5.2/origin-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/karpenter-1.5.2/origin-values.yaml -------------------------------------------------------------------------------- /karpenter/karpenter-1.5.2/sqs-policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/karpenter-1.5.2/sqs-policy.json -------------------------------------------------------------------------------- /karpenter/karpenter-1.5.2/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/karpenter-1.5.2/values.yaml -------------------------------------------------------------------------------- /karpenter/karpenter-v0.27.5/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/karpenter-v0.27.5/.helmignore -------------------------------------------------------------------------------- /karpenter/karpenter-v0.27.5/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/karpenter-v0.27.5/Chart.lock -------------------------------------------------------------------------------- /karpenter/karpenter-v0.27.5/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/karpenter-v0.27.5/Chart.yaml -------------------------------------------------------------------------------- /karpenter/karpenter-v0.27.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/karpenter-v0.27.5/README.md -------------------------------------------------------------------------------- /karpenter/karpenter-v0.27.5/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/karpenter-v0.27.5/README.md.gotmpl -------------------------------------------------------------------------------- /karpenter/karpenter-v0.27.5/ci/my-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/karpenter-v0.27.5/ci/my-values.yaml -------------------------------------------------------------------------------- /karpenter/karpenter-v0.27.5/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/karpenter-v0.27.5/values.yaml -------------------------------------------------------------------------------- /karpenter/karpenter-v0.33.1/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/karpenter-v0.33.1/.helmignore -------------------------------------------------------------------------------- /karpenter/karpenter-v0.33.1/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/karpenter-v0.33.1/Chart.lock -------------------------------------------------------------------------------- /karpenter/karpenter-v0.33.1/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/karpenter-v0.33.1/Chart.yaml -------------------------------------------------------------------------------- /karpenter/karpenter-v0.33.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/karpenter-v0.33.1/README.md -------------------------------------------------------------------------------- /karpenter/karpenter-v0.33.1/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/karpenter-v0.33.1/README.md.gotmpl -------------------------------------------------------------------------------- /karpenter/karpenter-v0.33.1/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/karpenter-v0.33.1/values.yaml -------------------------------------------------------------------------------- /karpenter/legacy/awsNodeTemplate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/legacy/awsNodeTemplate.yaml -------------------------------------------------------------------------------- /karpenter/legacy/provisioner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/legacy/provisioner.yaml -------------------------------------------------------------------------------- /karpenter/podAntiAffinity-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/podAntiAffinity-deploy.yml -------------------------------------------------------------------------------- /karpenter/tf/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/tf/.terraform.lock.hcl -------------------------------------------------------------------------------- /karpenter/tf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/tf/README.md -------------------------------------------------------------------------------- /karpenter/tf/karpenter-iam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/tf/karpenter-iam.md -------------------------------------------------------------------------------- /karpenter/tf/karpenter-iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/karpenter/tf/karpenter-iam.tf -------------------------------------------------------------------------------- /keda/api-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/keda/api-hpa.yaml -------------------------------------------------------------------------------- /kind/kind-no-default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kind/kind-no-default.yaml -------------------------------------------------------------------------------- /kubecost/cost-analyzer-1.103.4/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kubecost/cost-analyzer-1.103.4/Chart.yaml -------------------------------------------------------------------------------- /kubecost/cost-analyzer-1.103.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kubecost/cost-analyzer-1.103.4/README.md -------------------------------------------------------------------------------- /kubecost/cost-analyzer-1.103.4/charts/thanos/requirements.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kubecost/cost-analyzer-1.103.4/charts/thanos/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kubecost/cost-analyzer-1.103.4/values-amp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kubecost/cost-analyzer-1.103.4/values-amp.yaml -------------------------------------------------------------------------------- /kubecost/cost-analyzer-1.103.4/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kubecost/cost-analyzer-1.103.4/values.yaml -------------------------------------------------------------------------------- /kubecost/cost-analyzer-1.107.0/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kubecost/cost-analyzer-1.107.0/Chart.yaml -------------------------------------------------------------------------------- /kubecost/cost-analyzer-1.107.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kubecost/cost-analyzer-1.107.0/README.md -------------------------------------------------------------------------------- /kubecost/cost-analyzer-1.107.0/charts/thanos/requirements.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kubecost/cost-analyzer-1.107.0/charts/thanos/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kubecost/cost-analyzer-1.107.0/values-amp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kubecost/cost-analyzer-1.107.0/values-amp.yaml -------------------------------------------------------------------------------- /kubecost/cost-analyzer-1.107.0/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kubecost/cost-analyzer-1.107.0/values.yaml -------------------------------------------------------------------------------- /kubecost/cost-analyzer-1.107.1/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kubecost/cost-analyzer-1.107.1/Chart.yaml -------------------------------------------------------------------------------- /kubecost/cost-analyzer-1.107.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kubecost/cost-analyzer-1.107.1/README.md -------------------------------------------------------------------------------- /kubecost/cost-analyzer-1.107.1/charts/thanos/requirements.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kubecost/cost-analyzer-1.107.1/charts/thanos/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kubecost/cost-analyzer-1.107.1/values-amp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kubecost/cost-analyzer-1.107.1/values-amp.yaml -------------------------------------------------------------------------------- /kubecost/cost-analyzer-1.107.1/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kubecost/cost-analyzer-1.107.1/values.yaml -------------------------------------------------------------------------------- /kubeletConfiguration/kubeletConfiguration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/kubeletConfiguration/kubeletConfiguration.yaml -------------------------------------------------------------------------------- /limitRange/limitRange.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/limitRange/limitRange.yaml -------------------------------------------------------------------------------- /limitRange/test-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/limitRange/test-pod.yaml -------------------------------------------------------------------------------- /loki/error-echo-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/error-echo-deploy.yml -------------------------------------------------------------------------------- /loki/loki-5.36.3/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/loki-5.36.3/.helmignore -------------------------------------------------------------------------------- /loki/loki-5.36.3/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/loki-5.36.3/Chart.lock -------------------------------------------------------------------------------- /loki/loki-5.36.3/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/loki-5.36.3/Chart.yaml -------------------------------------------------------------------------------- /loki/loki-5.36.3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/loki-5.36.3/Makefile -------------------------------------------------------------------------------- /loki/loki-5.36.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/loki-5.36.3/README.md -------------------------------------------------------------------------------- /loki/loki-5.36.3/charts/minio/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/loki-5.36.3/charts/minio/.helmignore -------------------------------------------------------------------------------- /loki/loki-5.36.3/charts/minio/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/loki-5.36.3/charts/minio/Chart.yaml -------------------------------------------------------------------------------- /loki/loki-5.36.3/charts/minio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/loki-5.36.3/charts/minio/README.md -------------------------------------------------------------------------------- /loki/loki-5.36.3/charts/minio/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/loki-5.36.3/charts/minio/values.yaml -------------------------------------------------------------------------------- /loki/loki-5.36.3/ci/jerry-test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/loki-5.36.3/ci/jerry-test-values.yaml -------------------------------------------------------------------------------- /loki/loki-5.36.3/docs/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/loki-5.36.3/docs/examples/README.md -------------------------------------------------------------------------------- /loki/loki-5.36.3/docs/examples/oss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/loki-5.36.3/docs/examples/oss/README.md -------------------------------------------------------------------------------- /loki/loki-5.36.3/reference.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/loki-5.36.3/reference.md.gotmpl -------------------------------------------------------------------------------- /loki/loki-5.36.3/src/.yamllint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/loki-5.36.3/src/.yamllint.yaml -------------------------------------------------------------------------------- /loki/loki-5.36.3/src/alerts.yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/loki-5.36.3/src/alerts.yaml.tpl -------------------------------------------------------------------------------- /loki/loki-5.36.3/src/dashboards/loki-logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/loki-5.36.3/src/dashboards/loki-logs.json -------------------------------------------------------------------------------- /loki/loki-5.36.3/src/helm-test/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/loki-5.36.3/src/helm-test/Dockerfile -------------------------------------------------------------------------------- /loki/loki-5.36.3/src/helm-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/loki-5.36.3/src/helm-test/README.md -------------------------------------------------------------------------------- /loki/loki-5.36.3/src/helm-test/canary_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/loki-5.36.3/src/helm-test/canary_test.go -------------------------------------------------------------------------------- /loki/loki-5.36.3/src/helm-test/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/loki-5.36.3/src/helm-test/default.nix -------------------------------------------------------------------------------- /loki/loki-5.36.3/src/rules.yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/loki-5.36.3/src/rules.yaml.tpl -------------------------------------------------------------------------------- /loki/loki-5.36.3/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/loki-5.36.3/templates/NOTES.txt -------------------------------------------------------------------------------- /loki/loki-5.36.3/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/loki-5.36.3/templates/_helpers.tpl -------------------------------------------------------------------------------- /loki/loki-5.36.3/templates/backend/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/loki-5.36.3/templates/backend/hpa.yaml -------------------------------------------------------------------------------- /loki/loki-5.36.3/templates/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/loki-5.36.3/templates/config.yaml -------------------------------------------------------------------------------- /loki/loki-5.36.3/templates/gateway/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/loki-5.36.3/templates/gateway/hpa.yaml -------------------------------------------------------------------------------- /loki/loki-5.36.3/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/loki-5.36.3/templates/ingress.yaml -------------------------------------------------------------------------------- /loki/loki-5.36.3/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/loki-5.36.3/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /loki/loki-5.36.3/templates/read/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/loki-5.36.3/templates/read/hpa.yaml -------------------------------------------------------------------------------- /loki/loki-5.36.3/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/loki-5.36.3/templates/role.yaml -------------------------------------------------------------------------------- /loki/loki-5.36.3/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/loki-5.36.3/templates/rolebinding.yaml -------------------------------------------------------------------------------- /loki/loki-5.36.3/templates/secret-license.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/loki-5.36.3/templates/secret-license.yaml -------------------------------------------------------------------------------- /loki/loki-5.36.3/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/loki-5.36.3/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /loki/loki-5.36.3/templates/tests/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/loki-5.36.3/templates/tests/_helpers.tpl -------------------------------------------------------------------------------- /loki/loki-5.36.3/templates/validate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/loki-5.36.3/templates/validate.yaml -------------------------------------------------------------------------------- /loki/loki-5.36.3/templates/write/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/loki-5.36.3/templates/write/hpa.yaml -------------------------------------------------------------------------------- /loki/loki-5.36.3/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/loki-5.36.3/values.yaml -------------------------------------------------------------------------------- /loki/promtail-6.15.3/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/promtail-6.15.3/.helmignore -------------------------------------------------------------------------------- /loki/promtail-6.15.3/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/promtail-6.15.3/Chart.yaml -------------------------------------------------------------------------------- /loki/promtail-6.15.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/promtail-6.15.3/README.md -------------------------------------------------------------------------------- /loki/promtail-6.15.3/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/promtail-6.15.3/README.md.gotmpl -------------------------------------------------------------------------------- /loki/promtail-6.15.3/ci/default-values.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /loki/promtail-6.15.3/ci/deployment-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/promtail-6.15.3/ci/deployment-values.yaml -------------------------------------------------------------------------------- /loki/promtail-6.15.3/ci/jerry-test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/promtail-6.15.3/ci/jerry-test-values.yaml -------------------------------------------------------------------------------- /loki/promtail-6.15.3/ci/netpol-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/promtail-6.15.3/ci/netpol-values.yaml -------------------------------------------------------------------------------- /loki/promtail-6.15.3/ci/service-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/promtail-6.15.3/ci/service-values.yaml -------------------------------------------------------------------------------- /loki/promtail-6.15.3/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/promtail-6.15.3/templates/NOTES.txt -------------------------------------------------------------------------------- /loki/promtail-6.15.3/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/promtail-6.15.3/templates/_helpers.tpl -------------------------------------------------------------------------------- /loki/promtail-6.15.3/templates/_pod.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/promtail-6.15.3/templates/_pod.tpl -------------------------------------------------------------------------------- /loki/promtail-6.15.3/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/promtail-6.15.3/templates/configmap.yaml -------------------------------------------------------------------------------- /loki/promtail-6.15.3/templates/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/promtail-6.15.3/templates/daemonset.yaml -------------------------------------------------------------------------------- /loki/promtail-6.15.3/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/promtail-6.15.3/templates/deployment.yaml -------------------------------------------------------------------------------- /loki/promtail-6.15.3/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/promtail-6.15.3/templates/hpa.yaml -------------------------------------------------------------------------------- /loki/promtail-6.15.3/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/promtail-6.15.3/templates/ingress.yaml -------------------------------------------------------------------------------- /loki/promtail-6.15.3/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/promtail-6.15.3/templates/role.yaml -------------------------------------------------------------------------------- /loki/promtail-6.15.3/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/promtail-6.15.3/templates/secret.yaml -------------------------------------------------------------------------------- /loki/promtail-6.15.3/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/promtail-6.15.3/values.yaml -------------------------------------------------------------------------------- /loki/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/loki/values.yaml -------------------------------------------------------------------------------- /longhorn-1.5.1/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/longhorn-1.5.1/.helmignore -------------------------------------------------------------------------------- /longhorn-1.5.1/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/longhorn-1.5.1/Chart.yaml -------------------------------------------------------------------------------- /longhorn-1.5.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/longhorn-1.5.1/README.md -------------------------------------------------------------------------------- /longhorn-1.5.1/app-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/longhorn-1.5.1/app-readme.md -------------------------------------------------------------------------------- /longhorn-1.5.1/ci/my-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/longhorn-1.5.1/ci/my-values.yaml -------------------------------------------------------------------------------- /longhorn-1.5.1/longhorn-pvc-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/longhorn-1.5.1/longhorn-pvc-pod.yaml -------------------------------------------------------------------------------- /longhorn-1.5.1/longhorn-rwx-pvc-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/longhorn-1.5.1/longhorn-rwx-pvc-pod.yaml -------------------------------------------------------------------------------- /longhorn-1.5.1/questions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/longhorn-1.5.1/questions.yaml -------------------------------------------------------------------------------- /longhorn-1.5.1/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/longhorn-1.5.1/templates/NOTES.txt -------------------------------------------------------------------------------- /longhorn-1.5.1/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/longhorn-1.5.1/templates/_helpers.tpl -------------------------------------------------------------------------------- /longhorn-1.5.1/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/longhorn-1.5.1/templates/clusterrole.yaml -------------------------------------------------------------------------------- /longhorn-1.5.1/templates/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/longhorn-1.5.1/templates/crds.yaml -------------------------------------------------------------------------------- /longhorn-1.5.1/templates/daemonset-sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/longhorn-1.5.1/templates/daemonset-sa.yaml -------------------------------------------------------------------------------- /longhorn-1.5.1/templates/default-setting.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/longhorn-1.5.1/templates/default-setting.yaml -------------------------------------------------------------------------------- /longhorn-1.5.1/templates/deployment-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/longhorn-1.5.1/templates/deployment-ui.yaml -------------------------------------------------------------------------------- /longhorn-1.5.1/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/longhorn-1.5.1/templates/ingress.yaml -------------------------------------------------------------------------------- /longhorn-1.5.1/templates/postupgrade-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/longhorn-1.5.1/templates/postupgrade-job.yaml -------------------------------------------------------------------------------- /longhorn-1.5.1/templates/preupgrade-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/longhorn-1.5.1/templates/preupgrade-job.yaml -------------------------------------------------------------------------------- /longhorn-1.5.1/templates/psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/longhorn-1.5.1/templates/psp.yaml -------------------------------------------------------------------------------- /longhorn-1.5.1/templates/registry-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/longhorn-1.5.1/templates/registry-secret.yaml -------------------------------------------------------------------------------- /longhorn-1.5.1/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/longhorn-1.5.1/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /longhorn-1.5.1/templates/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/longhorn-1.5.1/templates/services.yaml -------------------------------------------------------------------------------- /longhorn-1.5.1/templates/storageclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/longhorn-1.5.1/templates/storageclass.yaml -------------------------------------------------------------------------------- /longhorn-1.5.1/templates/tls-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/longhorn-1.5.1/templates/tls-secrets.yaml -------------------------------------------------------------------------------- /longhorn-1.5.1/templates/uninstall-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/longhorn-1.5.1/templates/uninstall-job.yaml -------------------------------------------------------------------------------- /longhorn-1.5.1/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/longhorn-1.5.1/values.yaml -------------------------------------------------------------------------------- /mariadb-backup-cronjob/mariadb-backup-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/mariadb-backup-cronjob/mariadb-backup-pvc.yaml -------------------------------------------------------------------------------- /mariadb-backup-cronjob/mariadb-cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/mariadb-backup-cronjob/mariadb-cronjob.yaml -------------------------------------------------------------------------------- /mariadb-galera/mariadb-client-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/mariadb-galera/mariadb-client-deploy.yaml -------------------------------------------------------------------------------- /mariadb-galera/mariadb-galera-7.5.3/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/mariadb-galera/mariadb-galera-7.5.3/Chart.lock -------------------------------------------------------------------------------- /mariadb-galera/mariadb-galera-7.5.3/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/mariadb-galera/mariadb-galera-7.5.3/Chart.yaml -------------------------------------------------------------------------------- /mariadb-galera/mariadb-galera-7.5.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/mariadb-galera/mariadb-galera-7.5.3/README.md -------------------------------------------------------------------------------- /metrics-server/metrics-server-3.10.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/metrics-server/metrics-server-3.10.0/README.md -------------------------------------------------------------------------------- /metrics-server/metrics-server-3.10.0/ci/values.yaml: -------------------------------------------------------------------------------- 1 | apiService: 2 | insecureSkipTLSVerify: true 3 | -------------------------------------------------------------------------------- /metrics-server/metrics-server-3.11.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/metrics-server/metrics-server-3.11.0/README.md -------------------------------------------------------------------------------- /metrics-server/metrics-server-3.11.0/ci/on-prem-values.yaml: -------------------------------------------------------------------------------- 1 | args: 2 | - --kubelet-insecure-tls 3 | -------------------------------------------------------------------------------- /mongodb/mongodb-client-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/mongodb/mongodb-client-deploy.yaml -------------------------------------------------------------------------------- /mongodb/psmdb-db-1.15.0/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/mongodb/psmdb-db-1.15.0/.helmignore -------------------------------------------------------------------------------- /mongodb/psmdb-db-1.15.0/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/mongodb/psmdb-db-1.15.0/Chart.yaml -------------------------------------------------------------------------------- /mongodb/psmdb-db-1.15.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/mongodb/psmdb-db-1.15.0/README.md -------------------------------------------------------------------------------- /mongodb/psmdb-db-1.15.0/ci/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/mongodb/psmdb-db-1.15.0/ci/values.yaml -------------------------------------------------------------------------------- /mongodb/psmdb-db-1.15.0/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/mongodb/psmdb-db-1.15.0/templates/NOTES.txt -------------------------------------------------------------------------------- /mongodb/psmdb-db-1.15.0/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/mongodb/psmdb-db-1.15.0/templates/_helpers.tpl -------------------------------------------------------------------------------- /mongodb/psmdb-db-1.15.0/templates/cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/mongodb/psmdb-db-1.15.0/templates/cluster.yaml -------------------------------------------------------------------------------- /mongodb/psmdb-db-1.15.0/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/mongodb/psmdb-db-1.15.0/values.yaml -------------------------------------------------------------------------------- /mongodb/psmdb-operator-1.15.0/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/mongodb/psmdb-operator-1.15.0/.helmignore -------------------------------------------------------------------------------- /mongodb/psmdb-operator-1.15.0/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/mongodb/psmdb-operator-1.15.0/Chart.yaml -------------------------------------------------------------------------------- /mongodb/psmdb-operator-1.15.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/mongodb/psmdb-operator-1.15.0/LICENSE.txt -------------------------------------------------------------------------------- /mongodb/psmdb-operator-1.15.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/mongodb/psmdb-operator-1.15.0/README.md -------------------------------------------------------------------------------- /mongodb/psmdb-operator-1.15.0/ci/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/mongodb/psmdb-operator-1.15.0/ci/values.yaml -------------------------------------------------------------------------------- /mongodb/psmdb-operator-1.15.0/crds/crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/mongodb/psmdb-operator-1.15.0/crds/crd.yaml -------------------------------------------------------------------------------- /mongodb/psmdb-operator-1.15.0/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/mongodb/psmdb-operator-1.15.0/values.yaml -------------------------------------------------------------------------------- /network-policy/manifests/00-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/network-policy/manifests/00-namespace.yaml -------------------------------------------------------------------------------- /network-policy/manifests/01-demo-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/network-policy/manifests/01-demo-app.yaml -------------------------------------------------------------------------------- /network-policy/manifests/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/network-policy/manifests/ingress.yaml -------------------------------------------------------------------------------- /nfs-server-provisioner-1.8.0/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/nfs-server-provisioner-1.8.0/.helmignore -------------------------------------------------------------------------------- /nfs-server-provisioner-1.8.0/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/nfs-server-provisioner-1.8.0/Chart.yaml -------------------------------------------------------------------------------- /nfs-server-provisioner-1.8.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/nfs-server-provisioner-1.8.0/README.md -------------------------------------------------------------------------------- /nfs-server-provisioner-1.8.0/ci/my-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/nfs-server-provisioner-1.8.0/ci/my-values.yaml -------------------------------------------------------------------------------- /nfs-server-provisioner-1.8.0/nfs-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/nfs-server-provisioner-1.8.0/nfs-pvc.yaml -------------------------------------------------------------------------------- /nfs-server-provisioner-1.8.0/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/nfs-server-provisioner-1.8.0/values.yaml -------------------------------------------------------------------------------- /nginx-webserver/nginx-15.1.0/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/nginx-webserver/nginx-15.1.0/.helmignore -------------------------------------------------------------------------------- /nginx-webserver/nginx-15.1.0/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/nginx-webserver/nginx-15.1.0/Chart.lock -------------------------------------------------------------------------------- /nginx-webserver/nginx-15.1.0/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/nginx-webserver/nginx-15.1.0/Chart.yaml -------------------------------------------------------------------------------- /nginx-webserver/nginx-15.1.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/nginx-webserver/nginx-15.1.0/README.md -------------------------------------------------------------------------------- /nginx-webserver/nginx-15.1.0/ci/my-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/nginx-webserver/nginx-15.1.0/ci/my-values.yaml -------------------------------------------------------------------------------- /nginx-webserver/nginx-15.1.0/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/nginx-webserver/nginx-15.1.0/values.yaml -------------------------------------------------------------------------------- /node-selector/node-selector-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/node-selector/node-selector-deployment.yaml -------------------------------------------------------------------------------- /openebs/openebs-lite-sc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/openebs/openebs-lite-sc.yaml -------------------------------------------------------------------------------- /openebs/openebs-operator-lite.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/openebs/openebs-operator-lite.yaml -------------------------------------------------------------------------------- /opentelemetry-collector/opentelemetry-collector-0.59.1/examples/daemonset-only/values.yaml: -------------------------------------------------------------------------------- 1 | mode: daemonset 2 | 3 | -------------------------------------------------------------------------------- /opentelemetry-operator/opentelemetry-operator-0.29.2/ci/nameoverride-values.yaml: -------------------------------------------------------------------------------- 1 | nameOverride: foobar 2 | -------------------------------------------------------------------------------- /opentelemetry-operator/opentelemetry-operator-0.29.2/ci/secret-name-values.yaml: -------------------------------------------------------------------------------- 1 | admissionWebhooks: 2 | secretName: random-name 3 | -------------------------------------------------------------------------------- /opentelemetry-operator/opentelemetry-operator-0.29.2/examples/default/values.yaml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pod/busybox-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/pod/busybox-pod.yaml -------------------------------------------------------------------------------- /pod/pod-ephemeral-vol.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/pod/pod-ephemeral-vol.yaml -------------------------------------------------------------------------------- /pod/pod-log-emptydir-sidecar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/pod/pod-log-emptydir-sidecar.yaml -------------------------------------------------------------------------------- /pod/pod-log-emptydir.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/pod/pod-log-emptydir.yaml -------------------------------------------------------------------------------- /pod/python-web-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/pod/python-web-pod.yaml -------------------------------------------------------------------------------- /pod/ubuntu-utils-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/pod/ubuntu-utils-pod.yaml -------------------------------------------------------------------------------- /podDisruptionBudget/pdb-nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/podDisruptionBudget/pdb-nginx.yaml -------------------------------------------------------------------------------- /polaris/polaris-5.16.0/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/polaris/polaris-5.16.0/CHANGELOG.md -------------------------------------------------------------------------------- /polaris/polaris-5.16.0/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/polaris/polaris-5.16.0/Chart.yaml -------------------------------------------------------------------------------- /polaris/polaris-5.16.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/polaris/polaris-5.16.0/README.md -------------------------------------------------------------------------------- /polaris/polaris-5.16.0/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/polaris/polaris-5.16.0/README.md.gotmpl -------------------------------------------------------------------------------- /polaris/polaris-5.16.0/ci/merge-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/polaris/polaris-5.16.0/ci/merge-values.yaml -------------------------------------------------------------------------------- /polaris/polaris-5.16.0/ci/my-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/polaris/polaris-5.16.0/ci/my-values.yaml -------------------------------------------------------------------------------- /polaris/polaris-5.16.0/ci/test-values-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/polaris/polaris-5.16.0/ci/test-values-2.yaml -------------------------------------------------------------------------------- /polaris/polaris-5.16.0/ci/test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/polaris/polaris-5.16.0/ci/test-values.yaml -------------------------------------------------------------------------------- /polaris/polaris-5.16.0/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/polaris/polaris-5.16.0/templates/NOTES.txt -------------------------------------------------------------------------------- /polaris/polaris-5.16.0/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/polaris/polaris-5.16.0/templates/_helpers.tpl -------------------------------------------------------------------------------- /polaris/polaris-5.16.0/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/polaris/polaris-5.16.0/templates/ingress.yaml -------------------------------------------------------------------------------- /polaris/polaris-5.16.0/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/polaris/polaris-5.16.0/templates/rbac.yaml -------------------------------------------------------------------------------- /polaris/polaris-5.16.0/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/polaris/polaris-5.16.0/values.yaml -------------------------------------------------------------------------------- /polaris/polaris-5.8.0/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/polaris/polaris-5.8.0/CHANGELOG.md -------------------------------------------------------------------------------- /polaris/polaris-5.8.0/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/polaris/polaris-5.8.0/Chart.yaml -------------------------------------------------------------------------------- /polaris/polaris-5.8.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/polaris/polaris-5.8.0/README.md -------------------------------------------------------------------------------- /polaris/polaris-5.8.0/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/polaris/polaris-5.8.0/README.md.gotmpl -------------------------------------------------------------------------------- /polaris/polaris-5.8.0/ci/merge-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/polaris/polaris-5.8.0/ci/merge-values.yaml -------------------------------------------------------------------------------- /polaris/polaris-5.8.0/ci/test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/polaris/polaris-5.8.0/ci/test-values.yaml -------------------------------------------------------------------------------- /polaris/polaris-5.8.0/my-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/polaris/polaris-5.8.0/my-values.yaml -------------------------------------------------------------------------------- /polaris/polaris-5.8.0/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/polaris/polaris-5.8.0/templates/NOTES.txt -------------------------------------------------------------------------------- /polaris/polaris-5.8.0/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/polaris/polaris-5.8.0/templates/_helpers.tpl -------------------------------------------------------------------------------- /polaris/polaris-5.8.0/templates/audit.job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/polaris/polaris-5.8.0/templates/audit.job.yaml -------------------------------------------------------------------------------- /polaris/polaris-5.8.0/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/polaris/polaris-5.8.0/templates/configmap.yaml -------------------------------------------------------------------------------- /polaris/polaris-5.8.0/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/polaris/polaris-5.8.0/templates/ingress.yaml -------------------------------------------------------------------------------- /polaris/polaris-5.8.0/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/polaris/polaris-5.8.0/templates/rbac.yaml -------------------------------------------------------------------------------- /polaris/polaris-5.8.0/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/polaris/polaris-5.8.0/values.yaml -------------------------------------------------------------------------------- /postgresql/cloudnative-pg-operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/postgresql/cloudnative-pg-operator.yaml -------------------------------------------------------------------------------- /postgresql/myclient.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/postgresql/myclient.yaml -------------------------------------------------------------------------------- /postgresql/pg-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/postgresql/pg-cluster.yaml -------------------------------------------------------------------------------- /postgresql/pg-sync-replica-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/postgresql/pg-sync-replica-cluster.yaml -------------------------------------------------------------------------------- /postgresql/pooler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/postgresql/pooler.yaml -------------------------------------------------------------------------------- /postgresql/query.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/postgresql/query.sql -------------------------------------------------------------------------------- /prometheus/kube-prometheus-stack-47.0.0/charts/grafana/ci/with-persistence.yaml: -------------------------------------------------------------------------------- 1 | persistence: 2 | type: pvc 3 | enabled: true 4 | -------------------------------------------------------------------------------- /prometheus/kube-prometheus-stack-47.0.0/charts/grafana/dashboards/custom-dashboard.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /prometheus/kube-prometheus-stack-48.3.1/charts/grafana/ci/with-persistence.yaml: -------------------------------------------------------------------------------- 1 | persistence: 2 | type: pvc 3 | enabled: true 4 | -------------------------------------------------------------------------------- /prometheus/kube-prometheus-stack-48.3.1/charts/grafana/dashboards/custom-dashboard.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pvc/date-from-pv-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/pvc/date-from-pv-pvc.yaml -------------------------------------------------------------------------------- /pvc/date-pvc-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/pvc/date-pvc-deploy.yml -------------------------------------------------------------------------------- /pvc/date-pvc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/pvc/date-pvc.yml -------------------------------------------------------------------------------- /pvc/ephemeral-vol-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/pvc/ephemeral-vol-deploy.yaml -------------------------------------------------------------------------------- /pvc/pv-to-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/pvc/pv-to-pvc.yaml -------------------------------------------------------------------------------- /pvc/pvc-efs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/pvc/pvc-efs.yml -------------------------------------------------------------------------------- /redis/redis-17.8.5/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/redis/redis-17.8.5/.helmignore -------------------------------------------------------------------------------- /redis/redis-17.8.5/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/redis/redis-17.8.5/Chart.lock -------------------------------------------------------------------------------- /redis/redis-17.8.5/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/redis/redis-17.8.5/Chart.yaml -------------------------------------------------------------------------------- /redis/redis-17.8.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/redis/redis-17.8.5/README.md -------------------------------------------------------------------------------- /redis/redis-17.8.5/charts/common/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/redis/redis-17.8.5/charts/common/.helmignore -------------------------------------------------------------------------------- /redis/redis-17.8.5/charts/common/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/redis/redis-17.8.5/charts/common/Chart.yaml -------------------------------------------------------------------------------- /redis/redis-17.8.5/charts/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/redis/redis-17.8.5/charts/common/README.md -------------------------------------------------------------------------------- /redis/redis-17.8.5/charts/common/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/redis/redis-17.8.5/charts/common/values.yaml -------------------------------------------------------------------------------- /redis/redis-17.8.5/ci/my-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/redis/redis-17.8.5/ci/my-values.yaml -------------------------------------------------------------------------------- /redis/redis-17.8.5/img/redis-topology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/redis/redis-17.8.5/img/redis-topology.png -------------------------------------------------------------------------------- /redis/redis-17.8.5/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/redis/redis-17.8.5/templates/NOTES.txt -------------------------------------------------------------------------------- /redis/redis-17.8.5/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/redis/redis-17.8.5/templates/_helpers.tpl -------------------------------------------------------------------------------- /redis/redis-17.8.5/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/redis/redis-17.8.5/templates/configmap.yaml -------------------------------------------------------------------------------- /redis/redis-17.8.5/templates/extra-list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/redis/redis-17.8.5/templates/extra-list.yaml -------------------------------------------------------------------------------- /redis/redis-17.8.5/templates/headless-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/redis/redis-17.8.5/templates/headless-svc.yaml -------------------------------------------------------------------------------- /redis/redis-17.8.5/templates/master/psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/redis/redis-17.8.5/templates/master/psp.yaml -------------------------------------------------------------------------------- /redis/redis-17.8.5/templates/master/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/redis/redis-17.8.5/templates/master/pvc.yaml -------------------------------------------------------------------------------- /redis/redis-17.8.5/templates/metrics-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/redis/redis-17.8.5/templates/metrics-svc.yaml -------------------------------------------------------------------------------- /redis/redis-17.8.5/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/redis/redis-17.8.5/templates/pdb.yaml -------------------------------------------------------------------------------- /redis/redis-17.8.5/templates/replicas/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/redis/redis-17.8.5/templates/replicas/hpa.yaml -------------------------------------------------------------------------------- /redis/redis-17.8.5/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/redis/redis-17.8.5/templates/role.yaml -------------------------------------------------------------------------------- /redis/redis-17.8.5/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/redis/redis-17.8.5/templates/rolebinding.yaml -------------------------------------------------------------------------------- /redis/redis-17.8.5/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/redis/redis-17.8.5/templates/secret.yaml -------------------------------------------------------------------------------- /redis/redis-17.8.5/templates/sentinel/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/redis/redis-17.8.5/templates/sentinel/hpa.yaml -------------------------------------------------------------------------------- /redis/redis-17.8.5/templates/tls-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/redis/redis-17.8.5/templates/tls-secret.yaml -------------------------------------------------------------------------------- /redis/redis-17.8.5/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/redis/redis-17.8.5/values.schema.json -------------------------------------------------------------------------------- /redis/redis-17.8.5/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/redis/redis-17.8.5/values.yaml -------------------------------------------------------------------------------- /redis/redis-client-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/redis/redis-client-deploy.yaml -------------------------------------------------------------------------------- /resourceQuotas/resourceQuotas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/resourceQuotas/resourceQuotas.yaml -------------------------------------------------------------------------------- /robusta/robusta-0.10.23/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/robusta/robusta-0.10.23/.helmignore -------------------------------------------------------------------------------- /robusta/robusta-0.10.23/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/robusta/robusta-0.10.23/Chart.lock -------------------------------------------------------------------------------- /robusta/robusta-0.10.23/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/robusta/robusta-0.10.23/Chart.yaml -------------------------------------------------------------------------------- /robusta/robusta-0.10.23/charts/kube-prometheus-stack/charts/grafana/ci/with-persistence.yaml: -------------------------------------------------------------------------------- 1 | persistence: 2 | type: pvc 3 | enabled: true 4 | -------------------------------------------------------------------------------- /robusta/robusta-0.10.23/charts/kube-prometheus-stack/charts/grafana/dashboards/custom-dashboard.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /robusta/robusta-0.10.23/kubewatch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/robusta/robusta-0.10.23/kubewatch.yaml -------------------------------------------------------------------------------- /robusta/robusta-0.10.23/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/robusta/robusta-0.10.23/templates/NOTES.txt -------------------------------------------------------------------------------- /robusta/robusta-0.10.23/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/robusta/robusta-0.10.23/templates/_helpers.tpl -------------------------------------------------------------------------------- /robusta/robusta-0.10.23/templates/runner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/robusta/robusta-0.10.23/templates/runner.yaml -------------------------------------------------------------------------------- /robusta/robusta-0.10.23/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/robusta/robusta-0.10.23/values.yaml -------------------------------------------------------------------------------- /robusta/robusta-0.10.25/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/robusta/robusta-0.10.25/.helmignore -------------------------------------------------------------------------------- /robusta/robusta-0.10.25/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/robusta/robusta-0.10.25/Chart.lock -------------------------------------------------------------------------------- /robusta/robusta-0.10.25/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/robusta/robusta-0.10.25/Chart.yaml -------------------------------------------------------------------------------- /robusta/robusta-0.10.25/charts/kube-prometheus-stack/charts/grafana/ci/with-persistence.yaml: -------------------------------------------------------------------------------- 1 | persistence: 2 | type: pvc 3 | enabled: true 4 | -------------------------------------------------------------------------------- /robusta/robusta-0.10.25/charts/kube-prometheus-stack/charts/grafana/dashboards/custom-dashboard.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /robusta/robusta-0.10.25/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/robusta/robusta-0.10.25/templates/NOTES.txt -------------------------------------------------------------------------------- /robusta/robusta-0.10.25/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/robusta/robusta-0.10.25/templates/_helpers.tpl -------------------------------------------------------------------------------- /robusta/robusta-0.10.25/templates/runner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/robusta/robusta-0.10.25/templates/runner.yaml -------------------------------------------------------------------------------- /robusta/robusta-0.10.25/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/robusta/robusta-0.10.25/values.yaml -------------------------------------------------------------------------------- /sealed-secrets-2.10.0/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sealed-secrets-2.10.0/.helmignore -------------------------------------------------------------------------------- /sealed-secrets-2.10.0/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sealed-secrets-2.10.0/Chart.yaml -------------------------------------------------------------------------------- /sealed-secrets-2.10.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sealed-secrets-2.10.0/README.md -------------------------------------------------------------------------------- /sealed-secrets-2.10.0/SealedSecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sealed-secrets-2.10.0/SealedSecret.yaml -------------------------------------------------------------------------------- /sealed-secrets-2.10.0/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sealed-secrets-2.10.0/templates/NOTES.txt -------------------------------------------------------------------------------- /sealed-secrets-2.10.0/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sealed-secrets-2.10.0/templates/_helpers.tpl -------------------------------------------------------------------------------- /sealed-secrets-2.10.0/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sealed-secrets-2.10.0/templates/ingress.yaml -------------------------------------------------------------------------------- /sealed-secrets-2.10.0/templates/psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sealed-secrets-2.10.0/templates/psp.yaml -------------------------------------------------------------------------------- /sealed-secrets-2.10.0/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sealed-secrets-2.10.0/templates/role.yaml -------------------------------------------------------------------------------- /sealed-secrets-2.10.0/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sealed-secrets-2.10.0/templates/service.yaml -------------------------------------------------------------------------------- /sealed-secrets-2.10.0/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sealed-secrets-2.10.0/values.yaml -------------------------------------------------------------------------------- /secret/deploy-secret-netshoot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/secret/deploy-secret-netshoot.yaml -------------------------------------------------------------------------------- /secret/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/secret/secret.yaml -------------------------------------------------------------------------------- /secret/stringData-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/secret/stringData-secret.yaml -------------------------------------------------------------------------------- /securityContext/non-privileged-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/securityContext/non-privileged-pod.yaml -------------------------------------------------------------------------------- /securityContext/non-root-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/securityContext/non-root-pod.yaml -------------------------------------------------------------------------------- /service-account/sa-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/service-account/sa-deploy.yaml -------------------------------------------------------------------------------- /service/clusterIP-svc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/service/clusterIP-svc.yml -------------------------------------------------------------------------------- /service/nginx-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/service/nginx-deploy.yaml -------------------------------------------------------------------------------- /sns/ddl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/ddl.sql -------------------------------------------------------------------------------- /sns/feed-server/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/feed-server/.helmignore -------------------------------------------------------------------------------- /sns/feed-server/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/feed-server/Chart.yaml -------------------------------------------------------------------------------- /sns/feed-server/ci/jerry-dev-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/feed-server/ci/jerry-dev-values.yaml -------------------------------------------------------------------------------- /sns/feed-server/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/feed-server/templates/NOTES.txt -------------------------------------------------------------------------------- /sns/feed-server/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/feed-server/templates/_helpers.tpl -------------------------------------------------------------------------------- /sns/feed-server/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/feed-server/templates/configmap.yaml -------------------------------------------------------------------------------- /sns/feed-server/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/feed-server/templates/deployment.yaml -------------------------------------------------------------------------------- /sns/feed-server/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/feed-server/templates/hpa.yaml -------------------------------------------------------------------------------- /sns/feed-server/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/feed-server/templates/ingress.yaml -------------------------------------------------------------------------------- /sns/feed-server/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/feed-server/templates/pvc.yaml -------------------------------------------------------------------------------- /sns/feed-server/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/feed-server/templates/service.yaml -------------------------------------------------------------------------------- /sns/feed-server/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/feed-server/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /sns/feed-server/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/feed-server/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /sns/image-server/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/image-server/.helmignore -------------------------------------------------------------------------------- /sns/image-server/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/image-server/Chart.yaml -------------------------------------------------------------------------------- /sns/image-server/ci/jerry-dev-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/image-server/ci/jerry-dev-values.yaml -------------------------------------------------------------------------------- /sns/image-server/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/image-server/templates/NOTES.txt -------------------------------------------------------------------------------- /sns/image-server/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/image-server/templates/_helpers.tpl -------------------------------------------------------------------------------- /sns/image-server/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/image-server/templates/configmap.yaml -------------------------------------------------------------------------------- /sns/image-server/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/image-server/templates/deployment.yaml -------------------------------------------------------------------------------- /sns/image-server/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/image-server/templates/hpa.yaml -------------------------------------------------------------------------------- /sns/image-server/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/image-server/templates/ingress.yaml -------------------------------------------------------------------------------- /sns/image-server/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/image-server/templates/pvc.yaml -------------------------------------------------------------------------------- /sns/image-server/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/image-server/templates/service.yaml -------------------------------------------------------------------------------- /sns/image-server/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/image-server/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /sns/image-server/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/image-server/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /sns/sns-frontend/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/sns-frontend/.helmignore -------------------------------------------------------------------------------- /sns/sns-frontend/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/sns-frontend/Chart.yaml -------------------------------------------------------------------------------- /sns/sns-frontend/ci/jerry-dev-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/sns-frontend/ci/jerry-dev-values.yaml -------------------------------------------------------------------------------- /sns/sns-frontend/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/sns-frontend/templates/NOTES.txt -------------------------------------------------------------------------------- /sns/sns-frontend/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/sns-frontend/templates/_helpers.tpl -------------------------------------------------------------------------------- /sns/sns-frontend/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/sns-frontend/templates/configmap.yaml -------------------------------------------------------------------------------- /sns/sns-frontend/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/sns-frontend/templates/deployment.yaml -------------------------------------------------------------------------------- /sns/sns-frontend/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/sns-frontend/templates/hpa.yaml -------------------------------------------------------------------------------- /sns/sns-frontend/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/sns-frontend/templates/ingress.yaml -------------------------------------------------------------------------------- /sns/sns-frontend/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/sns-frontend/templates/pvc.yaml -------------------------------------------------------------------------------- /sns/sns-frontend/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/sns-frontend/templates/service.yaml -------------------------------------------------------------------------------- /sns/sns-frontend/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/sns-frontend/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /sns/sns-frontend/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/sns-frontend/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /sns/timeline-server/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/timeline-server/.helmignore -------------------------------------------------------------------------------- /sns/timeline-server/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/timeline-server/Chart.yaml -------------------------------------------------------------------------------- /sns/timeline-server/ci/jerry-dev-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/timeline-server/ci/jerry-dev-values.yaml -------------------------------------------------------------------------------- /sns/timeline-server/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/timeline-server/templates/NOTES.txt -------------------------------------------------------------------------------- /sns/timeline-server/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/timeline-server/templates/_helpers.tpl -------------------------------------------------------------------------------- /sns/timeline-server/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/timeline-server/templates/configmap.yaml -------------------------------------------------------------------------------- /sns/timeline-server/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/timeline-server/templates/deployment.yaml -------------------------------------------------------------------------------- /sns/timeline-server/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/timeline-server/templates/hpa.yaml -------------------------------------------------------------------------------- /sns/timeline-server/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/timeline-server/templates/ingress.yaml -------------------------------------------------------------------------------- /sns/timeline-server/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/timeline-server/templates/pvc.yaml -------------------------------------------------------------------------------- /sns/timeline-server/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/timeline-server/templates/service.yaml -------------------------------------------------------------------------------- /sns/user-server/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/user-server/.helmignore -------------------------------------------------------------------------------- /sns/user-server/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/user-server/Chart.yaml -------------------------------------------------------------------------------- /sns/user-server/ci/jerry-dev-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/user-server/ci/jerry-dev-values.yaml -------------------------------------------------------------------------------- /sns/user-server/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/user-server/templates/NOTES.txt -------------------------------------------------------------------------------- /sns/user-server/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/user-server/templates/_helpers.tpl -------------------------------------------------------------------------------- /sns/user-server/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/user-server/templates/configmap.yaml -------------------------------------------------------------------------------- /sns/user-server/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/user-server/templates/deployment.yaml -------------------------------------------------------------------------------- /sns/user-server/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/user-server/templates/hpa.yaml -------------------------------------------------------------------------------- /sns/user-server/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/user-server/templates/ingress.yaml -------------------------------------------------------------------------------- /sns/user-server/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/user-server/templates/pvc.yaml -------------------------------------------------------------------------------- /sns/user-server/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/user-server/templates/service.yaml -------------------------------------------------------------------------------- /sns/user-server/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/user-server/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /sns/user-server/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/sns/user-server/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /strimzi-kafka-operator-0.39.0/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/strimzi-kafka-operator-0.39.0/.helmignore -------------------------------------------------------------------------------- /strimzi-kafka-operator-0.39.0/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/strimzi-kafka-operator-0.39.0/Chart.yaml -------------------------------------------------------------------------------- /strimzi-kafka-operator-0.39.0/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/strimzi-kafka-operator-0.39.0/OWNERS -------------------------------------------------------------------------------- /strimzi-kafka-operator-0.39.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/strimzi-kafka-operator-0.39.0/README.md -------------------------------------------------------------------------------- /strimzi-kafka-operator-0.39.0/files/grafana-dashboards/.templateignore: -------------------------------------------------------------------------------- 1 | *.json 2 | -------------------------------------------------------------------------------- /strimzi-kafka-operator-0.39.0/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/strimzi-kafka-operator-0.39.0/values.yaml -------------------------------------------------------------------------------- /tempo/tempo-distributed-1.4.2/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/tempo/tempo-distributed-1.4.2/.helmignore -------------------------------------------------------------------------------- /tempo/tempo-distributed-1.4.2/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/tempo/tempo-distributed-1.4.2/Chart.lock -------------------------------------------------------------------------------- /tempo/tempo-distributed-1.4.2/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/tempo/tempo-distributed-1.4.2/Chart.yaml -------------------------------------------------------------------------------- /tempo/tempo-distributed-1.4.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/tempo/tempo-distributed-1.4.2/README.md -------------------------------------------------------------------------------- /tempo/tempo-distributed-1.4.2/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/tempo/tempo-distributed-1.4.2/README.md.gotmpl -------------------------------------------------------------------------------- /tempo/tempo-distributed-1.4.2/charts/minio/ci/distributed-values.yaml: -------------------------------------------------------------------------------- 1 | mode: distributed 2 | -------------------------------------------------------------------------------- /tempo/tempo-distributed-1.4.2/my-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/tempo/tempo-distributed-1.4.2/my-values.yaml -------------------------------------------------------------------------------- /tempo/tempo-distributed-1.4.2/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/tempo/tempo-distributed-1.4.2/values.yaml -------------------------------------------------------------------------------- /tf/eks-v1-32-test/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/tf/eks-v1-32-test/.terraform.lock.hcl -------------------------------------------------------------------------------- /tf/eks-v1-32-test/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "git.ignoreLimitWarning": true 3 | } 4 | -------------------------------------------------------------------------------- /tf/eks-v1-32-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/tf/eks-v1-32-test/README.md -------------------------------------------------------------------------------- /tf/eks-v1-32-test/eks-설치가이드.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/tf/eks-v1-32-test/eks-설치가이드.md -------------------------------------------------------------------------------- /tf/eks-v1-32-test/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/tf/eks-v1-32-test/iam.tf -------------------------------------------------------------------------------- /tf/eks-v1-32-test/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/tf/eks-v1-32-test/main.tf -------------------------------------------------------------------------------- /tf/eks-v1-32-test/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/tf/eks-v1-32-test/outputs.tf -------------------------------------------------------------------------------- /tf/eks-v1-32-test/security-groups.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/tf/eks-v1-32-test/security-groups.tf -------------------------------------------------------------------------------- /tf/eks-v1-32-test/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/tf/eks-v1-32-test/variables.tf -------------------------------------------------------------------------------- /tf/eks-v1-32-test/vpc.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/tf/eks-v1-32-test/vpc.tf -------------------------------------------------------------------------------- /tf/eks-v1-32/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/tf/eks-v1-32/.terraform.lock.hcl -------------------------------------------------------------------------------- /tf/eks-v1-32/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "git.ignoreLimitWarning": true 3 | } 4 | -------------------------------------------------------------------------------- /tf/eks-v1-32/eks-al2023.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/tf/eks-v1-32/eks-al2023.tf -------------------------------------------------------------------------------- /tf/eks-v1-32/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/tf/eks-v1-32/main.tf -------------------------------------------------------------------------------- /tf/eks-v1-32/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/tf/eks-v1-32/outputs.tf -------------------------------------------------------------------------------- /tf/eks-v1-32/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/tf/eks-v1-32/variables.tf -------------------------------------------------------------------------------- /tf/eks-v1-32/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/tf/eks-v1-32/versions.tf -------------------------------------------------------------------------------- /tf/eks-v1-32/vpc.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/tf/eks-v1-32/vpc.tf -------------------------------------------------------------------------------- /tf/iam/loki-s3/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/tf/iam/loki-s3/.terraform.lock.hcl -------------------------------------------------------------------------------- /tf/iam/loki-s3/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/tf/iam/loki-s3/backend.tf -------------------------------------------------------------------------------- /tf/iam/loki-s3/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/tf/iam/loki-s3/main.tf -------------------------------------------------------------------------------- /tf/iam/loki-s3/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/tf/iam/loki-s3/providers.tf -------------------------------------------------------------------------------- /tf/s3/backend-iam/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/tf/s3/backend-iam/main.tf -------------------------------------------------------------------------------- /tf/s3/backend-loki-s3/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/tf/s3/backend-loki-s3/.terraform.lock.hcl -------------------------------------------------------------------------------- /tf/s3/backend-loki-s3/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/tf/s3/backend-loki-s3/main.tf -------------------------------------------------------------------------------- /tf/s3/backend/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/tf/s3/backend/.terraform.lock.hcl -------------------------------------------------------------------------------- /tf/s3/backend/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/tf/s3/backend/main.tf -------------------------------------------------------------------------------- /tf/s3/loki-s3/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/tf/s3/loki-s3/main.tf -------------------------------------------------------------------------------- /tf/s3/loki-s3/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/tf/s3/loki-s3/providers.tf -------------------------------------------------------------------------------- /topology-aware/echo-svc-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/topology-aware/echo-svc-deploy.yaml -------------------------------------------------------------------------------- /topologySpreadConstraints/echo-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/topologySpreadConstraints/echo-deployment.yaml -------------------------------------------------------------------------------- /utils/delete-available-ebs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/utils/delete-available-ebs.sh -------------------------------------------------------------------------------- /utils/delete-released-pv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junghoon2/k8s-class/HEAD/utils/delete-released-pv.sh --------------------------------------------------------------------------------