Skip to content

Commit

Permalink
chore: release 0.0.69
Browse files Browse the repository at this point in the history
  • Loading branch information
pow-devops2020 committed Feb 23, 2021
1 parent 54a4e82 commit b7aa45d
Show file tree
Hide file tree
Showing 5 changed files with 79 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/jx-verify/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ description: |
This chart deletes any pods which can't load their images to work around timing issues with Workload Identity and preview environments
icon: https://raw.githubusercontent.com/jenkins-x/jenkins-x-website/master/images/logo/jenkinsx-icon-color.svg
name: jx-verify
version: 0.1.0-SNAPSHOT
version: 0.0.69
home: https://github.com/jenkins-x/jx-verify

40 changes: 40 additions & 0 deletions charts/jx-verify/README.md
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 added charts/jx-verify/jx-verify-0.0.69.tgz
Binary file not shown.
37 changes: 37 additions & 0 deletions charts/jx-verify/templates/release.yaml
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-23T10:17:50Z"
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: fix selector
sha: 81913a523a66bd84c5adee8b4f150d64e5f61a73
- author:
email: [email protected]
name: James Strachan
branch: master
committer:
email: [email protected]
name: James Strachan
message: |
chore: fix selector
sha: e56f022ca2e16a5ac316c0ad7698658c2cc3cc25
gitHttpUrl: https://github.com/jenkins-x/jx-verify
gitOwner: jenkins-x
gitRepository: jx-verify
name: '{{ .Chart.Name }}'
version: 0.0.69
status: {}

{{- end }}
2 changes: 1 addition & 1 deletion charts/jx-verify/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ image:
repository: gcr.io/jenkinsxio/jx-verify

# image.tag -- Docker images tag
tag: 0.0.52
tag: 0.0.69

# image.pullPolicy -- Image pull policy
pullPolicy: IfNotPresent
Expand Down

0 comments on commit b7aa45d

Please sign in to comment.