s,kubernetes/charts,helm/charts,g (#4889)

Signed-off-by: Matthew Fisher <matt.fisher@microsoft.com>
pull/4894/head
Matthew Fisher 6 years ago committed by GitHub
parent 00109db20a
commit 9dce1ac88b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -5,7 +5,7 @@ high level, a chart repository is a location where packaged charts can be
stored and shared. stored and shared.
The official chart repository is maintained by the The official chart repository is maintained by the
[Kubernetes Charts](https://github.com/kubernetes/charts), and we welcome [Helm Charts](https://github.com/helm/charts), and we welcome
participation. But Helm also makes it easy to create and run your own chart participation. But Helm also makes it easy to create and run your own chart
repository. This guide explains how to do so. repository. This guide explains how to do so.
@ -99,7 +99,7 @@ entries:
home: https://k8s.io/helm home: https://k8s.io/helm
name: nginx name: nginx
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
urls: urls:
- https://technosophos.github.io/tscharts/nginx-1.1.0.tgz - https://technosophos.github.io/tscharts/nginx-1.1.0.tgz
version: 1.1.0 version: 1.1.0
@ -143,7 +143,7 @@ Congratulations, now you have an empty GCS bucket ready to serve charts!
You may upload your chart repository using the Google Cloud Storage command line You may upload your chart repository using the Google Cloud Storage command line
tool, or using the GCS web UI. This is the technique the official Kubernetes tool, or using the GCS web UI. This is the technique the official Kubernetes
Charts repository hosts its charts, so you may want to take a Charts repository hosts its charts, so you may want to take a
[peek at that project](https://github.com/kubernetes/charts) if you get stuck. [peek at that project](https://github.com/helm/charts) if you get stuck.
**Note:** A public GCS bucket can be accessed via simple HTTPS at this address **Note:** A public GCS bucket can be accessed via simple HTTPS at this address
`https://bucket-name.storage.googleapis.com/`. `https://bucket-name.storage.googleapis.com/`.

@ -31,5 +31,5 @@ In the previous section, we use `{{.Release.Name}}` to insert the name of a rele
The values are available to any top-level template. As we will see later, this does not necessarily mean that they will be available _everywhere_. The values are available to any top-level template. As we will see later, this does not necessarily mean that they will be available _everywhere_.
The built-in values always begin with a capital letter. This is in keeping with Go's naming convention. When you create your own names, you are free to use a convention that suits your team. Some teams, like the [Kubernetes Charts](https://github.com/kubernetes/charts) team, choose to use only initial lower case letters in order to distinguish local names from those built-in. In this guide, we follow that convention. The built-in values always begin with a capital letter. This is in keeping with Go's naming convention. When you create your own names, you are free to use a convention that suits your team. Some teams, like the [Helm Charts](https://github.com/helm/charts) team, choose to use only initial lower case letters in order to distinguish local names from those built-in. In this guide, we follow that convention.

@ -4,7 +4,7 @@ This guide is intended to give you, the chart developer, a strong understanding
But there are many things this guide has not covered when it comes to the practical day-to-day development of charts. Here are some useful pointers to other documentation that will help you as you create new charts: But there are many things this guide has not covered when it comes to the practical day-to-day development of charts. Here are some useful pointers to other documentation that will help you as you create new charts:
- The [Kubernetes Charts project](https://github.com/kubernetes/charts) is an indispensable source of charts. That project is also sets the standard for best practices in chart development. - The [Helm Charts project](https://github.com/helm/charts) is an indispensable source of charts. That project is also sets the standard for best practices in chart development.
- The Kubernetes [User's Guide](http://kubernetes.io/docs/user-guide/) provides detailed examples of the various resource kinds that you can use, from ConfigMaps and Secrets to DaemonSets and Deployments. - The Kubernetes [User's Guide](http://kubernetes.io/docs/user-guide/) provides detailed examples of the various resource kinds that you can use, from ConfigMaps and Secrets to DaemonSets and Deployments.
- The Helm [Charts Guide](../charts.md) explains the workflow of using charts. - The Helm [Charts Guide](../charts.md) explains the workflow of using charts.
- The Helm [Chart Hooks Guide](../charts_hooks.md) explains how to create lifecycle hooks. - The Helm [Chart Hooks Guide](../charts_hooks.md) explains how to create lifecycle hooks.

@ -114,7 +114,7 @@ to mark a chart as deprecated. If the **latest** version of a chart in the
repository is marked as deprecated, then the chart as a whole is considered to repository is marked as deprecated, then the chart as a whole is considered to
be deprecated. The chart name can later be reused by publishing a newer version be deprecated. The chart name can later be reused by publishing a newer version
that is not marked as deprecated. The workflow for deprecating charts, as that is not marked as deprecated. The workflow for deprecating charts, as
followed by the [kubernetes/charts](https://github.com/kubernetes/charts) followed by the [helm/charts](https://github.com/helm/charts)
project is: project is:
- Update chart's `Chart.yaml` to mark the chart as deprecated, bumping the - Update chart's `Chart.yaml` to mark the chart as deprecated, bumping the
version version
@ -560,8 +560,8 @@ It can use the following four template values (usually defined in a
All of these values are defined by the template author. Helm does not All of these values are defined by the template author. Helm does not
require or dictate parameters. require or dictate parameters.
To see many working charts, check out the [Kubernetes Charts To see many working charts, check out the [Helm Charts
project](https://github.com/kubernetes/charts) project](https://github.com/helm/charts)
### Predefined Values ### Predefined Values

@ -232,7 +232,7 @@ by convention, helper templates and partials are placed in a
## Complex Charts with Many Dependencies ## Complex Charts with Many Dependencies
Many of the charts in the [official charts repository](https://github.com/kubernetes/charts) Many of the charts in the [official charts repository](https://github.com/helm/charts)
are "building blocks" for creating more advanced applications. But charts may be are "building blocks" for creating more advanced applications. But charts may be
used to create instances of large-scale applications. In such cases, a single used to create instances of large-scale applications. In such cases, a single
umbrella chart may have multiple subcharts, each of which functions as a piece umbrella chart may have multiple subcharts, each of which functions as a piece

@ -261,9 +261,9 @@ in using the provenance system:
- Keybase also has fabulous documentation available - Keybase also has fabulous documentation available
- While we haven't tested it, Keybase's "secure website" feature could - While we haven't tested it, Keybase's "secure website" feature could
be used to serve Helm charts. be used to serve Helm charts.
- The [official Kubernetes Charts project](https://github.com/kubernetes/charts) - The [official Helm Charts project](https://github.com/helm/charts)
is trying to solve this problem for the official chart repository. is trying to solve this problem for the official chart repository.
- There is a long issue there [detailing the current thoughts](https://github.com/kubernetes/charts/issues/23). - There is a long issue there [detailing the current thoughts](https://github.com/helm/charts/issues/23).
- The basic idea is that an official "chart reviewer" signs charts with - The basic idea is that an official "chart reviewer" signs charts with
her or his key, and the resulting provenance file is then uploaded her or his key, and the resulting provenance file is then uploaded
to the chart repository. to the chart repository.

@ -224,7 +224,7 @@ The community keeps growing, and we'd love to see you there!
- `#helm-users` for questions and just to hang out - `#helm-users` for questions and just to hang out
- `#helm-dev` for discussing PRs, code, and bugs - `#helm-dev` for discussing PRs, code, and bugs
- Hang out at the Public Developer Call: Thursday, 9:30 Pacific via [Zoom](https://zoom.us/j/696660622) - Hang out at the Public Developer Call: Thursday, 9:30 Pacific via [Zoom](https://zoom.us/j/696660622)
- Test, debug, and contribute charts: [GitHub/kubernetes/charts](https://github.com/kubernetes/charts) - Test, debug, and contribute charts: [GitHub/helm/charts](https://github.com/helm/charts)
## Installation and Upgrading ## Installation and Upgrading

@ -518,8 +518,8 @@ $ helm install ./deis-workflow-0.1.0.tgz
Charts that are archived can be loaded into chart repositories. See the Charts that are archived can be loaded into chart repositories. See the
documentation for your chart repository server to learn how to upload. documentation for your chart repository server to learn how to upload.
Note: The `stable` repository is managed on the [Kubernetes Charts Note: The `stable` repository is managed on the [Helm Charts
GitHub repository](https://github.com/kubernetes/charts). That project GitHub repository](https://github.com/helm/charts). That project
accepts chart source code, and (after audit) packages those for you. accepts chart source code, and (after audit) packages those for you.
## Tiller, Namespaces and RBAC ## Tiller, Namespaces and RBAC

@ -8,7 +8,7 @@ entries:
keywords: [] keywords: []
maintainers: [] maintainers: []
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
urls: urls:
- http://username:password@example.com/foo-1.2.3.tgz - http://username:password@example.com/foo-1.2.3.tgz
version: 1.2.3 version: 1.2.3

@ -8,7 +8,7 @@ entries:
keywords: [] keywords: []
maintainers: [] maintainers: []
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
urls: urls:
- https://example.com/foo-1.2.3.tgz - https://example.com/foo-1.2.3.tgz
version: 1.2.3 version: 1.2.3

@ -36,7 +36,7 @@ entries:
keywords: [] keywords: []
maintainers: [] maintainers: []
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
urls: urls:
- http://example.com/foo-1.2.3.tgz - http://example.com/foo-1.2.3.tgz
version: 1.2.3 version: 1.2.3

@ -8,7 +8,7 @@ entries:
keywords: [] keywords: []
maintainers: [] maintainers: []
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
urls: urls:
- charts/foo-1.2.3.tgz - charts/foo-1.2.3.tgz
version: 1.2.3 version: 1.2.3
@ -21,7 +21,7 @@ entries:
keywords: [] keywords: []
maintainers: [] maintainers: []
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
urls: urls:
- bar-1.2.3.tgz - bar-1.2.3.tgz
version: 1.2.3 version: 1.2.3

@ -8,7 +8,7 @@ entries:
keywords: [] keywords: []
maintainers: [] maintainers: []
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
urls: urls:
- charts/foo-1.2.3.tgz - charts/foo-1.2.3.tgz
version: 1.2.3 version: 1.2.3
@ -21,7 +21,7 @@ entries:
keywords: [] keywords: []
maintainers: [] maintainers: []
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
urls: urls:
- bar-1.2.3.tgz - bar-1.2.3.tgz
version: 1.2.3 version: 1.2.3

@ -214,7 +214,7 @@ entries:
name: concourse name: concourse
sources: sources:
- https://github.com/concourse/bin - https://github.com/concourse/bin
- https://github.com/kubernetes/charts - https://github.com/helm/charts
urls: urls:
- https://kubernetes-charts.storage.googleapis.com/concourse-0.1.3.tgz - https://kubernetes-charts.storage.googleapis.com/concourse-0.1.3.tgz
version: 0.1.3 version: 0.1.3
@ -234,7 +234,7 @@ entries:
name: concourse name: concourse
sources: sources:
- https://github.com/concourse/bin - https://github.com/concourse/bin
- https://github.com/kubernetes/charts - https://github.com/helm/charts
urls: urls:
- https://kubernetes-charts.storage.googleapis.com/concourse-0.1.2.tgz - https://kubernetes-charts.storage.googleapis.com/concourse-0.1.2.tgz
version: 0.1.2 version: 0.1.2
@ -254,7 +254,7 @@ entries:
name: concourse name: concourse
sources: sources:
- https://github.com/concourse/bin - https://github.com/concourse/bin
- https://github.com/kubernetes/charts - https://github.com/helm/charts
urls: urls:
- https://kubernetes-charts.storage.googleapis.com/concourse-0.1.1.tgz - https://kubernetes-charts.storage.googleapis.com/concourse-0.1.1.tgz
version: 0.1.1 version: 0.1.1
@ -273,7 +273,7 @@ entries:
name: concourse name: concourse
sources: sources:
- https://github.com/concourse/bin - https://github.com/concourse/bin
- https://github.com/kubernetes/charts - https://github.com/helm/charts
urls: urls:
- https://kubernetes-charts.storage.googleapis.com/concourse-0.1.0.tgz - https://kubernetes-charts.storage.googleapis.com/concourse-0.1.0.tgz
version: 0.1.0 version: 0.1.0
@ -3985,7 +3985,7 @@ entries:
name: Vic Iglesias name: Vic Iglesias
name: mysql name: mysql
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
- https://github.com/docker-library/mysql - https://github.com/docker-library/mysql
urls: urls:
- https://kubernetes-charts.storage.googleapis.com/mysql-0.2.6.tgz - https://kubernetes-charts.storage.googleapis.com/mysql-0.2.6.tgz
@ -4006,7 +4006,7 @@ entries:
name: Vic Iglesias name: Vic Iglesias
name: mysql name: mysql
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
- https://github.com/docker-library/mysql - https://github.com/docker-library/mysql
urls: urls:
- https://kubernetes-charts.storage.googleapis.com/mysql-0.2.5.tgz - https://kubernetes-charts.storage.googleapis.com/mysql-0.2.5.tgz
@ -4025,7 +4025,7 @@ entries:
name: Vic Iglesias name: Vic Iglesias
name: mysql name: mysql
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
- https://github.com/docker-library/mysql - https://github.com/docker-library/mysql
urls: urls:
- https://kubernetes-charts.storage.googleapis.com/mysql-0.2.4.tgz - https://kubernetes-charts.storage.googleapis.com/mysql-0.2.4.tgz
@ -4044,7 +4044,7 @@ entries:
name: Vic Iglesias name: Vic Iglesias
name: mysql name: mysql
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
- https://github.com/docker-library/mysql - https://github.com/docker-library/mysql
urls: urls:
- https://kubernetes-charts.storage.googleapis.com/mysql-0.2.3.tgz - https://kubernetes-charts.storage.googleapis.com/mysql-0.2.3.tgz
@ -4063,7 +4063,7 @@ entries:
name: Vic Iglesias name: Vic Iglesias
name: mysql name: mysql
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
- https://github.com/docker-library/mysql - https://github.com/docker-library/mysql
urls: urls:
- https://kubernetes-charts.storage.googleapis.com/mysql-0.2.2.tgz - https://kubernetes-charts.storage.googleapis.com/mysql-0.2.2.tgz
@ -4082,7 +4082,7 @@ entries:
name: Vic Iglesias name: Vic Iglesias
name: mysql name: mysql
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
- https://github.com/docker-library/mysql - https://github.com/docker-library/mysql
urls: urls:
- https://kubernetes-charts.storage.googleapis.com/mysql-0.2.1.tgz - https://kubernetes-charts.storage.googleapis.com/mysql-0.2.1.tgz
@ -4101,7 +4101,7 @@ entries:
name: Vic Iglesias name: Vic Iglesias
name: mysql name: mysql
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
- https://github.com/docker-library/mysql - https://github.com/docker-library/mysql
urls: urls:
- https://kubernetes-charts.storage.googleapis.com/mysql-0.2.0.tgz - https://kubernetes-charts.storage.googleapis.com/mysql-0.2.0.tgz
@ -4120,7 +4120,7 @@ entries:
name: Vic Iglesias name: Vic Iglesias
name: mysql name: mysql
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
- https://github.com/docker-library/mysql - https://github.com/docker-library/mysql
urls: urls:
- https://kubernetes-charts.storage.googleapis.com/mysql-0.1.2.tgz - https://kubernetes-charts.storage.googleapis.com/mysql-0.1.2.tgz
@ -4139,7 +4139,7 @@ entries:
name: Vic Iglesias name: Vic Iglesias
name: mysql name: mysql
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
- https://github.com/docker-library/mysql - https://github.com/docker-library/mysql
urls: urls:
- https://kubernetes-charts.storage.googleapis.com/mysql-0.1.1.tgz - https://kubernetes-charts.storage.googleapis.com/mysql-0.1.1.tgz
@ -4158,7 +4158,7 @@ entries:
name: Vic Iglesias name: Vic Iglesias
name: mysql name: mysql
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
- https://github.com/docker-library/mysql - https://github.com/docker-library/mysql
urls: urls:
- https://kubernetes-charts.storage.googleapis.com/mysql-0.1.0.tgz - https://kubernetes-charts.storage.googleapis.com/mysql-0.1.0.tgz
@ -5034,7 +5034,7 @@ entries:
name: Patrick Galbraith name: Patrick Galbraith
name: percona name: percona
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
- https://github.com/docker-library/percona - https://github.com/docker-library/percona
urls: urls:
- https://kubernetes-charts.storage.googleapis.com/percona-0.1.0.tgz - https://kubernetes-charts.storage.googleapis.com/percona-0.1.0.tgz
@ -5404,7 +5404,7 @@ entries:
- name: databus23 - name: databus23
name: postgresql name: postgresql
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
- https://github.com/docker-library/postgres - https://github.com/docker-library/postgres
urls: urls:
- https://kubernetes-charts.storage.googleapis.com/postgresql-0.6.0.tgz - https://kubernetes-charts.storage.googleapis.com/postgresql-0.6.0.tgz
@ -5426,7 +5426,7 @@ entries:
- name: databus23 - name: databus23
name: postgresql name: postgresql
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
- https://github.com/docker-library/postgres - https://github.com/docker-library/postgres
urls: urls:
- https://kubernetes-charts.storage.googleapis.com/postgresql-0.5.1.tgz - https://kubernetes-charts.storage.googleapis.com/postgresql-0.5.1.tgz
@ -5448,7 +5448,7 @@ entries:
- name: databus23 - name: databus23
name: postgresql name: postgresql
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
- https://github.com/docker-library/postgres - https://github.com/docker-library/postgres
urls: urls:
- https://kubernetes-charts.storage.googleapis.com/postgresql-0.5.0.tgz - https://kubernetes-charts.storage.googleapis.com/postgresql-0.5.0.tgz
@ -5470,7 +5470,7 @@ entries:
- name: databus23 - name: databus23
name: postgresql name: postgresql
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
- https://github.com/docker-library/postgres - https://github.com/docker-library/postgres
urls: urls:
- https://kubernetes-charts.storage.googleapis.com/postgresql-0.4.0.tgz - https://kubernetes-charts.storage.googleapis.com/postgresql-0.4.0.tgz
@ -5492,7 +5492,7 @@ entries:
- name: databus23 - name: databus23
name: postgresql name: postgresql
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
- https://github.com/docker-library/postgres - https://github.com/docker-library/postgres
urls: urls:
- https://kubernetes-charts.storage.googleapis.com/postgresql-0.3.4.tgz - https://kubernetes-charts.storage.googleapis.com/postgresql-0.3.4.tgz
@ -5512,7 +5512,7 @@ entries:
- name: databus23 - name: databus23
name: postgresql name: postgresql
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
- https://github.com/docker-library/postgres - https://github.com/docker-library/postgres
urls: urls:
- https://kubernetes-charts.storage.googleapis.com/postgresql-0.3.3.tgz - https://kubernetes-charts.storage.googleapis.com/postgresql-0.3.3.tgz
@ -5532,7 +5532,7 @@ entries:
- name: databus23 - name: databus23
name: postgresql name: postgresql
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
- https://github.com/docker-library/postgres - https://github.com/docker-library/postgres
urls: urls:
- https://kubernetes-charts.storage.googleapis.com/postgresql-0.3.2.tgz - https://kubernetes-charts.storage.googleapis.com/postgresql-0.3.2.tgz
@ -5552,7 +5552,7 @@ entries:
- name: databus23 - name: databus23
name: postgresql name: postgresql
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
- https://github.com/docker-library/postgres - https://github.com/docker-library/postgres
urls: urls:
- https://kubernetes-charts.storage.googleapis.com/postgresql-0.3.1.tgz - https://kubernetes-charts.storage.googleapis.com/postgresql-0.3.1.tgz
@ -5572,7 +5572,7 @@ entries:
- name: databus23 - name: databus23
name: postgresql name: postgresql
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
- https://github.com/docker-library/postgres - https://github.com/docker-library/postgres
urls: urls:
- https://kubernetes-charts.storage.googleapis.com/postgresql-0.3.0.tgz - https://kubernetes-charts.storage.googleapis.com/postgresql-0.3.0.tgz
@ -5591,7 +5591,7 @@ entries:
- name: swordbeta - name: swordbeta
name: postgresql name: postgresql
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
- https://github.com/docker-library/postgres - https://github.com/docker-library/postgres
urls: urls:
- https://kubernetes-charts.storage.googleapis.com/postgresql-0.2.2.tgz - https://kubernetes-charts.storage.googleapis.com/postgresql-0.2.2.tgz
@ -5610,7 +5610,7 @@ entries:
- name: swordbeta - name: swordbeta
name: postgresql name: postgresql
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
- https://github.com/docker-library/postgres - https://github.com/docker-library/postgres
urls: urls:
- https://kubernetes-charts.storage.googleapis.com/postgresql-0.2.1.tgz - https://kubernetes-charts.storage.googleapis.com/postgresql-0.2.1.tgz
@ -5629,7 +5629,7 @@ entries:
- name: swordbeta - name: swordbeta
name: postgresql name: postgresql
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
- https://github.com/docker-library/postgres - https://github.com/docker-library/postgres
urls: urls:
- https://kubernetes-charts.storage.googleapis.com/postgresql-0.2.0.tgz - https://kubernetes-charts.storage.googleapis.com/postgresql-0.2.0.tgz
@ -5648,7 +5648,7 @@ entries:
- name: swordbeta - name: swordbeta
name: postgresql name: postgresql
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
- https://github.com/docker-library/postgres - https://github.com/docker-library/postgres
urls: urls:
- https://kubernetes-charts.storage.googleapis.com/postgresql-0.1.1.tgz - https://kubernetes-charts.storage.googleapis.com/postgresql-0.1.1.tgz
@ -5667,7 +5667,7 @@ entries:
- name: swordbeta - name: swordbeta
name: postgresql name: postgresql
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
- https://github.com/docker-library/postgres - https://github.com/docker-library/postgres
urls: urls:
- https://kubernetes-charts.storage.googleapis.com/postgresql-0.1.0.tgz - https://kubernetes-charts.storage.googleapis.com/postgresql-0.1.0.tgz
@ -6720,7 +6720,7 @@ entries:
sources: sources:
- https://bitbucket.org/sapho/ops-docker-tomcat/src - https://bitbucket.org/sapho/ops-docker-tomcat/src
- https://hub.docker.com/r/sapho/ops-docker-tomcat - https://hub.docker.com/r/sapho/ops-docker-tomcat
- https://github.com/kubernetes/charts/tree/master/stable/mysql - https://github.com/helm/charts/tree/master/stable/mysql
urls: urls:
- https://kubernetes-charts.storage.googleapis.com/sapho-0.1.5.tgz - https://kubernetes-charts.storage.googleapis.com/sapho-0.1.5.tgz
version: 0.1.5 version: 0.1.5
@ -6738,7 +6738,7 @@ entries:
sources: sources:
- https://bitbucket.org/sapho/ops-docker-tomcat/src - https://bitbucket.org/sapho/ops-docker-tomcat/src
- https://hub.docker.com/r/sapho/ops-docker-tomcat - https://hub.docker.com/r/sapho/ops-docker-tomcat
- https://github.com/kubernetes/charts/tree/master/stable/mysql - https://github.com/helm/charts/tree/master/stable/mysql
urls: urls:
- https://kubernetes-charts.storage.googleapis.com/sapho-0.1.4.tgz - https://kubernetes-charts.storage.googleapis.com/sapho-0.1.4.tgz
version: 0.1.4 version: 0.1.4
@ -6756,7 +6756,7 @@ entries:
sources: sources:
- https://bitbucket.org/sapho/ops-docker-tomcat/src - https://bitbucket.org/sapho/ops-docker-tomcat/src
- https://hub.docker.com/r/sapho/ops-docker-tomcat - https://hub.docker.com/r/sapho/ops-docker-tomcat
- https://github.com/kubernetes/charts/tree/master/stable/mysql - https://github.com/helm/charts/tree/master/stable/mysql
urls: urls:
- https://kubernetes-charts.storage.googleapis.com/sapho-0.1.3.tgz - https://kubernetes-charts.storage.googleapis.com/sapho-0.1.3.tgz
version: 0.1.3 version: 0.1.3
@ -6794,7 +6794,7 @@ entries:
name: Shane Starcher name: Shane Starcher
name: sensu name: sensu
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
- https://github.com/sstarcher/docker-sensu - https://github.com/sstarcher/docker-sensu
- https://github.com/sensu/sensu - https://github.com/sensu/sensu
urls: urls:
@ -6815,7 +6815,7 @@ entries:
name: Shane Starcher name: Shane Starcher
name: sensu name: sensu
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
- https://github.com/sstarcher/docker-sensu - https://github.com/sstarcher/docker-sensu
- https://github.com/sensu/sensu - https://github.com/sensu/sensu
urls: urls:
@ -6836,7 +6836,7 @@ entries:
name: Shane Starcher name: Shane Starcher
name: sensu name: sensu
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
- https://github.com/sstarcher/docker-sensu - https://github.com/sstarcher/docker-sensu
- https://github.com/sensu/sensu - https://github.com/sensu/sensu
urls: urls:
@ -7506,7 +7506,7 @@ entries:
name: Shane Starcher name: Shane Starcher
name: uchiwa name: uchiwa
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
- https://github.com/sstarcher/docker-uchiwa - https://github.com/sstarcher/docker-uchiwa
- https://github.com/sensu/uchiwa - https://github.com/sensu/uchiwa
urls: urls:
@ -7528,7 +7528,7 @@ entries:
name: Shane Starcher name: Shane Starcher
name: uchiwa name: uchiwa
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
- https://github.com/sstarcher/docker-uchiwa - https://github.com/sstarcher/docker-uchiwa
- https://github.com/sensu/uchiwa - https://github.com/sensu/uchiwa
urls: urls:
@ -7550,7 +7550,7 @@ entries:
name: Shane Starcher name: Shane Starcher
name: uchiwa name: uchiwa
sources: sources:
- https://github.com/kubernetes/charts - https://github.com/helm/charts
- https://github.com/sstarcher/docker-uchiwa - https://github.com/sstarcher/docker-uchiwa
- https://github.com/sensu/uchiwa - https://github.com/sensu/uchiwa
urls: urls:

Loading…
Cancel
Save