Skip to content

Commit c6ba4a9

Browse files
chore: release 0.0.35
1 parent c1c4ec9 commit c6ba4a9

File tree

4 files changed

+46
-15
lines changed

4 files changed

+46
-15
lines changed

charts/jx-charter/Chart.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ description: |
33
This chart installs the jx-charter CRD and the optional controller
44
icon: https://raw.githubusercontent.com/jenkins-x/jenkins-x-website/master/images/logo/jenkinsx-icon-color.svg
55
name: jx-charter
6-
version: 0.1.0-SNAPSHOT
6+
version: 0.0.35
77
home: https://github.com/jenkins-x-plugins/jx-charter
8-
8+
appVersion: 0.0.35
9+
sources:
10+
- https://github.com/jenkins-x-plugins/jx-charter.git

charts/jx-charter/README.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
2+
3+
# jx charter
4+
5+
This chart bootstraps installation of Jenkins X previews.
6+
7+
## Installing
8+
9+
- Add jx3 helm charts repo
10+
11+
```bash
12+
helm repo add jx3 https://storage.googleapis.com/jenkinsxio/charts
13+
14+
helm repo update
15+
```
16+
17+
- Install (or upgrade)
18+
19+
```bash
20+
# This will install jx-charter in the jx namespace (with a jx-charter release name)
21+
22+
# Helm v3
23+
helm upgrade --install jx-charter --namespace jx jx3/jx-charter
24+
```
25+
26+
Look [below](#values) for the list of all available options and their corresponding description.
27+
28+
## Uninstalling
29+
30+
To uninstall the chart, simply delete the release.
31+
32+
```bash
33+
# This will uninstall jx-charter in the jx-charter namespace (assuming a jx-charter release name)
34+
35+
# Helm v3
36+
helm uninstall jx-charter --namespace jx
37+
```
38+
39+
## Version
40+
3 KB
Binary file not shown.

charts/jx-charter/values.yaml

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,34 @@
11
image:
22
# image.parentRepository -- Docker registry to pull images from
33
parentRepository: gcr.io/jenkinsxio
4-
5-
repository: gcr.io/jenkinsxio/jx-charter
6-
4+
repository: ghcr.io/jenkins-x/jx-charter
75
# image.tag -- Docker images tag
8-
tag: 0.0.167
9-
6+
tag: 0.0.35
107
# image.pullPolicy -- Image pull policy
118
pullPolicy: IfNotPresent
12-
139
serviceaccount:
1410
customName: jx-charter
15-
1611
internalPort: 8080
17-
1812
probe:
1913
readypath: "/readyz"
2014
livepath: "/healthz"
21-
2215
resources:
2316
# resources.limits -- Resource limits applied to the controller pods
2417
limits:
2518
cpu: 100m
2619
memory: 512Mi
27-
2820
# resources.requests -- Resource requests applied to the controller pods
2921
requests:
3022
cpu: 80m
3123
memory: 128Mi
32-
3324
restartPolicy: Always
3425
command:
3526
- jx-charter
3627
args:
3728
- run
38-
3929
env:
4030
GIT_AUTHOR_NAME: "jenkins-x-bot"
4131
GIT_AUTHOR_EMAIL: "jenkins-x@googlegroups.com"
42-
4332
clusterrole:
4433
enabled: true
4534
rules:

0 commit comments

Comments
 (0)