File tree Expand file tree Collapse file tree 4 files changed +62
-34
lines changed
Expand file tree Collapse file tree 4 files changed +62
-34
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,5 @@ description: |
33 This chart installs the jx-charter CRD and the optional controller
44icon : https://raw.githubusercontent.com/jenkins-x/jenkins-x-website/master/images/logo/jenkinsx-icon-color.svg
55name : jx-charter
6- version : 0.1.0-SNAPSHOT
6+ version : 0.0.7
77home : https://github.com/jenkins-x-plugins/jx-charter
8-
Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change 11image :
22 # image.parentRepository -- Docker registry to pull images from
33 parentRepository : gcr.io/jenkinsxio
4-
54 repository : gcr.io/jenkinsxio/jx-charter
6-
75 # image.tag -- Docker images tag
8- tag : 0.0.167
9-
6+ tag : 0.0.7
107 # image.pullPolicy -- Image pull policy
118 pullPolicy : IfNotPresent
12-
139serviceaccount :
1410 customName : jx-charter
15-
1611internalPort : 8080
17-
1812probe :
1913 readypath : " /readyz"
2014 livepath : " /healthz"
21-
2215resources :
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-
3324restartPolicy : Always
3425command :
35- - jx-charter
26+ - jx-charter
3627args :
37- - run
38-
28+ - run
3929env :
4030 GIT_AUTHOR_NAME : " jenkins-x-bot"
4131 GIT_AUTHOR_EMAIL : " jenkins-x@googlegroups.com"
42-
4332clusterrole :
4433 enabled : true
4534 rules :
46- - apiGroups :
47- - " "
48- resources :
49- - secrets
50- verbs :
51- - get
52- - list
53- - watch
54- - apiGroups :
55- - chart.jenkins.io.dev
56- resources :
57- - charts
58- verbs :
59- - get
60- - list
61- - watch
62- - create
63- - update
35+ - apiGroups :
36+ - " "
37+ resources :
38+ - secrets
39+ verbs :
40+ - get
41+ - list
42+ - watch
43+ - apiGroups :
44+ - chart.jenkins.io.dev
45+ resources :
46+ - charts
47+ verbs :
48+ - get
49+ - list
50+ - watch
51+ - create
52+ - update
You can’t perform that action at this time.
0 commit comments