├── README.md ├── alpine ├── Chart.yaml ├── README.md └── manifests │ └── alpine-pod.yaml ├── amq ├── Chart.yaml ├── README.md └── manifests │ └── amq.yaml ├── amqbroker ├── Chart.yaml ├── README.md └── manifests │ └── amqbroker.yaml ├── api-registry ├── Chart.yaml ├── README.md └── manifests │ └── api-registry.yaml ├── apiman-gateway ├── Chart.yaml ├── README.md └── manifests │ └── apiman-gateway.yaml ├── apiman ├── Chart.yaml ├── README.md └── manifests │ └── apiman.yaml ├── artemis ├── Chart.yaml ├── README.md └── manifests │ └── artemis.yaml ├── artifactory ├── Chart.yaml ├── README.md └── manifests │ └── artifactory.yaml ├── brackets ├── Chart.yaml ├── README.md └── manifests │ └── brackets.yaml ├── cassandra ├── Chart.yaml ├── README.md └── manifests │ ├── cassandra-rc.yaml │ └── cassandra-svc.yaml ├── cd-pipeline ├── Chart.yaml ├── README.md └── manifests │ └── cd-pipeline.yaml ├── chaos-monkey ├── Chart.yaml ├── README.md └── manifests │ └── chaos-monkey.yaml ├── chat-irc ├── Chart.yaml ├── README.md └── manifests │ └── chat-irc.yaml ├── chat-letschat ├── Chart.yaml ├── README.md └── manifests │ └── chat-letschat.yaml ├── chat-slack ├── Chart.yaml ├── README.md └── manifests │ └── chat-slack.yaml ├── console-kubernetes ├── Chart.yaml ├── README.md └── manifests │ └── console-kubernetes.yaml ├── console ├── Chart.yaml ├── README.md └── manifests │ └── console.yaml ├── docker-registry ├── Chart.yaml ├── README.md └── manifests │ ├── docker-registry-rc.yaml │ └── docker-registry-svc.yaml ├── elasticsearch-1 ├── Chart.yaml ├── README.md └── manifests │ └── elasticsearch-1.yaml ├── elasticsearch-v1 ├── Chart.yaml ├── README.md └── manifests │ └── elasticsearch-v1.yaml ├── elasticsearch ├── Chart.yaml ├── README.md └── manifests │ └── elasticsearch.yaml ├── example-nginx ├── Chart.yaml ├── README.md └── manifests │ ├── example-nginx-controller.yaml │ └── example-nginx-service.yaml ├── example-todo ├── Chart.yaml └── manifests │ ├── example-todo-rc.yaml │ ├── example-todo-redis-cluster-service.yaml │ ├── example-todo-redis-standalone-service.yaml │ └── example-todo-service.yaml ├── fabric8-console-kubernetes ├── Chart.yaml ├── README.md └── manifests │ └── fabric8-console-kubernetes.yaml ├── fabric8-console ├── Chart.yaml ├── README.md └── manifests │ └── fabric8-console.yaml ├── fabric8-docker-registry ├── Chart.yaml ├── README.md └── manifests │ └── fabric8-docker-registry.yaml ├── fabric8-forge ├── Chart.yaml └── manifests │ └── fabric8-forge.yaml ├── fabric8-msm ├── Chart.yaml ├── README.md └── manifests │ └── fabric8-msm.yaml ├── fabric8 ├── Chart.yaml ├── README.md └── manifests │ └── fabric8.yaml ├── fabric8mq-consumer ├── Chart.yaml ├── README.md └── manifests │ └── fabric8mq-consumer.yaml ├── fabric8mq-producer ├── Chart.yaml ├── README.md └── manifests │ └── fabric8mq-producer.yaml ├── fabric8mq ├── Chart.yaml ├── README.md └── manifests │ └── fabric8mq.yaml ├── fluentd ├── Chart.yaml ├── README.md └── manifests │ └── fluentd.yaml ├── gerrit ├── Chart.yaml ├── README.md └── manifests │ └── gerrit.yaml ├── git-collector ├── Chart.yaml ├── README.md └── manifests │ └── git-collector.yaml ├── gitlab ├── Chart.yaml ├── README.md └── manifests │ └── gitlab.yaml ├── gogs ├── Chart.yaml ├── README.md └── manifests │ └── gogs.yaml ├── grafana2 ├── Chart.yaml ├── README.md └── manifests │ └── grafana2.yaml ├── hubot-irc ├── Chart.yaml ├── README.md └── manifests │ └── hubot-irc.yaml ├── hubot-letschat ├── Chart.yaml ├── README.md └── manifests │ └── hubot-letschat.yaml ├── hubot-notifier ├── Chart.yaml ├── README.md └── manifests │ └── hubot-notifier.yaml ├── hubot-slack ├── Chart.yaml ├── README.md └── manifests │ └── hubot-slack.yaml ├── image-linker ├── Chart.yaml ├── README.md └── manifests │ └── image-linker.yaml ├── jenkins ├── Chart.yaml ├── README.md └── manifests │ └── jenkins.yaml ├── keycloak ├── Chart.yaml ├── README.md └── manifests │ └── keycloak.yaml ├── kibana ├── Chart.yaml ├── README.md └── manifests │ └── kibana.yaml ├── kiwiirc ├── Chart.yaml ├── README.md └── manifests │ └── kiwiirc.yaml ├── letschat ├── Chart.yaml ├── README.md └── manifests │ └── letschat.yaml ├── logging ├── Chart.yaml ├── README.md └── manifests │ └── logging.yaml ├── management ├── Chart.yaml ├── README.md └── manifests │ └── management.yaml ├── memcached ├── Chart.yaml ├── README.md └── manifests │ └── memcached-rc.yaml ├── metrics ├── Chart.yaml ├── README.md └── manifests │ └── metrics.yaml ├── msg-gateway ├── Chart.yaml ├── README.md └── manifests │ └── msg-gateway.yaml ├── msg-pack ├── Chart.yaml ├── README.md └── manifests │ └── msg-pack.yaml ├── mysql ├── Chart.yaml ├── README.md └── manifests │ ├── mysql-rc.yaml │ └── mysql-svc.yaml ├── nexus ├── Chart.yaml ├── README.md └── manifests │ └── nexus.yaml ├── nginx-alpine ├── Chart.yaml ├── README.md └── manifests │ ├── nginx-rc.yaml │ └── nginx-svc.yaml ├── nginx ├── Chart.yaml ├── README.md └── manifests │ ├── nginx-rc.yaml │ └── nginx-svc.yaml ├── orion ├── Chart.yaml ├── README.md └── manifests │ └── orion.yaml ├── owncloud ├── Chart.yaml ├── README.md └── manifests │ ├── owncloud-rc.yaml │ └── owncloud-svc.yaml ├── postgresql ├── Chart.yaml ├── README.md └── manifests │ ├── postgresql-rc.yaml │ └── postgresql-svc.yaml ├── prometheus-blackbox-exporter ├── Chart.yaml ├── README.md └── manifests │ └── prometheus-blackbox-exporter.yaml ├── prometheus ├── Chart.yaml ├── README.md └── manifests │ └── prometheus.yaml ├── proxy-2-service ├── Chart.yaml ├── README.md └── manifests │ └── proxy-2-service-pod.yaml ├── qpid-dispatch ├── Chart.yaml ├── README.md └── manifests │ └── qpid-dispatch.yaml ├── rabbitmq ├── Chart.yaml ├── README.md └── manifests │ ├── rabbitmq-rc.yaml │ └── rabbitmq-svc.yaml ├── redis-cluster ├── Chart.yaml └── manifests │ ├── redis-master.yaml │ ├── redis-rc.yaml │ ├── redis-sentinel-rc.yaml │ └── redis-sentinel-service.yaml ├── redis-standalone ├── Chart.yaml ├── README.md └── manifests │ ├── redis-rc.yaml │ └── redis-svc.yaml ├── redmine ├── Chart.yaml ├── README.md └── manifests │ ├── redmine-rc.yaml │ └── redmine-svc.yaml ├── riak ├── Chart.yaml ├── README.md └── manifests │ ├── riak-rc.yaml │ └── riak-svc.yaml ├── selenium ├── Chart.yaml ├── README.md └── manifests │ ├── selenium-hub-rc.yaml │ ├── selenium-hub-svc.yaml │ ├── selenium-node-chrome-rc.yaml │ └── selenium-node-firefox-rc.yaml ├── social ├── Chart.yaml ├── README.md └── manifests │ └── social.yaml ├── sonarqube ├── Chart.yaml ├── README.md └── manifests │ └── sonarqube.yaml ├── taiga ├── Chart.yaml ├── README.md └── manifests │ └── taiga.yaml └── templates ├── Chart.yaml ├── README.md └── manifests └── templates.yaml /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/README.md -------------------------------------------------------------------------------- /alpine/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/alpine/Chart.yaml -------------------------------------------------------------------------------- /alpine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/alpine/README.md -------------------------------------------------------------------------------- /alpine/manifests/alpine-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/alpine/manifests/alpine-pod.yaml -------------------------------------------------------------------------------- /amq/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/amq/Chart.yaml -------------------------------------------------------------------------------- /amq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/amq/README.md -------------------------------------------------------------------------------- /amq/manifests/amq.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/amq/manifests/amq.yaml -------------------------------------------------------------------------------- /amqbroker/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/amqbroker/Chart.yaml -------------------------------------------------------------------------------- /amqbroker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/amqbroker/README.md -------------------------------------------------------------------------------- /amqbroker/manifests/amqbroker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/amqbroker/manifests/amqbroker.yaml -------------------------------------------------------------------------------- /api-registry/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/api-registry/Chart.yaml -------------------------------------------------------------------------------- /api-registry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/api-registry/README.md -------------------------------------------------------------------------------- /api-registry/manifests/api-registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/api-registry/manifests/api-registry.yaml -------------------------------------------------------------------------------- /apiman-gateway/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/apiman-gateway/Chart.yaml -------------------------------------------------------------------------------- /apiman-gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/apiman-gateway/README.md -------------------------------------------------------------------------------- /apiman-gateway/manifests/apiman-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/apiman-gateway/manifests/apiman-gateway.yaml -------------------------------------------------------------------------------- /apiman/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/apiman/Chart.yaml -------------------------------------------------------------------------------- /apiman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/apiman/README.md -------------------------------------------------------------------------------- /apiman/manifests/apiman.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/apiman/manifests/apiman.yaml -------------------------------------------------------------------------------- /artemis/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/artemis/Chart.yaml -------------------------------------------------------------------------------- /artemis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/artemis/README.md -------------------------------------------------------------------------------- /artemis/manifests/artemis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/artemis/manifests/artemis.yaml -------------------------------------------------------------------------------- /artifactory/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/artifactory/Chart.yaml -------------------------------------------------------------------------------- /artifactory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/artifactory/README.md -------------------------------------------------------------------------------- /artifactory/manifests/artifactory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/artifactory/manifests/artifactory.yaml -------------------------------------------------------------------------------- /brackets/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/brackets/Chart.yaml -------------------------------------------------------------------------------- /brackets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/brackets/README.md -------------------------------------------------------------------------------- /brackets/manifests/brackets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/brackets/manifests/brackets.yaml -------------------------------------------------------------------------------- /cassandra/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/cassandra/Chart.yaml -------------------------------------------------------------------------------- /cassandra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/cassandra/README.md -------------------------------------------------------------------------------- /cassandra/manifests/cassandra-rc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/cassandra/manifests/cassandra-rc.yaml -------------------------------------------------------------------------------- /cassandra/manifests/cassandra-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/cassandra/manifests/cassandra-svc.yaml -------------------------------------------------------------------------------- /cd-pipeline/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/cd-pipeline/Chart.yaml -------------------------------------------------------------------------------- /cd-pipeline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/cd-pipeline/README.md -------------------------------------------------------------------------------- /cd-pipeline/manifests/cd-pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/cd-pipeline/manifests/cd-pipeline.yaml -------------------------------------------------------------------------------- /chaos-monkey/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/chaos-monkey/Chart.yaml -------------------------------------------------------------------------------- /chaos-monkey/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/chaos-monkey/README.md -------------------------------------------------------------------------------- /chaos-monkey/manifests/chaos-monkey.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/chaos-monkey/manifests/chaos-monkey.yaml -------------------------------------------------------------------------------- /chat-irc/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/chat-irc/Chart.yaml -------------------------------------------------------------------------------- /chat-irc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/chat-irc/README.md -------------------------------------------------------------------------------- /chat-irc/manifests/chat-irc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/chat-irc/manifests/chat-irc.yaml -------------------------------------------------------------------------------- /chat-letschat/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/chat-letschat/Chart.yaml -------------------------------------------------------------------------------- /chat-letschat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/chat-letschat/README.md -------------------------------------------------------------------------------- /chat-letschat/manifests/chat-letschat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/chat-letschat/manifests/chat-letschat.yaml -------------------------------------------------------------------------------- /chat-slack/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/chat-slack/Chart.yaml -------------------------------------------------------------------------------- /chat-slack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/chat-slack/README.md -------------------------------------------------------------------------------- /chat-slack/manifests/chat-slack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/chat-slack/manifests/chat-slack.yaml -------------------------------------------------------------------------------- /console-kubernetes/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/console-kubernetes/Chart.yaml -------------------------------------------------------------------------------- /console-kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/console-kubernetes/README.md -------------------------------------------------------------------------------- /console-kubernetes/manifests/console-kubernetes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/console-kubernetes/manifests/console-kubernetes.yaml -------------------------------------------------------------------------------- /console/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/console/Chart.yaml -------------------------------------------------------------------------------- /console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/console/README.md -------------------------------------------------------------------------------- /console/manifests/console.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/console/manifests/console.yaml -------------------------------------------------------------------------------- /docker-registry/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/docker-registry/Chart.yaml -------------------------------------------------------------------------------- /docker-registry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/docker-registry/README.md -------------------------------------------------------------------------------- /docker-registry/manifests/docker-registry-rc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/docker-registry/manifests/docker-registry-rc.yaml -------------------------------------------------------------------------------- /docker-registry/manifests/docker-registry-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/docker-registry/manifests/docker-registry-svc.yaml -------------------------------------------------------------------------------- /elasticsearch-1/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/elasticsearch-1/Chart.yaml -------------------------------------------------------------------------------- /elasticsearch-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/elasticsearch-1/README.md -------------------------------------------------------------------------------- /elasticsearch-1/manifests/elasticsearch-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/elasticsearch-1/manifests/elasticsearch-1.yaml -------------------------------------------------------------------------------- /elasticsearch-v1/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/elasticsearch-v1/Chart.yaml -------------------------------------------------------------------------------- /elasticsearch-v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/elasticsearch-v1/README.md -------------------------------------------------------------------------------- /elasticsearch-v1/manifests/elasticsearch-v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/elasticsearch-v1/manifests/elasticsearch-v1.yaml -------------------------------------------------------------------------------- /elasticsearch/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/elasticsearch/Chart.yaml -------------------------------------------------------------------------------- /elasticsearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/elasticsearch/README.md -------------------------------------------------------------------------------- /elasticsearch/manifests/elasticsearch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/elasticsearch/manifests/elasticsearch.yaml -------------------------------------------------------------------------------- /example-nginx/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/example-nginx/Chart.yaml -------------------------------------------------------------------------------- /example-nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/example-nginx/README.md -------------------------------------------------------------------------------- /example-nginx/manifests/example-nginx-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/example-nginx/manifests/example-nginx-controller.yaml -------------------------------------------------------------------------------- /example-nginx/manifests/example-nginx-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/example-nginx/manifests/example-nginx-service.yaml -------------------------------------------------------------------------------- /example-todo/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/example-todo/Chart.yaml -------------------------------------------------------------------------------- /example-todo/manifests/example-todo-rc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/example-todo/manifests/example-todo-rc.yaml -------------------------------------------------------------------------------- /example-todo/manifests/example-todo-redis-cluster-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/example-todo/manifests/example-todo-redis-cluster-service.yaml -------------------------------------------------------------------------------- /example-todo/manifests/example-todo-redis-standalone-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/example-todo/manifests/example-todo-redis-standalone-service.yaml -------------------------------------------------------------------------------- /example-todo/manifests/example-todo-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/example-todo/manifests/example-todo-service.yaml -------------------------------------------------------------------------------- /fabric8-console-kubernetes/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/fabric8-console-kubernetes/Chart.yaml -------------------------------------------------------------------------------- /fabric8-console-kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/fabric8-console-kubernetes/README.md -------------------------------------------------------------------------------- /fabric8-console-kubernetes/manifests/fabric8-console-kubernetes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/fabric8-console-kubernetes/manifests/fabric8-console-kubernetes.yaml -------------------------------------------------------------------------------- /fabric8-console/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/fabric8-console/Chart.yaml -------------------------------------------------------------------------------- /fabric8-console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/fabric8-console/README.md -------------------------------------------------------------------------------- /fabric8-console/manifests/fabric8-console.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/fabric8-console/manifests/fabric8-console.yaml -------------------------------------------------------------------------------- /fabric8-docker-registry/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/fabric8-docker-registry/Chart.yaml -------------------------------------------------------------------------------- /fabric8-docker-registry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/fabric8-docker-registry/README.md -------------------------------------------------------------------------------- /fabric8-docker-registry/manifests/fabric8-docker-registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/fabric8-docker-registry/manifests/fabric8-docker-registry.yaml -------------------------------------------------------------------------------- /fabric8-forge/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/fabric8-forge/Chart.yaml -------------------------------------------------------------------------------- /fabric8-forge/manifests/fabric8-forge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/fabric8-forge/manifests/fabric8-forge.yaml -------------------------------------------------------------------------------- /fabric8-msm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/fabric8-msm/Chart.yaml -------------------------------------------------------------------------------- /fabric8-msm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/fabric8-msm/README.md -------------------------------------------------------------------------------- /fabric8-msm/manifests/fabric8-msm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/fabric8-msm/manifests/fabric8-msm.yaml -------------------------------------------------------------------------------- /fabric8/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/fabric8/Chart.yaml -------------------------------------------------------------------------------- /fabric8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/fabric8/README.md -------------------------------------------------------------------------------- /fabric8/manifests/fabric8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/fabric8/manifests/fabric8.yaml -------------------------------------------------------------------------------- /fabric8mq-consumer/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/fabric8mq-consumer/Chart.yaml -------------------------------------------------------------------------------- /fabric8mq-consumer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/fabric8mq-consumer/README.md -------------------------------------------------------------------------------- /fabric8mq-consumer/manifests/fabric8mq-consumer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/fabric8mq-consumer/manifests/fabric8mq-consumer.yaml -------------------------------------------------------------------------------- /fabric8mq-producer/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/fabric8mq-producer/Chart.yaml -------------------------------------------------------------------------------- /fabric8mq-producer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/fabric8mq-producer/README.md -------------------------------------------------------------------------------- /fabric8mq-producer/manifests/fabric8mq-producer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/fabric8mq-producer/manifests/fabric8mq-producer.yaml -------------------------------------------------------------------------------- /fabric8mq/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/fabric8mq/Chart.yaml -------------------------------------------------------------------------------- /fabric8mq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/fabric8mq/README.md -------------------------------------------------------------------------------- /fabric8mq/manifests/fabric8mq.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/fabric8mq/manifests/fabric8mq.yaml -------------------------------------------------------------------------------- /fluentd/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/fluentd/Chart.yaml -------------------------------------------------------------------------------- /fluentd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/fluentd/README.md -------------------------------------------------------------------------------- /fluentd/manifests/fluentd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/fluentd/manifests/fluentd.yaml -------------------------------------------------------------------------------- /gerrit/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/gerrit/Chart.yaml -------------------------------------------------------------------------------- /gerrit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/gerrit/README.md -------------------------------------------------------------------------------- /gerrit/manifests/gerrit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/gerrit/manifests/gerrit.yaml -------------------------------------------------------------------------------- /git-collector/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/git-collector/Chart.yaml -------------------------------------------------------------------------------- /git-collector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/git-collector/README.md -------------------------------------------------------------------------------- /git-collector/manifests/git-collector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/git-collector/manifests/git-collector.yaml -------------------------------------------------------------------------------- /gitlab/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/gitlab/Chart.yaml -------------------------------------------------------------------------------- /gitlab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/gitlab/README.md -------------------------------------------------------------------------------- /gitlab/manifests/gitlab.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/gitlab/manifests/gitlab.yaml -------------------------------------------------------------------------------- /gogs/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/gogs/Chart.yaml -------------------------------------------------------------------------------- /gogs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/gogs/README.md -------------------------------------------------------------------------------- /gogs/manifests/gogs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/gogs/manifests/gogs.yaml -------------------------------------------------------------------------------- /grafana2/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/grafana2/Chart.yaml -------------------------------------------------------------------------------- /grafana2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/grafana2/README.md -------------------------------------------------------------------------------- /grafana2/manifests/grafana2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/grafana2/manifests/grafana2.yaml -------------------------------------------------------------------------------- /hubot-irc/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/hubot-irc/Chart.yaml -------------------------------------------------------------------------------- /hubot-irc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/hubot-irc/README.md -------------------------------------------------------------------------------- /hubot-irc/manifests/hubot-irc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/hubot-irc/manifests/hubot-irc.yaml -------------------------------------------------------------------------------- /hubot-letschat/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/hubot-letschat/Chart.yaml -------------------------------------------------------------------------------- /hubot-letschat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/hubot-letschat/README.md -------------------------------------------------------------------------------- /hubot-letschat/manifests/hubot-letschat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/hubot-letschat/manifests/hubot-letschat.yaml -------------------------------------------------------------------------------- /hubot-notifier/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/hubot-notifier/Chart.yaml -------------------------------------------------------------------------------- /hubot-notifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/hubot-notifier/README.md -------------------------------------------------------------------------------- /hubot-notifier/manifests/hubot-notifier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/hubot-notifier/manifests/hubot-notifier.yaml -------------------------------------------------------------------------------- /hubot-slack/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/hubot-slack/Chart.yaml -------------------------------------------------------------------------------- /hubot-slack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/hubot-slack/README.md -------------------------------------------------------------------------------- /hubot-slack/manifests/hubot-slack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/hubot-slack/manifests/hubot-slack.yaml -------------------------------------------------------------------------------- /image-linker/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/image-linker/Chart.yaml -------------------------------------------------------------------------------- /image-linker/README.md: -------------------------------------------------------------------------------- 1 | Provides chat friendly links -------------------------------------------------------------------------------- /image-linker/manifests/image-linker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/image-linker/manifests/image-linker.yaml -------------------------------------------------------------------------------- /jenkins/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/jenkins/Chart.yaml -------------------------------------------------------------------------------- /jenkins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/jenkins/README.md -------------------------------------------------------------------------------- /jenkins/manifests/jenkins.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/jenkins/manifests/jenkins.yaml -------------------------------------------------------------------------------- /keycloak/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/keycloak/Chart.yaml -------------------------------------------------------------------------------- /keycloak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/keycloak/README.md -------------------------------------------------------------------------------- /keycloak/manifests/keycloak.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/keycloak/manifests/keycloak.yaml -------------------------------------------------------------------------------- /kibana/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/kibana/Chart.yaml -------------------------------------------------------------------------------- /kibana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/kibana/README.md -------------------------------------------------------------------------------- /kibana/manifests/kibana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/kibana/manifests/kibana.yaml -------------------------------------------------------------------------------- /kiwiirc/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/kiwiirc/Chart.yaml -------------------------------------------------------------------------------- /kiwiirc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/kiwiirc/README.md -------------------------------------------------------------------------------- /kiwiirc/manifests/kiwiirc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/kiwiirc/manifests/kiwiirc.yaml -------------------------------------------------------------------------------- /letschat/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/letschat/Chart.yaml -------------------------------------------------------------------------------- /letschat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/letschat/README.md -------------------------------------------------------------------------------- /letschat/manifests/letschat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/letschat/manifests/letschat.yaml -------------------------------------------------------------------------------- /logging/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/logging/Chart.yaml -------------------------------------------------------------------------------- /logging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/logging/README.md -------------------------------------------------------------------------------- /logging/manifests/logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/logging/manifests/logging.yaml -------------------------------------------------------------------------------- /management/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/management/Chart.yaml -------------------------------------------------------------------------------- /management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/management/README.md -------------------------------------------------------------------------------- /management/manifests/management.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/management/manifests/management.yaml -------------------------------------------------------------------------------- /memcached/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/memcached/Chart.yaml -------------------------------------------------------------------------------- /memcached/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/memcached/README.md -------------------------------------------------------------------------------- /memcached/manifests/memcached-rc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/memcached/manifests/memcached-rc.yaml -------------------------------------------------------------------------------- /metrics/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/metrics/Chart.yaml -------------------------------------------------------------------------------- /metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/metrics/README.md -------------------------------------------------------------------------------- /metrics/manifests/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/metrics/manifests/metrics.yaml -------------------------------------------------------------------------------- /msg-gateway/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/msg-gateway/Chart.yaml -------------------------------------------------------------------------------- /msg-gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/msg-gateway/README.md -------------------------------------------------------------------------------- /msg-gateway/manifests/msg-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/msg-gateway/manifests/msg-gateway.yaml -------------------------------------------------------------------------------- /msg-pack/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/msg-pack/Chart.yaml -------------------------------------------------------------------------------- /msg-pack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/msg-pack/README.md -------------------------------------------------------------------------------- /msg-pack/manifests/msg-pack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/msg-pack/manifests/msg-pack.yaml -------------------------------------------------------------------------------- /mysql/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/mysql/Chart.yaml -------------------------------------------------------------------------------- /mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/mysql/README.md -------------------------------------------------------------------------------- /mysql/manifests/mysql-rc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/mysql/manifests/mysql-rc.yaml -------------------------------------------------------------------------------- /mysql/manifests/mysql-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/mysql/manifests/mysql-svc.yaml -------------------------------------------------------------------------------- /nexus/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/nexus/Chart.yaml -------------------------------------------------------------------------------- /nexus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/nexus/README.md -------------------------------------------------------------------------------- /nexus/manifests/nexus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/nexus/manifests/nexus.yaml -------------------------------------------------------------------------------- /nginx-alpine/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/nginx-alpine/Chart.yaml -------------------------------------------------------------------------------- /nginx-alpine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/nginx-alpine/README.md -------------------------------------------------------------------------------- /nginx-alpine/manifests/nginx-rc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/nginx-alpine/manifests/nginx-rc.yaml -------------------------------------------------------------------------------- /nginx-alpine/manifests/nginx-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/nginx-alpine/manifests/nginx-svc.yaml -------------------------------------------------------------------------------- /nginx/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/nginx/Chart.yaml -------------------------------------------------------------------------------- /nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/nginx/README.md -------------------------------------------------------------------------------- /nginx/manifests/nginx-rc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/nginx/manifests/nginx-rc.yaml -------------------------------------------------------------------------------- /nginx/manifests/nginx-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/nginx/manifests/nginx-svc.yaml -------------------------------------------------------------------------------- /orion/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/orion/Chart.yaml -------------------------------------------------------------------------------- /orion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/orion/README.md -------------------------------------------------------------------------------- /orion/manifests/orion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/orion/manifests/orion.yaml -------------------------------------------------------------------------------- /owncloud/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/owncloud/Chart.yaml -------------------------------------------------------------------------------- /owncloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/owncloud/README.md -------------------------------------------------------------------------------- /owncloud/manifests/owncloud-rc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/owncloud/manifests/owncloud-rc.yaml -------------------------------------------------------------------------------- /owncloud/manifests/owncloud-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/owncloud/manifests/owncloud-svc.yaml -------------------------------------------------------------------------------- /postgresql/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/postgresql/Chart.yaml -------------------------------------------------------------------------------- /postgresql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/postgresql/README.md -------------------------------------------------------------------------------- /postgresql/manifests/postgresql-rc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/postgresql/manifests/postgresql-rc.yaml -------------------------------------------------------------------------------- /postgresql/manifests/postgresql-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/postgresql/manifests/postgresql-svc.yaml -------------------------------------------------------------------------------- /prometheus-blackbox-exporter/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/prometheus-blackbox-exporter/Chart.yaml -------------------------------------------------------------------------------- /prometheus-blackbox-exporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/prometheus-blackbox-exporter/README.md -------------------------------------------------------------------------------- /prometheus-blackbox-exporter/manifests/prometheus-blackbox-exporter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/prometheus-blackbox-exporter/manifests/prometheus-blackbox-exporter.yaml -------------------------------------------------------------------------------- /prometheus/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/prometheus/Chart.yaml -------------------------------------------------------------------------------- /prometheus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/prometheus/README.md -------------------------------------------------------------------------------- /prometheus/manifests/prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/prometheus/manifests/prometheus.yaml -------------------------------------------------------------------------------- /proxy-2-service/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/proxy-2-service/Chart.yaml -------------------------------------------------------------------------------- /proxy-2-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/proxy-2-service/README.md -------------------------------------------------------------------------------- /proxy-2-service/manifests/proxy-2-service-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/proxy-2-service/manifests/proxy-2-service-pod.yaml -------------------------------------------------------------------------------- /qpid-dispatch/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/qpid-dispatch/Chart.yaml -------------------------------------------------------------------------------- /qpid-dispatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/qpid-dispatch/README.md -------------------------------------------------------------------------------- /qpid-dispatch/manifests/qpid-dispatch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/qpid-dispatch/manifests/qpid-dispatch.yaml -------------------------------------------------------------------------------- /rabbitmq/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/rabbitmq/Chart.yaml -------------------------------------------------------------------------------- /rabbitmq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/rabbitmq/README.md -------------------------------------------------------------------------------- /rabbitmq/manifests/rabbitmq-rc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/rabbitmq/manifests/rabbitmq-rc.yaml -------------------------------------------------------------------------------- /rabbitmq/manifests/rabbitmq-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/rabbitmq/manifests/rabbitmq-svc.yaml -------------------------------------------------------------------------------- /redis-cluster/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/redis-cluster/Chart.yaml -------------------------------------------------------------------------------- /redis-cluster/manifests/redis-master.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/redis-cluster/manifests/redis-master.yaml -------------------------------------------------------------------------------- /redis-cluster/manifests/redis-rc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/redis-cluster/manifests/redis-rc.yaml -------------------------------------------------------------------------------- /redis-cluster/manifests/redis-sentinel-rc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/redis-cluster/manifests/redis-sentinel-rc.yaml -------------------------------------------------------------------------------- /redis-cluster/manifests/redis-sentinel-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/redis-cluster/manifests/redis-sentinel-service.yaml -------------------------------------------------------------------------------- /redis-standalone/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/redis-standalone/Chart.yaml -------------------------------------------------------------------------------- /redis-standalone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/redis-standalone/README.md -------------------------------------------------------------------------------- /redis-standalone/manifests/redis-rc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/redis-standalone/manifests/redis-rc.yaml -------------------------------------------------------------------------------- /redis-standalone/manifests/redis-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/redis-standalone/manifests/redis-svc.yaml -------------------------------------------------------------------------------- /redmine/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/redmine/Chart.yaml -------------------------------------------------------------------------------- /redmine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/redmine/README.md -------------------------------------------------------------------------------- /redmine/manifests/redmine-rc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/redmine/manifests/redmine-rc.yaml -------------------------------------------------------------------------------- /redmine/manifests/redmine-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/redmine/manifests/redmine-svc.yaml -------------------------------------------------------------------------------- /riak/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/riak/Chart.yaml -------------------------------------------------------------------------------- /riak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/riak/README.md -------------------------------------------------------------------------------- /riak/manifests/riak-rc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/riak/manifests/riak-rc.yaml -------------------------------------------------------------------------------- /riak/manifests/riak-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/riak/manifests/riak-svc.yaml -------------------------------------------------------------------------------- /selenium/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/selenium/Chart.yaml -------------------------------------------------------------------------------- /selenium/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/selenium/README.md -------------------------------------------------------------------------------- /selenium/manifests/selenium-hub-rc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/selenium/manifests/selenium-hub-rc.yaml -------------------------------------------------------------------------------- /selenium/manifests/selenium-hub-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/selenium/manifests/selenium-hub-svc.yaml -------------------------------------------------------------------------------- /selenium/manifests/selenium-node-chrome-rc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/selenium/manifests/selenium-node-chrome-rc.yaml -------------------------------------------------------------------------------- /selenium/manifests/selenium-node-firefox-rc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/selenium/manifests/selenium-node-firefox-rc.yaml -------------------------------------------------------------------------------- /social/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/social/Chart.yaml -------------------------------------------------------------------------------- /social/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/social/README.md -------------------------------------------------------------------------------- /social/manifests/social.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/social/manifests/social.yaml -------------------------------------------------------------------------------- /sonarqube/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/sonarqube/Chart.yaml -------------------------------------------------------------------------------- /sonarqube/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/sonarqube/README.md -------------------------------------------------------------------------------- /sonarqube/manifests/sonarqube.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/sonarqube/manifests/sonarqube.yaml -------------------------------------------------------------------------------- /taiga/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/taiga/Chart.yaml -------------------------------------------------------------------------------- /taiga/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/taiga/README.md -------------------------------------------------------------------------------- /taiga/manifests/taiga.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/taiga/manifests/taiga.yaml -------------------------------------------------------------------------------- /templates/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/templates/Chart.yaml -------------------------------------------------------------------------------- /templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/templates/README.md -------------------------------------------------------------------------------- /templates/manifests/templates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabric8io/charts/HEAD/templates/manifests/templates.yaml --------------------------------------------------------------------------------