Skip to content

Commit

Permalink
Change Helm repo name from jenkinsci to jenkins (#68)
Browse files Browse the repository at this point in the history
Signed-off-by: Felipe Santos <[email protected]>
  • Loading branch information
felipecrs authored Sep 29, 2020
1 parent 783d670 commit b1b23e8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ key: value
```
```
helm install my-release jenkinsci/jenkins --version version --values values.yaml
helm install my-release jenkins/jenkins --version version --values values.yaml
```
-->
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ Please refer to Helm's [documentation](https://helm.sh/docs/) to get started.
Once Helm is set up properly, add the repo as follows:

```console
helm repo add jenkinsci https://charts.jenkins.io
helm repo add jenkins https://charts.jenkins.io
```

You can then run `helm search repo jenkinsci` to see the charts.
You can then run `helm search repo jenkins` to see the charts.

<!-- Keep full URL links to repo files because this README syncs from main to gh-pages. -->
Chart documentation is available in [jenkins directory](https://github.com/jenkinsci/helm-charts/blob/main/charts/jenkins/README.md).
Expand Down
2 changes: 1 addition & 1 deletion charts/jenkins/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
name: jenkins
home: https://jenkins.io/
version: 2.7.0
version: 2.7.1
appVersion: lts
description: Open source continuous integration server. It supports multiple SCM tools
including CVS, Subversion and Git. It can execute Apache Ant and Apache Maven-based
Expand Down
12 changes: 6 additions & 6 deletions charts/jenkins/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Inspired by the awesome work of [Carlos Sanchez](https://github.com/carlossg).
## Get Repo Info

```console
helm repo add jenkinsci https://charts.jenkins.io
helm repo add jenkins https://charts.jenkins.io
helm repo update
```

Expand All @@ -19,10 +19,10 @@ _See [helm repo](https://helm.sh/docs/helm/helm_repo/) for command documentation

```console
# Helm 3
$ helm install [RELEASE_NAME] jenkinsci/jenkins [flags]
$ helm install [RELEASE_NAME] jenkins/jenkins [flags]

# Helm 2
$ helm install --name [RELEASE_NAME] jenkinsci/jenkins [flags]
$ helm install --name [RELEASE_NAME] jenkins/jenkins [flags]
```

_See [configuration](#configuration) below._
Expand All @@ -47,7 +47,7 @@ _See [helm uninstall](https://helm.sh/docs/helm/helm_uninstall/) for command doc

```console
# Helm 3 or 2
$ helm upgrade [RELEASE_NAME] jenkinsci/jenkins [flags]
$ helm upgrade [RELEASE_NAME] jenkins/jenkins [flags]
```

_See [helm upgrade](https://helm.sh/docs/helm/helm_upgrade/) for command documentation._
Expand All @@ -62,10 +62,10 @@ See [Customizing the Chart Before Installing](https://helm.sh/docs/intro/using_h

```console
# Helm 3
$ helm show values jenkinsci/jenkins
$ helm show values jenkins/jenkins

# Helm 2
$ helm inspect values jenkinsci/jenkins
$ helm inspect values jenkins/jenkins
```

For a summary of all configurable options, see [VALUES_SUMMARY.md](./VALUES_SUMMARY.md)
Expand Down

0 comments on commit b1b23e8

Please sign in to comment.