├── .circleci └── config.yml ├── .github ├── issue_template.md ├── pull_request_template.md ├── updatecli │ ├── CONTRIBUTING.md │ ├── README.md │ ├── update-compose.yaml │ ├── updatecli.d │ │ ├── apps │ │ │ └── containers.tpl │ │ ├── argocd.yaml │ │ ├── cert-manager.yaml │ │ ├── epinio.yaml │ │ ├── jenkins.yaml │ │ ├── keda.yaml │ │ ├── kubewarden.yaml │ │ ├── rancher.yaml │ │ └── rqlite.yaml │ └── values.d │ │ ├── apps.yaml │ │ └── scm.yaml └── workflows │ └── updatecli.yml ├── .gitignore ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── acorn ├── 1 ├── app.yaml ├── logo.png ├── manifest.yaml └── post_install.md ├── ambassador-edge-stack ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── argo-rollouts ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── argo-workflows ├── Makefile ├── app.yaml ├── config ├── logo.png ├── manifest.yaml └── post_install.md ├── argocd ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── aspnet ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── atmo ├── install.sh ├── logo.png ├── manifest.yaml └── post_install.md ├── bin ├── lint_all.sh ├── lint_configuration.rb ├── lint_dependencies.rb ├── lint_descriptions.rb ├── lint_logos.rb ├── lint_name.rb ├── lint_required_files.rb ├── lint_versions.rb └── lint_yaml.rb ├── bitwarden-passwordless-dev ├── app.yaml ├── logo.png ├── manifest.yaml └── post_install.md ├── bitwarden-unified ├── app.yaml ├── logo.png ├── manifest.yaml ├── post_install.md └── pre_install.sh ├── blackbox-exporter ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── cerbos ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── cert-manager ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── chaos-mesh ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── civo-cluster-autoscaler ├── app.yaml ├── logo.jpg ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── code-server ├── app.yaml ├── logo.png ├── manifest.yaml ├── post_install.md └── pre_install.sh ├── cyclops ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── dapr ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── unintall.sh ├── devtron ├── install.sh ├── logo.png ├── manifest.yaml └── post_install.md ├── docker-registry ├── app.yaml ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── pre_install.sh ├── dynamic-pv-scaler ├── app.yaml ├── logo.png ├── manifest.yaml └── post-install.md ├── edp ├── install.sh ├── logo.png ├── manifest.yaml └── post_install.md ├── enroute-onestep ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── epinio ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── falco ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── ferretdb ├── app.yaml ├── logo.png ├── manifest.yaml └── post_install.md ├── fission ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── flagsmith ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── flux ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── gatekeeper ├── install.sh ├── logo.png ├── manifest.yaml └── post_install.md ├── ghost ├── app.yaml ├── logo.png ├── manifest.yaml └── post_install.md ├── gimlet ├── install.sh ├── logo.png ├── manifest.yaml └── post_install.md ├── gitea ├── app.yaml ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── gitlab ├── config.yaml ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── gloo-edge ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── grapple-solution-framework ├── app.yaml ├── logo.png ├── manifest.yaml └── post_install.md ├── haproxy ├── app.yaml ├── logo.png ├── manifest.yaml └── post_install.md ├── helm ├── app.yaml ├── install.sh ├── logo.png ├── manifest.yaml └── post_install.md ├── istio ├── .gitignore ├── control-plane.yaml ├── ingress-gateways.yaml ├── install.sh ├── istiod-service.yaml ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── jaeger ├── app.yaml ├── logo.png ├── manifest.yaml └── post_install.md ├── jenkins ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── joomla ├── app.yaml ├── logo.png ├── manifest.yaml ├── post_install.md └── pre_install.sh ├── kafka ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── keda ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── keptn ├── install.sh ├── logo.png ├── manifest.yaml └── post_install.md ├── ketch ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── keycloak ├── app.yaml ├── logo.png ├── manifest.yaml └── post_install.md ├── kong-ingress-controller ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── kriten ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── kube-hunter ├── app.yaml ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── kubeclarity ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── kubefirst ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── kubeflow ├── install.sh ├── kubeflow.yaml ├── logo.png ├── manifest.yaml └── post_install.md ├── kubenav ├── app.yaml ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── kubernetes-dashboard ├── app.yaml ├── logo.png ├── manifest.yaml └── post_install.md ├── kubernetes-external-secrets ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── kuberocketci ├── install.sh ├── logo.png ├── manifest.yaml └── post_install.md ├── kubesphere ├── app.yaml ├── install.sh ├── logo.png ├── manifest.yaml └── post_install.md ├── kubevela ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── kubevious ├── install.sh ├── logo.png ├── manifest.yaml └── post_install.md ├── kubewarden ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── kyverno ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── unintall.sh ├── linkerd ├── install.sh ├── logo.png ├── manifest.yaml └── post_install.md ├── litmuschaos ├── install.sh ├── logo.png ├── manifest.yaml └── post_install.md ├── loki ├── Makefile ├── README.md ├── app.yaml ├── app.yaml.tmpl ├── logo.png ├── manifest.yaml ├── post_install.md └── test-manifests │ └── testjob.yaml ├── longhorn ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── maesh ├── install.sh ├── logo.png ├── manifest.yaml └── post_install.md ├── mariadb ├── app.yaml ├── logo.png ├── manifest.yaml ├── post_install.md └── pre_install.sh ├── metrics-server ├── logo.png ├── manifest.yaml └── post_install.md ├── minio ├── app.yaml ├── logo.png ├── manifest.yaml └── post_install.md ├── mongodb ├── app.yaml ├── logo.png ├── manifest.yaml └── post_install.md ├── netdata ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── neuvector ├── install.sh ├── logo.png ├── manifest.yaml └── post_install.md ├── nextcloud ├── app.yaml ├── logo.png ├── manifest.yaml ├── post_install.md └── pre_install.sh ├── nexus3 ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md ├── uninstall.sh └── values.yaml ├── nginx ├── install.sh ├── logo.png ├── manifest.yaml └── post_install.md ├── ngrok ├── install.sh ├── logo.png ├── manifest.yaml └── post_install.md ├── nodered ├── app.yaml ├── logo.png ├── manifest.yaml └── post_install.md ├── openfaas ├── .gitignore ├── install.sh ├── logo.png ├── manifest.yaml ├── manual_testing.md └── post_install.md ├── openobserve ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── paralus ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── parca ├── README.md ├── app.yaml ├── logo.png ├── manifest.yaml ├── parca-agent.yaml ├── parca.yaml └── post_install.md ├── passwordless-dev ├── app.yaml ├── logo.png ├── manifest.yaml ├── post_install.md └── pre_install.sh ├── percona-mysql ├── install.sh ├── logo.png ├── manifest.yaml └── post_install.md ├── permission-manager ├── app.yaml ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── pmm ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── polaris ├── app.yaml ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── portainer ├── ce-app.yaml ├── ee-app.yaml ├── install.sh ├── logo.png ├── manifest.yaml └── post_install.md ├── postgresql ├── app.yaml ├── logo.png ├── manifest.yaml ├── post_install.md └── resource.sh ├── projectsveltos ├── install.sh ├── logo.png ├── manifest.yaml └── post_install.md ├── prometheus-operator ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── pyroscope ├── app.yaml ├── logo.png ├── manifest.yaml └── post_install.md ├── rabbitmq ├── app.yaml ├── logo.png ├── manifest.yaml └── post_install.md ├── rancher ├── install.sh ├── logo.png ├── manifest.yaml └── post_install.md ├── redis ├── app.yaml ├── logo.png ├── manifest.yaml └── post_install.md ├── rekor ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── reloader ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── rqlite ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── sealed-secrets ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── selenium ├── app.yaml ├── logo.png ├── manifest.yaml └── post_install.md ├── shipa ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── siglens-oss ├── app.yaml ├── logo.png ├── manifest.yaml ├── post_install.md ├── pre_install.sh ├── server.yaml └── ssmetrics-otel-collector-config.yaml ├── sonarqube ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── spinkube ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh ├── system-upgrade-controller ├── app.yaml ├── example │ └── civo-plan-v1.16.yaml ├── logo.png ├── manifest.yaml └── post_install.md ├── tekton ├── Makefile ├── README.md ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md ├── tekton.yaml └── test-manifests │ ├── 1-task.yaml │ └── 2-taskrun.yaml ├── traefik2-loadbalancer ├── app.yaml ├── logo.png ├── manifest.yaml └── post_install.md ├── traefik2-nodeport ├── app.yaml ├── logo.png ├── manifest.yaml └── post_install.md ├── twingate ├── Makefile ├── app.yaml ├── logo.png ├── manifest.yaml ├── post_install.md └── test │ └── internal-site.yaml ├── unifi-controller ├── app.yaml ├── logo.png ├── manifest.yaml └── post_install.md ├── uptime-kuma ├── app.yaml ├── logo.png ├── manifest.yaml └── post_install.md ├── vault ├── install.sh ├── logo.png ├── manifest.yaml └── post_install.md ├── volcano ├── app.yaml ├── logo.png ├── manifest.yaml └── post_install.md ├── weavescope ├── install.sh ├── logo.png ├── manifest.yaml ├── post_install.md └── uninstall.sh └── wordpress ├── app.yaml ├── logo.png ├── manifest.yaml └── post_install.md /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/updatecli/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/.github/updatecli/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/updatecli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/.github/updatecli/README.md -------------------------------------------------------------------------------- /.github/updatecli/update-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/.github/updatecli/update-compose.yaml -------------------------------------------------------------------------------- /.github/updatecli/updatecli.d/apps/containers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/.github/updatecli/updatecli.d/apps/containers.tpl -------------------------------------------------------------------------------- /.github/updatecli/updatecli.d/argocd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/.github/updatecli/updatecli.d/argocd.yaml -------------------------------------------------------------------------------- /.github/updatecli/updatecli.d/cert-manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/.github/updatecli/updatecli.d/cert-manager.yaml -------------------------------------------------------------------------------- /.github/updatecli/updatecli.d/epinio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/.github/updatecli/updatecli.d/epinio.yaml -------------------------------------------------------------------------------- /.github/updatecli/updatecli.d/jenkins.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/.github/updatecli/updatecli.d/jenkins.yaml -------------------------------------------------------------------------------- /.github/updatecli/updatecli.d/keda.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/.github/updatecli/updatecli.d/keda.yaml -------------------------------------------------------------------------------- /.github/updatecli/updatecli.d/kubewarden.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/.github/updatecli/updatecli.d/kubewarden.yaml -------------------------------------------------------------------------------- /.github/updatecli/updatecli.d/rancher.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/.github/updatecli/updatecli.d/rancher.yaml -------------------------------------------------------------------------------- /.github/updatecli/updatecli.d/rqlite.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/.github/updatecli/updatecli.d/rqlite.yaml -------------------------------------------------------------------------------- /.github/updatecli/values.d/apps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/.github/updatecli/values.d/apps.yaml -------------------------------------------------------------------------------- /.github/updatecli/values.d/scm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/.github/updatecli/values.d/scm.yaml -------------------------------------------------------------------------------- /.github/workflows/updatecli.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/.github/workflows/updatecli.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .gitpod.yml 2 | 3 | # For Makefile based tests 4 | kubeconfig.* 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/README.md -------------------------------------------------------------------------------- /acorn/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/acorn/1 -------------------------------------------------------------------------------- /acorn/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/acorn/app.yaml -------------------------------------------------------------------------------- /acorn/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/acorn/logo.png -------------------------------------------------------------------------------- /acorn/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/acorn/manifest.yaml -------------------------------------------------------------------------------- /acorn/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/acorn/post_install.md -------------------------------------------------------------------------------- /ambassador-edge-stack/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/ambassador-edge-stack/install.sh -------------------------------------------------------------------------------- /ambassador-edge-stack/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/ambassador-edge-stack/logo.png -------------------------------------------------------------------------------- /ambassador-edge-stack/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/ambassador-edge-stack/manifest.yaml -------------------------------------------------------------------------------- /ambassador-edge-stack/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/ambassador-edge-stack/post_install.md -------------------------------------------------------------------------------- /ambassador-edge-stack/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/ambassador-edge-stack/uninstall.sh -------------------------------------------------------------------------------- /argo-rollouts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/argo-rollouts/install.sh -------------------------------------------------------------------------------- /argo-rollouts/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/argo-rollouts/logo.png -------------------------------------------------------------------------------- /argo-rollouts/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/argo-rollouts/manifest.yaml -------------------------------------------------------------------------------- /argo-rollouts/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/argo-rollouts/post_install.md -------------------------------------------------------------------------------- /argo-rollouts/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/argo-rollouts/uninstall.sh -------------------------------------------------------------------------------- /argo-workflows/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/argo-workflows/Makefile -------------------------------------------------------------------------------- /argo-workflows/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/argo-workflows/app.yaml -------------------------------------------------------------------------------- /argo-workflows/config: -------------------------------------------------------------------------------- 1 | containerRuntimeExecutor: pns 2 | -------------------------------------------------------------------------------- /argo-workflows/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/argo-workflows/logo.png -------------------------------------------------------------------------------- /argo-workflows/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/argo-workflows/manifest.yaml -------------------------------------------------------------------------------- /argo-workflows/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/argo-workflows/post_install.md -------------------------------------------------------------------------------- /argocd/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/argocd/install.sh -------------------------------------------------------------------------------- /argocd/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/argocd/logo.png -------------------------------------------------------------------------------- /argocd/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/argocd/manifest.yaml -------------------------------------------------------------------------------- /argocd/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/argocd/post_install.md -------------------------------------------------------------------------------- /argocd/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/argocd/uninstall.sh -------------------------------------------------------------------------------- /aspnet/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/aspnet/install.sh -------------------------------------------------------------------------------- /aspnet/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/aspnet/logo.png -------------------------------------------------------------------------------- /aspnet/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/aspnet/manifest.yaml -------------------------------------------------------------------------------- /aspnet/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/aspnet/post_install.md -------------------------------------------------------------------------------- /aspnet/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/aspnet/uninstall.sh -------------------------------------------------------------------------------- /atmo/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/atmo/install.sh -------------------------------------------------------------------------------- /atmo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/atmo/logo.png -------------------------------------------------------------------------------- /atmo/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/atmo/manifest.yaml -------------------------------------------------------------------------------- /atmo/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/atmo/post_install.md -------------------------------------------------------------------------------- /bin/lint_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/bin/lint_all.sh -------------------------------------------------------------------------------- /bin/lint_configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/bin/lint_configuration.rb -------------------------------------------------------------------------------- /bin/lint_dependencies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/bin/lint_dependencies.rb -------------------------------------------------------------------------------- /bin/lint_descriptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/bin/lint_descriptions.rb -------------------------------------------------------------------------------- /bin/lint_logos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/bin/lint_logos.rb -------------------------------------------------------------------------------- /bin/lint_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/bin/lint_name.rb -------------------------------------------------------------------------------- /bin/lint_required_files.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/bin/lint_required_files.rb -------------------------------------------------------------------------------- /bin/lint_versions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/bin/lint_versions.rb -------------------------------------------------------------------------------- /bin/lint_yaml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/bin/lint_yaml.rb -------------------------------------------------------------------------------- /bitwarden-passwordless-dev/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/bitwarden-passwordless-dev/app.yaml -------------------------------------------------------------------------------- /bitwarden-passwordless-dev/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/bitwarden-passwordless-dev/logo.png -------------------------------------------------------------------------------- /bitwarden-passwordless-dev/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/bitwarden-passwordless-dev/manifest.yaml -------------------------------------------------------------------------------- /bitwarden-passwordless-dev/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/bitwarden-passwordless-dev/post_install.md -------------------------------------------------------------------------------- /bitwarden-unified/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/bitwarden-unified/app.yaml -------------------------------------------------------------------------------- /bitwarden-unified/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/bitwarden-unified/logo.png -------------------------------------------------------------------------------- /bitwarden-unified/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/bitwarden-unified/manifest.yaml -------------------------------------------------------------------------------- /bitwarden-unified/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/bitwarden-unified/post_install.md -------------------------------------------------------------------------------- /bitwarden-unified/pre_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/bitwarden-unified/pre_install.sh -------------------------------------------------------------------------------- /blackbox-exporter/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/blackbox-exporter/install.sh -------------------------------------------------------------------------------- /blackbox-exporter/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/blackbox-exporter/logo.png -------------------------------------------------------------------------------- /blackbox-exporter/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/blackbox-exporter/manifest.yaml -------------------------------------------------------------------------------- /blackbox-exporter/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/blackbox-exporter/post_install.md -------------------------------------------------------------------------------- /blackbox-exporter/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/blackbox-exporter/uninstall.sh -------------------------------------------------------------------------------- /cerbos/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/cerbos/install.sh -------------------------------------------------------------------------------- /cerbos/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/cerbos/logo.png -------------------------------------------------------------------------------- /cerbos/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/cerbos/manifest.yaml -------------------------------------------------------------------------------- /cerbos/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/cerbos/post_install.md -------------------------------------------------------------------------------- /cerbos/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/cerbos/uninstall.sh -------------------------------------------------------------------------------- /cert-manager/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/cert-manager/install.sh -------------------------------------------------------------------------------- /cert-manager/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/cert-manager/logo.png -------------------------------------------------------------------------------- /cert-manager/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/cert-manager/manifest.yaml -------------------------------------------------------------------------------- /cert-manager/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/cert-manager/post_install.md -------------------------------------------------------------------------------- /cert-manager/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/cert-manager/uninstall.sh -------------------------------------------------------------------------------- /chaos-mesh/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/chaos-mesh/install.sh -------------------------------------------------------------------------------- /chaos-mesh/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/chaos-mesh/logo.png -------------------------------------------------------------------------------- /chaos-mesh/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/chaos-mesh/manifest.yaml -------------------------------------------------------------------------------- /chaos-mesh/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/chaos-mesh/post_install.md -------------------------------------------------------------------------------- /chaos-mesh/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/chaos-mesh/uninstall.sh -------------------------------------------------------------------------------- /civo-cluster-autoscaler/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/civo-cluster-autoscaler/app.yaml -------------------------------------------------------------------------------- /civo-cluster-autoscaler/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/civo-cluster-autoscaler/logo.jpg -------------------------------------------------------------------------------- /civo-cluster-autoscaler/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/civo-cluster-autoscaler/logo.png -------------------------------------------------------------------------------- /civo-cluster-autoscaler/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/civo-cluster-autoscaler/manifest.yaml -------------------------------------------------------------------------------- /civo-cluster-autoscaler/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/civo-cluster-autoscaler/post_install.md -------------------------------------------------------------------------------- /civo-cluster-autoscaler/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/civo-cluster-autoscaler/uninstall.sh -------------------------------------------------------------------------------- /code-server/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/code-server/app.yaml -------------------------------------------------------------------------------- /code-server/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/code-server/logo.png -------------------------------------------------------------------------------- /code-server/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/code-server/manifest.yaml -------------------------------------------------------------------------------- /code-server/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/code-server/post_install.md -------------------------------------------------------------------------------- /code-server/pre_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/code-server/pre_install.sh -------------------------------------------------------------------------------- /cyclops/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/cyclops/install.sh -------------------------------------------------------------------------------- /cyclops/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/cyclops/logo.png -------------------------------------------------------------------------------- /cyclops/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/cyclops/manifest.yaml -------------------------------------------------------------------------------- /cyclops/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/cyclops/post_install.md -------------------------------------------------------------------------------- /cyclops/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/cyclops/uninstall.sh -------------------------------------------------------------------------------- /dapr/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/dapr/install.sh -------------------------------------------------------------------------------- /dapr/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/dapr/logo.png -------------------------------------------------------------------------------- /dapr/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/dapr/manifest.yaml -------------------------------------------------------------------------------- /dapr/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/dapr/post_install.md -------------------------------------------------------------------------------- /dapr/unintall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/dapr/unintall.sh -------------------------------------------------------------------------------- /devtron/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/devtron/install.sh -------------------------------------------------------------------------------- /devtron/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/devtron/logo.png -------------------------------------------------------------------------------- /devtron/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/devtron/manifest.yaml -------------------------------------------------------------------------------- /devtron/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/devtron/post_install.md -------------------------------------------------------------------------------- /docker-registry/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/docker-registry/app.yaml -------------------------------------------------------------------------------- /docker-registry/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/docker-registry/install.sh -------------------------------------------------------------------------------- /docker-registry/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/docker-registry/logo.png -------------------------------------------------------------------------------- /docker-registry/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/docker-registry/manifest.yaml -------------------------------------------------------------------------------- /docker-registry/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/docker-registry/post_install.md -------------------------------------------------------------------------------- /docker-registry/pre_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/docker-registry/pre_install.sh -------------------------------------------------------------------------------- /dynamic-pv-scaler/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/dynamic-pv-scaler/app.yaml -------------------------------------------------------------------------------- /dynamic-pv-scaler/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/dynamic-pv-scaler/logo.png -------------------------------------------------------------------------------- /dynamic-pv-scaler/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/dynamic-pv-scaler/manifest.yaml -------------------------------------------------------------------------------- /dynamic-pv-scaler/post-install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/dynamic-pv-scaler/post-install.md -------------------------------------------------------------------------------- /edp/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/edp/install.sh -------------------------------------------------------------------------------- /edp/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/edp/logo.png -------------------------------------------------------------------------------- /edp/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/edp/manifest.yaml -------------------------------------------------------------------------------- /edp/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/edp/post_install.md -------------------------------------------------------------------------------- /enroute-onestep/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/enroute-onestep/install.sh -------------------------------------------------------------------------------- /enroute-onestep/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/enroute-onestep/logo.png -------------------------------------------------------------------------------- /enroute-onestep/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/enroute-onestep/manifest.yaml -------------------------------------------------------------------------------- /enroute-onestep/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/enroute-onestep/post_install.md -------------------------------------------------------------------------------- /enroute-onestep/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/enroute-onestep/uninstall.sh -------------------------------------------------------------------------------- /epinio/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/epinio/install.sh -------------------------------------------------------------------------------- /epinio/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/epinio/logo.png -------------------------------------------------------------------------------- /epinio/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/epinio/manifest.yaml -------------------------------------------------------------------------------- /epinio/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/epinio/post_install.md -------------------------------------------------------------------------------- /epinio/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/epinio/uninstall.sh -------------------------------------------------------------------------------- /falco/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/falco/install.sh -------------------------------------------------------------------------------- /falco/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/falco/logo.png -------------------------------------------------------------------------------- /falco/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/falco/manifest.yaml -------------------------------------------------------------------------------- /falco/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/falco/post_install.md -------------------------------------------------------------------------------- /falco/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/falco/uninstall.sh -------------------------------------------------------------------------------- /ferretdb/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/ferretdb/app.yaml -------------------------------------------------------------------------------- /ferretdb/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/ferretdb/logo.png -------------------------------------------------------------------------------- /ferretdb/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/ferretdb/manifest.yaml -------------------------------------------------------------------------------- /ferretdb/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/ferretdb/post_install.md -------------------------------------------------------------------------------- /fission/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/fission/install.sh -------------------------------------------------------------------------------- /fission/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/fission/logo.png -------------------------------------------------------------------------------- /fission/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/fission/manifest.yaml -------------------------------------------------------------------------------- /fission/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/fission/post_install.md -------------------------------------------------------------------------------- /fission/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/fission/uninstall.sh -------------------------------------------------------------------------------- /flagsmith/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/flagsmith/install.sh -------------------------------------------------------------------------------- /flagsmith/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/flagsmith/logo.png -------------------------------------------------------------------------------- /flagsmith/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/flagsmith/manifest.yaml -------------------------------------------------------------------------------- /flagsmith/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/flagsmith/post_install.md -------------------------------------------------------------------------------- /flagsmith/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/flagsmith/uninstall.sh -------------------------------------------------------------------------------- /flux/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/flux/install.sh -------------------------------------------------------------------------------- /flux/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/flux/logo.png -------------------------------------------------------------------------------- /flux/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/flux/manifest.yaml -------------------------------------------------------------------------------- /flux/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/flux/post_install.md -------------------------------------------------------------------------------- /flux/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/flux/uninstall.sh -------------------------------------------------------------------------------- /gatekeeper/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/gatekeeper/install.sh -------------------------------------------------------------------------------- /gatekeeper/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/gatekeeper/logo.png -------------------------------------------------------------------------------- /gatekeeper/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/gatekeeper/manifest.yaml -------------------------------------------------------------------------------- /gatekeeper/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/gatekeeper/post_install.md -------------------------------------------------------------------------------- /ghost/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/ghost/app.yaml -------------------------------------------------------------------------------- /ghost/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/ghost/logo.png -------------------------------------------------------------------------------- /ghost/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/ghost/manifest.yaml -------------------------------------------------------------------------------- /ghost/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/ghost/post_install.md -------------------------------------------------------------------------------- /gimlet/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/gimlet/install.sh -------------------------------------------------------------------------------- /gimlet/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/gimlet/logo.png -------------------------------------------------------------------------------- /gimlet/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/gimlet/manifest.yaml -------------------------------------------------------------------------------- /gimlet/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/gimlet/post_install.md -------------------------------------------------------------------------------- /gitea/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/gitea/app.yaml -------------------------------------------------------------------------------- /gitea/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/gitea/logo.png -------------------------------------------------------------------------------- /gitea/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/gitea/manifest.yaml -------------------------------------------------------------------------------- /gitea/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/gitea/post_install.md -------------------------------------------------------------------------------- /gitea/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/gitea/uninstall.sh -------------------------------------------------------------------------------- /gitlab/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/gitlab/config.yaml -------------------------------------------------------------------------------- /gitlab/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/gitlab/install.sh -------------------------------------------------------------------------------- /gitlab/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/gitlab/logo.png -------------------------------------------------------------------------------- /gitlab/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/gitlab/manifest.yaml -------------------------------------------------------------------------------- /gitlab/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/gitlab/post_install.md -------------------------------------------------------------------------------- /gitlab/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/gitlab/uninstall.sh -------------------------------------------------------------------------------- /gloo-edge/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/gloo-edge/install.sh -------------------------------------------------------------------------------- /gloo-edge/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/gloo-edge/logo.png -------------------------------------------------------------------------------- /gloo-edge/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/gloo-edge/manifest.yaml -------------------------------------------------------------------------------- /gloo-edge/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/gloo-edge/post_install.md -------------------------------------------------------------------------------- /gloo-edge/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/gloo-edge/uninstall.sh -------------------------------------------------------------------------------- /grapple-solution-framework/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/grapple-solution-framework/app.yaml -------------------------------------------------------------------------------- /grapple-solution-framework/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/grapple-solution-framework/logo.png -------------------------------------------------------------------------------- /grapple-solution-framework/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/grapple-solution-framework/manifest.yaml -------------------------------------------------------------------------------- /grapple-solution-framework/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/grapple-solution-framework/post_install.md -------------------------------------------------------------------------------- /haproxy/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/haproxy/app.yaml -------------------------------------------------------------------------------- /haproxy/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/haproxy/logo.png -------------------------------------------------------------------------------- /haproxy/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/haproxy/manifest.yaml -------------------------------------------------------------------------------- /haproxy/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/haproxy/post_install.md -------------------------------------------------------------------------------- /helm/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/helm/app.yaml -------------------------------------------------------------------------------- /helm/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/helm/install.sh -------------------------------------------------------------------------------- /helm/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/helm/logo.png -------------------------------------------------------------------------------- /helm/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/helm/manifest.yaml -------------------------------------------------------------------------------- /helm/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/helm/post_install.md -------------------------------------------------------------------------------- /istio/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/istio/.gitignore -------------------------------------------------------------------------------- /istio/control-plane.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/istio/control-plane.yaml -------------------------------------------------------------------------------- /istio/ingress-gateways.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/istio/ingress-gateways.yaml -------------------------------------------------------------------------------- /istio/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/istio/install.sh -------------------------------------------------------------------------------- /istio/istiod-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/istio/istiod-service.yaml -------------------------------------------------------------------------------- /istio/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/istio/logo.png -------------------------------------------------------------------------------- /istio/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/istio/manifest.yaml -------------------------------------------------------------------------------- /istio/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/istio/post_install.md -------------------------------------------------------------------------------- /istio/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/istio/uninstall.sh -------------------------------------------------------------------------------- /jaeger/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/jaeger/app.yaml -------------------------------------------------------------------------------- /jaeger/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/jaeger/logo.png -------------------------------------------------------------------------------- /jaeger/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/jaeger/manifest.yaml -------------------------------------------------------------------------------- /jaeger/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/jaeger/post_install.md -------------------------------------------------------------------------------- /jenkins/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/jenkins/install.sh -------------------------------------------------------------------------------- /jenkins/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/jenkins/logo.png -------------------------------------------------------------------------------- /jenkins/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/jenkins/manifest.yaml -------------------------------------------------------------------------------- /jenkins/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/jenkins/post_install.md -------------------------------------------------------------------------------- /jenkins/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/jenkins/uninstall.sh -------------------------------------------------------------------------------- /joomla/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/joomla/app.yaml -------------------------------------------------------------------------------- /joomla/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/joomla/logo.png -------------------------------------------------------------------------------- /joomla/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/joomla/manifest.yaml -------------------------------------------------------------------------------- /joomla/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/joomla/post_install.md -------------------------------------------------------------------------------- /joomla/pre_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/joomla/pre_install.sh -------------------------------------------------------------------------------- /kafka/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kafka/install.sh -------------------------------------------------------------------------------- /kafka/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kafka/logo.png -------------------------------------------------------------------------------- /kafka/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kafka/manifest.yaml -------------------------------------------------------------------------------- /kafka/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kafka/post_install.md -------------------------------------------------------------------------------- /kafka/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kafka/uninstall.sh -------------------------------------------------------------------------------- /keda/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/keda/install.sh -------------------------------------------------------------------------------- /keda/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/keda/logo.png -------------------------------------------------------------------------------- /keda/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/keda/manifest.yaml -------------------------------------------------------------------------------- /keda/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/keda/post_install.md -------------------------------------------------------------------------------- /keda/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/keda/uninstall.sh -------------------------------------------------------------------------------- /keptn/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/keptn/install.sh -------------------------------------------------------------------------------- /keptn/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/keptn/logo.png -------------------------------------------------------------------------------- /keptn/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/keptn/manifest.yaml -------------------------------------------------------------------------------- /keptn/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/keptn/post_install.md -------------------------------------------------------------------------------- /ketch/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/ketch/install.sh -------------------------------------------------------------------------------- /ketch/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/ketch/logo.png -------------------------------------------------------------------------------- /ketch/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/ketch/manifest.yaml -------------------------------------------------------------------------------- /ketch/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/ketch/post_install.md -------------------------------------------------------------------------------- /ketch/uninstall.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | #Remove Ketch NS 4 | kubectl delete namespace ketch-system -------------------------------------------------------------------------------- /keycloak/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/keycloak/app.yaml -------------------------------------------------------------------------------- /keycloak/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/keycloak/logo.png -------------------------------------------------------------------------------- /keycloak/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/keycloak/manifest.yaml -------------------------------------------------------------------------------- /keycloak/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/keycloak/post_install.md -------------------------------------------------------------------------------- /kong-ingress-controller/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kong-ingress-controller/install.sh -------------------------------------------------------------------------------- /kong-ingress-controller/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kong-ingress-controller/logo.png -------------------------------------------------------------------------------- /kong-ingress-controller/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kong-ingress-controller/manifest.yaml -------------------------------------------------------------------------------- /kong-ingress-controller/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kong-ingress-controller/post_install.md -------------------------------------------------------------------------------- /kong-ingress-controller/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kong-ingress-controller/uninstall.sh -------------------------------------------------------------------------------- /kriten/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kriten/install.sh -------------------------------------------------------------------------------- /kriten/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kriten/logo.png -------------------------------------------------------------------------------- /kriten/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kriten/manifest.yaml -------------------------------------------------------------------------------- /kriten/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kriten/post_install.md -------------------------------------------------------------------------------- /kriten/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kriten/uninstall.sh -------------------------------------------------------------------------------- /kube-hunter/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kube-hunter/app.yaml -------------------------------------------------------------------------------- /kube-hunter/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kube-hunter/logo.png -------------------------------------------------------------------------------- /kube-hunter/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kube-hunter/manifest.yaml -------------------------------------------------------------------------------- /kube-hunter/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kube-hunter/post_install.md -------------------------------------------------------------------------------- /kube-hunter/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kube-hunter/uninstall.sh -------------------------------------------------------------------------------- /kubeclarity/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubeclarity/install.sh -------------------------------------------------------------------------------- /kubeclarity/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubeclarity/logo.png -------------------------------------------------------------------------------- /kubeclarity/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubeclarity/manifest.yaml -------------------------------------------------------------------------------- /kubeclarity/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubeclarity/post_install.md -------------------------------------------------------------------------------- /kubeclarity/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubeclarity/uninstall.sh -------------------------------------------------------------------------------- /kubefirst/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubefirst/install.sh -------------------------------------------------------------------------------- /kubefirst/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubefirst/logo.png -------------------------------------------------------------------------------- /kubefirst/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubefirst/manifest.yaml -------------------------------------------------------------------------------- /kubefirst/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubefirst/post_install.md -------------------------------------------------------------------------------- /kubefirst/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubefirst/uninstall.sh -------------------------------------------------------------------------------- /kubeflow/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubeflow/install.sh -------------------------------------------------------------------------------- /kubeflow/kubeflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubeflow/kubeflow.yaml -------------------------------------------------------------------------------- /kubeflow/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubeflow/logo.png -------------------------------------------------------------------------------- /kubeflow/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubeflow/manifest.yaml -------------------------------------------------------------------------------- /kubeflow/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubeflow/post_install.md -------------------------------------------------------------------------------- /kubenav/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubenav/app.yaml -------------------------------------------------------------------------------- /kubenav/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubenav/logo.png -------------------------------------------------------------------------------- /kubenav/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubenav/manifest.yaml -------------------------------------------------------------------------------- /kubenav/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubenav/post_install.md -------------------------------------------------------------------------------- /kubenav/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubenav/uninstall.sh -------------------------------------------------------------------------------- /kubernetes-dashboard/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubernetes-dashboard/app.yaml -------------------------------------------------------------------------------- /kubernetes-dashboard/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubernetes-dashboard/logo.png -------------------------------------------------------------------------------- /kubernetes-dashboard/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubernetes-dashboard/manifest.yaml -------------------------------------------------------------------------------- /kubernetes-dashboard/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubernetes-dashboard/post_install.md -------------------------------------------------------------------------------- /kubernetes-external-secrets/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubernetes-external-secrets/install.sh -------------------------------------------------------------------------------- /kubernetes-external-secrets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubernetes-external-secrets/logo.png -------------------------------------------------------------------------------- /kubernetes-external-secrets/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubernetes-external-secrets/manifest.yaml -------------------------------------------------------------------------------- /kubernetes-external-secrets/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubernetes-external-secrets/post_install.md -------------------------------------------------------------------------------- /kubernetes-external-secrets/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubernetes-external-secrets/uninstall.sh -------------------------------------------------------------------------------- /kuberocketci/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kuberocketci/install.sh -------------------------------------------------------------------------------- /kuberocketci/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kuberocketci/logo.png -------------------------------------------------------------------------------- /kuberocketci/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kuberocketci/manifest.yaml -------------------------------------------------------------------------------- /kuberocketci/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kuberocketci/post_install.md -------------------------------------------------------------------------------- /kubesphere/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubesphere/app.yaml -------------------------------------------------------------------------------- /kubesphere/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubesphere/install.sh -------------------------------------------------------------------------------- /kubesphere/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubesphere/logo.png -------------------------------------------------------------------------------- /kubesphere/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubesphere/manifest.yaml -------------------------------------------------------------------------------- /kubesphere/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubesphere/post_install.md -------------------------------------------------------------------------------- /kubevela/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubevela/install.sh -------------------------------------------------------------------------------- /kubevela/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubevela/logo.png -------------------------------------------------------------------------------- /kubevela/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubevela/manifest.yaml -------------------------------------------------------------------------------- /kubevela/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubevela/post_install.md -------------------------------------------------------------------------------- /kubevela/uninstall.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | helm uninstall kubevela --namespace vela-system 4 | -------------------------------------------------------------------------------- /kubevious/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubevious/install.sh -------------------------------------------------------------------------------- /kubevious/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubevious/logo.png -------------------------------------------------------------------------------- /kubevious/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubevious/manifest.yaml -------------------------------------------------------------------------------- /kubevious/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubevious/post_install.md -------------------------------------------------------------------------------- /kubewarden/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubewarden/install.sh -------------------------------------------------------------------------------- /kubewarden/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubewarden/logo.png -------------------------------------------------------------------------------- /kubewarden/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubewarden/manifest.yaml -------------------------------------------------------------------------------- /kubewarden/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubewarden/post_install.md -------------------------------------------------------------------------------- /kubewarden/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kubewarden/uninstall.sh -------------------------------------------------------------------------------- /kyverno/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kyverno/install.sh -------------------------------------------------------------------------------- /kyverno/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kyverno/logo.png -------------------------------------------------------------------------------- /kyverno/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kyverno/manifest.yaml -------------------------------------------------------------------------------- /kyverno/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kyverno/post_install.md -------------------------------------------------------------------------------- /kyverno/unintall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/kyverno/unintall.sh -------------------------------------------------------------------------------- /linkerd/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/linkerd/install.sh -------------------------------------------------------------------------------- /linkerd/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/linkerd/logo.png -------------------------------------------------------------------------------- /linkerd/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/linkerd/manifest.yaml -------------------------------------------------------------------------------- /linkerd/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/linkerd/post_install.md -------------------------------------------------------------------------------- /litmuschaos/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/litmuschaos/install.sh -------------------------------------------------------------------------------- /litmuschaos/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/litmuschaos/logo.png -------------------------------------------------------------------------------- /litmuschaos/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/litmuschaos/manifest.yaml -------------------------------------------------------------------------------- /litmuschaos/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/litmuschaos/post_install.md -------------------------------------------------------------------------------- /loki/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/loki/Makefile -------------------------------------------------------------------------------- /loki/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/loki/README.md -------------------------------------------------------------------------------- /loki/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/loki/app.yaml -------------------------------------------------------------------------------- /loki/app.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/loki/app.yaml.tmpl -------------------------------------------------------------------------------- /loki/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/loki/logo.png -------------------------------------------------------------------------------- /loki/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/loki/manifest.yaml -------------------------------------------------------------------------------- /loki/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/loki/post_install.md -------------------------------------------------------------------------------- /loki/test-manifests/testjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/loki/test-manifests/testjob.yaml -------------------------------------------------------------------------------- /longhorn/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/longhorn/install.sh -------------------------------------------------------------------------------- /longhorn/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/longhorn/logo.png -------------------------------------------------------------------------------- /longhorn/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/longhorn/manifest.yaml -------------------------------------------------------------------------------- /longhorn/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/longhorn/post_install.md -------------------------------------------------------------------------------- /longhorn/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/longhorn/uninstall.sh -------------------------------------------------------------------------------- /maesh/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/maesh/install.sh -------------------------------------------------------------------------------- /maesh/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/maesh/logo.png -------------------------------------------------------------------------------- /maesh/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/maesh/manifest.yaml -------------------------------------------------------------------------------- /maesh/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/maesh/post_install.md -------------------------------------------------------------------------------- /mariadb/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/mariadb/app.yaml -------------------------------------------------------------------------------- /mariadb/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/mariadb/logo.png -------------------------------------------------------------------------------- /mariadb/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/mariadb/manifest.yaml -------------------------------------------------------------------------------- /mariadb/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/mariadb/post_install.md -------------------------------------------------------------------------------- /mariadb/pre_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/mariadb/pre_install.sh -------------------------------------------------------------------------------- /metrics-server/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/metrics-server/logo.png -------------------------------------------------------------------------------- /metrics-server/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/metrics-server/manifest.yaml -------------------------------------------------------------------------------- /metrics-server/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/metrics-server/post_install.md -------------------------------------------------------------------------------- /minio/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/minio/app.yaml -------------------------------------------------------------------------------- /minio/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/minio/logo.png -------------------------------------------------------------------------------- /minio/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/minio/manifest.yaml -------------------------------------------------------------------------------- /minio/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/minio/post_install.md -------------------------------------------------------------------------------- /mongodb/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/mongodb/app.yaml -------------------------------------------------------------------------------- /mongodb/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/mongodb/logo.png -------------------------------------------------------------------------------- /mongodb/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/mongodb/manifest.yaml -------------------------------------------------------------------------------- /mongodb/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/mongodb/post_install.md -------------------------------------------------------------------------------- /netdata/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/netdata/install.sh -------------------------------------------------------------------------------- /netdata/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/netdata/logo.png -------------------------------------------------------------------------------- /netdata/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/netdata/manifest.yaml -------------------------------------------------------------------------------- /netdata/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/netdata/post_install.md -------------------------------------------------------------------------------- /netdata/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/netdata/uninstall.sh -------------------------------------------------------------------------------- /neuvector/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/neuvector/install.sh -------------------------------------------------------------------------------- /neuvector/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/neuvector/logo.png -------------------------------------------------------------------------------- /neuvector/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/neuvector/manifest.yaml -------------------------------------------------------------------------------- /neuvector/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/neuvector/post_install.md -------------------------------------------------------------------------------- /nextcloud/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/nextcloud/app.yaml -------------------------------------------------------------------------------- /nextcloud/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/nextcloud/logo.png -------------------------------------------------------------------------------- /nextcloud/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/nextcloud/manifest.yaml -------------------------------------------------------------------------------- /nextcloud/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/nextcloud/post_install.md -------------------------------------------------------------------------------- /nextcloud/pre_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/nextcloud/pre_install.sh -------------------------------------------------------------------------------- /nexus3/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/nexus3/install.sh -------------------------------------------------------------------------------- /nexus3/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/nexus3/logo.png -------------------------------------------------------------------------------- /nexus3/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/nexus3/manifest.yaml -------------------------------------------------------------------------------- /nexus3/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/nexus3/post_install.md -------------------------------------------------------------------------------- /nexus3/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/nexus3/uninstall.sh -------------------------------------------------------------------------------- /nexus3/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/nexus3/values.yaml -------------------------------------------------------------------------------- /nginx/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/nginx/install.sh -------------------------------------------------------------------------------- /nginx/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/nginx/logo.png -------------------------------------------------------------------------------- /nginx/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/nginx/manifest.yaml -------------------------------------------------------------------------------- /nginx/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/nginx/post_install.md -------------------------------------------------------------------------------- /ngrok/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/ngrok/install.sh -------------------------------------------------------------------------------- /ngrok/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/ngrok/logo.png -------------------------------------------------------------------------------- /ngrok/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/ngrok/manifest.yaml -------------------------------------------------------------------------------- /ngrok/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/ngrok/post_install.md -------------------------------------------------------------------------------- /nodered/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/nodered/app.yaml -------------------------------------------------------------------------------- /nodered/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/nodered/logo.png -------------------------------------------------------------------------------- /nodered/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/nodered/manifest.yaml -------------------------------------------------------------------------------- /nodered/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/nodered/post_install.md -------------------------------------------------------------------------------- /openfaas/.gitignore: -------------------------------------------------------------------------------- 1 | password.txt 2 | -------------------------------------------------------------------------------- /openfaas/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/openfaas/install.sh -------------------------------------------------------------------------------- /openfaas/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/openfaas/logo.png -------------------------------------------------------------------------------- /openfaas/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/openfaas/manifest.yaml -------------------------------------------------------------------------------- /openfaas/manual_testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/openfaas/manual_testing.md -------------------------------------------------------------------------------- /openfaas/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/openfaas/post_install.md -------------------------------------------------------------------------------- /openobserve/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/openobserve/install.sh -------------------------------------------------------------------------------- /openobserve/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/openobserve/logo.png -------------------------------------------------------------------------------- /openobserve/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/openobserve/manifest.yaml -------------------------------------------------------------------------------- /openobserve/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/openobserve/post_install.md -------------------------------------------------------------------------------- /openobserve/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/openobserve/uninstall.sh -------------------------------------------------------------------------------- /paralus/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/paralus/install.sh -------------------------------------------------------------------------------- /paralus/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/paralus/logo.png -------------------------------------------------------------------------------- /paralus/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/paralus/manifest.yaml -------------------------------------------------------------------------------- /paralus/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/paralus/post_install.md -------------------------------------------------------------------------------- /paralus/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/paralus/uninstall.sh -------------------------------------------------------------------------------- /parca/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/parca/README.md -------------------------------------------------------------------------------- /parca/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/parca/app.yaml -------------------------------------------------------------------------------- /parca/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/parca/logo.png -------------------------------------------------------------------------------- /parca/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/parca/manifest.yaml -------------------------------------------------------------------------------- /parca/parca-agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/parca/parca-agent.yaml -------------------------------------------------------------------------------- /parca/parca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/parca/parca.yaml -------------------------------------------------------------------------------- /parca/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/parca/post_install.md -------------------------------------------------------------------------------- /passwordless-dev/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/passwordless-dev/app.yaml -------------------------------------------------------------------------------- /passwordless-dev/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/passwordless-dev/logo.png -------------------------------------------------------------------------------- /passwordless-dev/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/passwordless-dev/manifest.yaml -------------------------------------------------------------------------------- /passwordless-dev/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/passwordless-dev/post_install.md -------------------------------------------------------------------------------- /passwordless-dev/pre_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/passwordless-dev/pre_install.sh -------------------------------------------------------------------------------- /percona-mysql/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/percona-mysql/install.sh -------------------------------------------------------------------------------- /percona-mysql/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/percona-mysql/logo.png -------------------------------------------------------------------------------- /percona-mysql/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/percona-mysql/manifest.yaml -------------------------------------------------------------------------------- /percona-mysql/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/percona-mysql/post_install.md -------------------------------------------------------------------------------- /permission-manager/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/permission-manager/app.yaml -------------------------------------------------------------------------------- /permission-manager/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/permission-manager/install.sh -------------------------------------------------------------------------------- /permission-manager/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/permission-manager/logo.png -------------------------------------------------------------------------------- /permission-manager/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/permission-manager/manifest.yaml -------------------------------------------------------------------------------- /permission-manager/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/permission-manager/post_install.md -------------------------------------------------------------------------------- /permission-manager/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/permission-manager/uninstall.sh -------------------------------------------------------------------------------- /pmm/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/pmm/install.sh -------------------------------------------------------------------------------- /pmm/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/pmm/logo.png -------------------------------------------------------------------------------- /pmm/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/pmm/manifest.yaml -------------------------------------------------------------------------------- /pmm/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/pmm/post_install.md -------------------------------------------------------------------------------- /pmm/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/pmm/uninstall.sh -------------------------------------------------------------------------------- /polaris/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/polaris/app.yaml -------------------------------------------------------------------------------- /polaris/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/polaris/logo.png -------------------------------------------------------------------------------- /polaris/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/polaris/manifest.yaml -------------------------------------------------------------------------------- /polaris/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/polaris/post_install.md -------------------------------------------------------------------------------- /polaris/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/polaris/uninstall.sh -------------------------------------------------------------------------------- /portainer/ce-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/portainer/ce-app.yaml -------------------------------------------------------------------------------- /portainer/ee-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/portainer/ee-app.yaml -------------------------------------------------------------------------------- /portainer/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/portainer/install.sh -------------------------------------------------------------------------------- /portainer/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/portainer/logo.png -------------------------------------------------------------------------------- /portainer/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/portainer/manifest.yaml -------------------------------------------------------------------------------- /portainer/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/portainer/post_install.md -------------------------------------------------------------------------------- /postgresql/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/postgresql/app.yaml -------------------------------------------------------------------------------- /postgresql/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/postgresql/logo.png -------------------------------------------------------------------------------- /postgresql/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/postgresql/manifest.yaml -------------------------------------------------------------------------------- /postgresql/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/postgresql/post_install.md -------------------------------------------------------------------------------- /postgresql/resource.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/postgresql/resource.sh -------------------------------------------------------------------------------- /projectsveltos/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/projectsveltos/install.sh -------------------------------------------------------------------------------- /projectsveltos/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/projectsveltos/logo.png -------------------------------------------------------------------------------- /projectsveltos/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/projectsveltos/manifest.yaml -------------------------------------------------------------------------------- /projectsveltos/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/projectsveltos/post_install.md -------------------------------------------------------------------------------- /prometheus-operator/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/prometheus-operator/install.sh -------------------------------------------------------------------------------- /prometheus-operator/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/prometheus-operator/logo.png -------------------------------------------------------------------------------- /prometheus-operator/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/prometheus-operator/manifest.yaml -------------------------------------------------------------------------------- /prometheus-operator/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/prometheus-operator/post_install.md -------------------------------------------------------------------------------- /prometheus-operator/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/prometheus-operator/uninstall.sh -------------------------------------------------------------------------------- /pyroscope/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/pyroscope/app.yaml -------------------------------------------------------------------------------- /pyroscope/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/pyroscope/logo.png -------------------------------------------------------------------------------- /pyroscope/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/pyroscope/manifest.yaml -------------------------------------------------------------------------------- /pyroscope/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/pyroscope/post_install.md -------------------------------------------------------------------------------- /rabbitmq/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/rabbitmq/app.yaml -------------------------------------------------------------------------------- /rabbitmq/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/rabbitmq/logo.png -------------------------------------------------------------------------------- /rabbitmq/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/rabbitmq/manifest.yaml -------------------------------------------------------------------------------- /rabbitmq/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/rabbitmq/post_install.md -------------------------------------------------------------------------------- /rancher/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/rancher/install.sh -------------------------------------------------------------------------------- /rancher/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/rancher/logo.png -------------------------------------------------------------------------------- /rancher/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/rancher/manifest.yaml -------------------------------------------------------------------------------- /rancher/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/rancher/post_install.md -------------------------------------------------------------------------------- /redis/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/redis/app.yaml -------------------------------------------------------------------------------- /redis/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/redis/logo.png -------------------------------------------------------------------------------- /redis/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/redis/manifest.yaml -------------------------------------------------------------------------------- /redis/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/redis/post_install.md -------------------------------------------------------------------------------- /rekor/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/rekor/install.sh -------------------------------------------------------------------------------- /rekor/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/rekor/logo.png -------------------------------------------------------------------------------- /rekor/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/rekor/manifest.yaml -------------------------------------------------------------------------------- /rekor/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/rekor/post_install.md -------------------------------------------------------------------------------- /rekor/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/rekor/uninstall.sh -------------------------------------------------------------------------------- /reloader/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/reloader/install.sh -------------------------------------------------------------------------------- /reloader/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/reloader/logo.png -------------------------------------------------------------------------------- /reloader/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/reloader/manifest.yaml -------------------------------------------------------------------------------- /reloader/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/reloader/post_install.md -------------------------------------------------------------------------------- /reloader/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/reloader/uninstall.sh -------------------------------------------------------------------------------- /rqlite/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/rqlite/install.sh -------------------------------------------------------------------------------- /rqlite/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/rqlite/logo.png -------------------------------------------------------------------------------- /rqlite/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/rqlite/manifest.yaml -------------------------------------------------------------------------------- /rqlite/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/rqlite/post_install.md -------------------------------------------------------------------------------- /rqlite/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/rqlite/uninstall.sh -------------------------------------------------------------------------------- /sealed-secrets/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/sealed-secrets/install.sh -------------------------------------------------------------------------------- /sealed-secrets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/sealed-secrets/logo.png -------------------------------------------------------------------------------- /sealed-secrets/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/sealed-secrets/manifest.yaml -------------------------------------------------------------------------------- /sealed-secrets/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/sealed-secrets/post_install.md -------------------------------------------------------------------------------- /sealed-secrets/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/sealed-secrets/uninstall.sh -------------------------------------------------------------------------------- /selenium/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/selenium/app.yaml -------------------------------------------------------------------------------- /selenium/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/selenium/logo.png -------------------------------------------------------------------------------- /selenium/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/selenium/manifest.yaml -------------------------------------------------------------------------------- /selenium/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/selenium/post_install.md -------------------------------------------------------------------------------- /shipa/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/shipa/install.sh -------------------------------------------------------------------------------- /shipa/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/shipa/logo.png -------------------------------------------------------------------------------- /shipa/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/shipa/manifest.yaml -------------------------------------------------------------------------------- /shipa/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/shipa/post_install.md -------------------------------------------------------------------------------- /shipa/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/shipa/uninstall.sh -------------------------------------------------------------------------------- /siglens-oss/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/siglens-oss/app.yaml -------------------------------------------------------------------------------- /siglens-oss/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/siglens-oss/logo.png -------------------------------------------------------------------------------- /siglens-oss/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/siglens-oss/manifest.yaml -------------------------------------------------------------------------------- /siglens-oss/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/siglens-oss/post_install.md -------------------------------------------------------------------------------- /siglens-oss/pre_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/siglens-oss/pre_install.sh -------------------------------------------------------------------------------- /siglens-oss/server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/siglens-oss/server.yaml -------------------------------------------------------------------------------- /siglens-oss/ssmetrics-otel-collector-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/siglens-oss/ssmetrics-otel-collector-config.yaml -------------------------------------------------------------------------------- /sonarqube/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/sonarqube/install.sh -------------------------------------------------------------------------------- /sonarqube/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/sonarqube/logo.png -------------------------------------------------------------------------------- /sonarqube/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/sonarqube/manifest.yaml -------------------------------------------------------------------------------- /sonarqube/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/sonarqube/post_install.md -------------------------------------------------------------------------------- /sonarqube/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/sonarqube/uninstall.sh -------------------------------------------------------------------------------- /spinkube/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/spinkube/install.sh -------------------------------------------------------------------------------- /spinkube/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/spinkube/logo.png -------------------------------------------------------------------------------- /spinkube/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/spinkube/manifest.yaml -------------------------------------------------------------------------------- /spinkube/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/spinkube/post_install.md -------------------------------------------------------------------------------- /spinkube/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/spinkube/uninstall.sh -------------------------------------------------------------------------------- /system-upgrade-controller/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/system-upgrade-controller/app.yaml -------------------------------------------------------------------------------- /system-upgrade-controller/example/civo-plan-v1.16.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/system-upgrade-controller/example/civo-plan-v1.16.yaml -------------------------------------------------------------------------------- /system-upgrade-controller/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/system-upgrade-controller/logo.png -------------------------------------------------------------------------------- /system-upgrade-controller/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/system-upgrade-controller/manifest.yaml -------------------------------------------------------------------------------- /system-upgrade-controller/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/system-upgrade-controller/post_install.md -------------------------------------------------------------------------------- /tekton/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/tekton/Makefile -------------------------------------------------------------------------------- /tekton/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/tekton/README.md -------------------------------------------------------------------------------- /tekton/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/tekton/install.sh -------------------------------------------------------------------------------- /tekton/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/tekton/logo.png -------------------------------------------------------------------------------- /tekton/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/tekton/manifest.yaml -------------------------------------------------------------------------------- /tekton/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/tekton/post_install.md -------------------------------------------------------------------------------- /tekton/tekton.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/tekton/tekton.yaml -------------------------------------------------------------------------------- /tekton/test-manifests/1-task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/tekton/test-manifests/1-task.yaml -------------------------------------------------------------------------------- /tekton/test-manifests/2-taskrun.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/tekton/test-manifests/2-taskrun.yaml -------------------------------------------------------------------------------- /traefik2-loadbalancer/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/traefik2-loadbalancer/app.yaml -------------------------------------------------------------------------------- /traefik2-loadbalancer/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/traefik2-loadbalancer/logo.png -------------------------------------------------------------------------------- /traefik2-loadbalancer/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/traefik2-loadbalancer/manifest.yaml -------------------------------------------------------------------------------- /traefik2-loadbalancer/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/traefik2-loadbalancer/post_install.md -------------------------------------------------------------------------------- /traefik2-nodeport/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/traefik2-nodeport/app.yaml -------------------------------------------------------------------------------- /traefik2-nodeport/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/traefik2-nodeport/logo.png -------------------------------------------------------------------------------- /traefik2-nodeport/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/traefik2-nodeport/manifest.yaml -------------------------------------------------------------------------------- /traefik2-nodeport/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/traefik2-nodeport/post_install.md -------------------------------------------------------------------------------- /twingate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/twingate/Makefile -------------------------------------------------------------------------------- /twingate/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/twingate/app.yaml -------------------------------------------------------------------------------- /twingate/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/twingate/logo.png -------------------------------------------------------------------------------- /twingate/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/twingate/manifest.yaml -------------------------------------------------------------------------------- /twingate/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/twingate/post_install.md -------------------------------------------------------------------------------- /twingate/test/internal-site.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/twingate/test/internal-site.yaml -------------------------------------------------------------------------------- /unifi-controller/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/unifi-controller/app.yaml -------------------------------------------------------------------------------- /unifi-controller/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/unifi-controller/logo.png -------------------------------------------------------------------------------- /unifi-controller/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/unifi-controller/manifest.yaml -------------------------------------------------------------------------------- /unifi-controller/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/unifi-controller/post_install.md -------------------------------------------------------------------------------- /uptime-kuma/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/uptime-kuma/app.yaml -------------------------------------------------------------------------------- /uptime-kuma/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/uptime-kuma/logo.png -------------------------------------------------------------------------------- /uptime-kuma/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/uptime-kuma/manifest.yaml -------------------------------------------------------------------------------- /uptime-kuma/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/uptime-kuma/post_install.md -------------------------------------------------------------------------------- /vault/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/vault/install.sh -------------------------------------------------------------------------------- /vault/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/vault/logo.png -------------------------------------------------------------------------------- /vault/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/vault/manifest.yaml -------------------------------------------------------------------------------- /vault/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/vault/post_install.md -------------------------------------------------------------------------------- /volcano/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/volcano/app.yaml -------------------------------------------------------------------------------- /volcano/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/volcano/logo.png -------------------------------------------------------------------------------- /volcano/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/volcano/manifest.yaml -------------------------------------------------------------------------------- /volcano/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/volcano/post_install.md -------------------------------------------------------------------------------- /weavescope/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/weavescope/install.sh -------------------------------------------------------------------------------- /weavescope/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/weavescope/logo.png -------------------------------------------------------------------------------- /weavescope/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/weavescope/manifest.yaml -------------------------------------------------------------------------------- /weavescope/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/weavescope/post_install.md -------------------------------------------------------------------------------- /weavescope/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/weavescope/uninstall.sh -------------------------------------------------------------------------------- /wordpress/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/wordpress/app.yaml -------------------------------------------------------------------------------- /wordpress/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/wordpress/logo.png -------------------------------------------------------------------------------- /wordpress/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/wordpress/manifest.yaml -------------------------------------------------------------------------------- /wordpress/post_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/civo/kubernetes-marketplace/HEAD/wordpress/post_install.md --------------------------------------------------------------------------------