-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
083b9e3
commit 243ee69
Showing
5 changed files
with
79 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
|
||
|
||
# jx verify | ||
|
||
This chart verifies pods start and deletes any that fail to pull images. | ||
|
||
## Installing | ||
|
||
- Add jx3 helm charts repo | ||
|
||
```bash | ||
helm repo add jx3 https://storage.googleapis.com/jenkinsxio/charts | ||
|
||
helm repo update | ||
``` | ||
|
||
- Install (or upgrade) | ||
|
||
```bash | ||
# This will install jx-verify in the jx namespace (with a jx-verify release name) | ||
|
||
# Helm v3 | ||
helm upgrade --install jx-verify --namespace jx jx3/jx-verify | ||
``` | ||
|
||
Look [below](#values) for the list of all available options and their corresponding description. | ||
|
||
## Uninstalling | ||
|
||
To uninstall the chart, simply delete the release. | ||
|
||
```bash | ||
# This will uninstall jx-verify in the jx-verify namespace (assuming a jx-verify release name) | ||
|
||
# Helm v3 | ||
helm uninstall jx-verify --namespace jx | ||
``` | ||
|
||
## Version | ||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{{- if .Capabilities.APIVersions.Has "jenkins.io/v1/Release" }} | ||
apiVersion: jenkins.io/v1 | ||
kind: Release | ||
metadata: | ||
creationTimestamp: "2021-02-23T11:13:17Z" | ||
deletionTimestamp: null | ||
name: '{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}' | ||
spec: | ||
commits: | ||
- author: | ||
email: [email protected] | ||
name: James Strachan | ||
branch: master | ||
committer: | ||
email: [email protected] | ||
name: James Strachan | ||
message: | | ||
fix: work better with kapp | ||
sha: 478292813de11627433e939c5de5cdffa5fc1007 | ||
- author: | ||
email: [email protected] | ||
name: James Strachan | ||
branch: master | ||
committer: | ||
email: [email protected] | ||
name: James Strachan | ||
message: | | ||
fix: fix selector | ||
sha: 81913a523a66bd84c5adee8b4f150d64e5f61a73 | ||
gitHttpUrl: https://github.com/jenkins-x/jx-verify | ||
gitOwner: jenkins-x | ||
gitRepository: jx-verify | ||
name: '{{ .Chart.Name }}' | ||
version: 0.0.70 | ||
status: {} | ||
|
||
{{- end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters