Skip to content

Commit 02be5f9

Browse files
chore: release 0.0.1
1 parent 30bd4f5 commit 02be5f9

File tree

4 files changed

+63
-34
lines changed

4 files changed

+63
-34
lines changed

charts/jx-charter/Chart.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@ 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.1
77
home: https://github.com/jenkins-x-plugins/jx-charter
8-

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.06 KB
Binary file not shown.

charts/jx-charter/values.yaml

Lines changed: 22 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,51 @@
11
image:
22
# image.parentRepository -- Docker registry to pull images from
33
parentRepository: ghcr.io/jenkins-x
4-
5-
repository: ghcr.io/jenkins-x-plugins/jx-charter
6-
4+
repository: ghcr.io/jenkinsxio/jx-charter
75
# image.tag -- Docker images tag
8-
tag: 0.0.167
9-
6+
tag: 0.0.1
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:
35-
- jx-charter-run
26+
- jx-charter-run
3627
args: []
37-
env:
28+
env:
3829
GIT_AUTHOR_NAME: "jenkins-x-bot"
3930
GIT_AUTHOR_EMAIL: "jenkins-x@googlegroups.com"
40-
4131
clusterrole:
4232
enabled: true
4333
rules:
44-
- apiGroups:
45-
- ""
46-
resources:
47-
- secrets
48-
verbs:
49-
- get
50-
- list
51-
- watch
52-
- apiGroups:
53-
- chart.jenkins.io.dev
54-
resources:
55-
- charts
56-
verbs:
57-
- get
58-
- list
59-
- watch
60-
- create
61-
- update
34+
- apiGroups:
35+
- ""
36+
resources:
37+
- secrets
38+
verbs:
39+
- get
40+
- list
41+
- watch
42+
- apiGroups:
43+
- chart.jenkins.io.dev
44+
resources:
45+
- charts
46+
verbs:
47+
- get
48+
- list
49+
- watch
50+
- create
51+
- update

0 commit comments

Comments
 (0)