Skip to content

Commit e8cf357

Browse files
chore: release 0.1.1
1 parent f137e48 commit e8cf357

File tree

4 files changed

+93
-24
lines changed

4 files changed

+93
-24
lines changed

Diff for: charts/lighthouse-webui-plugin/Chart.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: lighthouse-webui-plugin
33
description: Web UI for Lighthouse, to visualize events, jobs, and merge status/history.
44
icon: https://raw.githubusercontent.com/jenkins-x/jenkins-x-website/master/images/logo/jenkinsx-icon-color.svg
55
home: https://github.com/jenkins-x-plugins/lighthouse-webui-plugin
6-
version: 0.0.1
7-
appVersion: latest
6+
version: 0.1.1
7+
appVersion: 0.1.1
88
sources:
9-
- https://github.com/jenkins-x-plugins/lighthouse-webui-plugin
9+
- https://github.com/jenkins-x-plugins/lighthouse-webui-plugin

Diff for: charts/lighthouse-webui-plugin/README.md

+85
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
# lighthouse-webui-plugin
2+
3+
![Version: 0.0.1](https://img.shields.io/badge/Version-0.0.1-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square)
4+
5+
Web UI for Lighthouse, to visualize events, jobs, and merge status/history.
6+
7+
**Homepage:** <https://github.com/jenkins-x-plugins/lighthouse-webui-plugin>
8+
9+
## Source Code
10+
11+
* <https://github.com/jenkins-x-plugins/lighthouse-webui-plugin>
12+
13+
## Values
14+
15+
| Key | Type | Default | Description |
16+
|-----|------|---------|-------------|
17+
| config.eventTraceURLTemplate | string | `nil` | |
18+
| config.keeperEndpoint | string | `"http://lighthouse-keeper.jx"` | |
19+
| config.keeperSyncInterval | string | `"60s"` | |
20+
| config.logLevel | string | `"INFO"` | |
21+
| config.namespace | string | `"jx"` | |
22+
| config.resyncInterval | string | `"60s"` | |
23+
| config.store.gc.eventsMaxAge | int | `0` | |
24+
| config.store.gc.maxEventsToKeep | int | `0` | |
25+
| deployment.annotations | object | `{}` | |
26+
| deployment.labels | object | `{}` | |
27+
| deployment.revisionHistoryLimit | int | `2` | |
28+
| deployment.strategy.type | string | `"RollingUpdate"` | |
29+
| fullnameOverride | string | `nil` | |
30+
| image.pullPolicy | string | `nil` | |
31+
| image.repository | string | `"ghcr.io/jenkins-x/lighthouse-webui-plugin"` | |
32+
| image.tag | string | `nil` | |
33+
| ingress.annotations | object | `{}` | |
34+
| ingress.basicAuth.authData | string | `""` | |
35+
| ingress.basicAuth.enabled | bool | `false` | |
36+
| ingress.class | string | `"nginx"` | |
37+
| ingress.enabled | bool | `false` | |
38+
| ingress.hosts | list | `[]` | |
39+
| ingress.labels | object | `{}` | |
40+
| ingress.tls.enabled | bool | `false` | |
41+
| ingress.tls.secrets | object | `{}` | |
42+
| istio.apiVersion | string | `"networking.istio.io/v1beta1"` | |
43+
| istio.enabled | bool | `false` | |
44+
| istio.gateway | string | `"jx-gateway"` | |
45+
| jx.releaseCRD | bool | `true` | |
46+
| nameOverride | string | `nil` | |
47+
| persistence.accessModes[0] | string | `"ReadWriteOnce"` | |
48+
| persistence.annotations | object | `{}` | |
49+
| persistence.enabled | bool | `false` | |
50+
| persistence.labels | object | `{}` | |
51+
| persistence.size | string | `"1Gi"` | |
52+
| persistence.storageClassName | string | `nil` | |
53+
| pod.activeDeadlineSeconds | string | `nil` | |
54+
| pod.affinity | object | `{}` | |
55+
| pod.annotations | object | `{}` | |
56+
| pod.enableServiceLinks | bool | `false` | |
57+
| pod.env | object | `{}` | |
58+
| pod.envFrom | list | `[]` | |
59+
| pod.hostAliases | list | `[]` | |
60+
| pod.labels | object | `{}` | |
61+
| pod.nodeSelector | object | `{}` | |
62+
| pod.resources.limits.cpu | string | `"1"` | |
63+
| pod.resources.limits.memory | string | `"512M"` | |
64+
| pod.resources.requests.cpu | string | `"0.2"` | |
65+
| pod.resources.requests.memory | string | `"128M"` | |
66+
| pod.schedulerName | string | `nil` | |
67+
| pod.securityContext.fsGroup | int | `1000` | |
68+
| pod.terminationGracePeriodSeconds | string | `nil` | |
69+
| pod.tolerations | list | `[]` | |
70+
| role.rules[0].apiGroups[0] | string | `"lighthouse.jenkins.io"` | |
71+
| role.rules[0].resources[0] | string | `"lighthousejobs"` | |
72+
| role.rules[0].verbs[0] | string | `"list"` | |
73+
| role.rules[0].verbs[1] | string | `"watch"` | |
74+
| role.rules[0].verbs[2] | string | `"get"` | |
75+
| secrets.lighthouse.hmac.secretKeyRef.key | string | `"hmac"` | |
76+
| secrets.lighthouse.hmac.secretKeyRef.name | string | `"lighthouse-hmac-token"` | |
77+
| service.annotations | object | `{}` | |
78+
| service.labels | object | `{}` | |
79+
| service.loadBalancerIP | string | `nil` | |
80+
| service.port | int | `80` | |
81+
| service.type | string | `nil` | |
82+
| serviceAccount.annotations | object | `{}` | |
83+
84+
----------------------------------------------
85+
Autogenerated from chart metadata using [helm-docs v1.4.0](https://github.com/norwoodj/helm-docs/releases/v1.4.0)
Binary file not shown.

Diff for: charts/lighthouse-webui-plugin/values.yaml

+5-21
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
fullnameOverride:
44
nameOverride:
5-
65
config:
76
# https://GRAFANA_URL/explore?left=%5B%22now%22,%22now%22,%22Tempo%22,%7B%22query%22:%22{{.TraceID}}%22%7D%5D
87
eventTraceURLTemplate:
@@ -18,28 +17,24 @@ config:
1817
# max age of the events to keep in the store - if non-zero
1918
# this is a golang duration. Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h".
2019
eventsMaxAge: 0
21-
2220
secrets:
2321
lighthouse:
2422
hmac:
2523
secretKeyRef:
2624
name: lighthouse-hmac-token
2725
key: hmac
28-
2926
image:
3027
repository: ghcr.io/jenkins-x/lighthouse-webui-plugin
3128
# If no tag, fallback to the Chart's AppVersion
32-
tag:
29+
tag: 0.1.1
3330
pullPolicy:
34-
3531
deployment:
3632
revisionHistoryLimit: 2
3733
labels: {}
3834
annotations: {}
3935
strategy:
4036
# if you enable persistence, you should switch to `Recreate`
4137
type: RollingUpdate
42-
4338
pod:
4439
resources:
4540
requests:
@@ -62,33 +57,27 @@ pod:
6257
fsGroup: 1000
6358
env: {}
6459
envFrom: []
65-
6660
service:
6761
port: 80
6862
type:
6963
loadBalancerIP:
7064
labels: {}
7165
annotations: {}
72-
7366
ingress:
7467
enabled: false
7568
class: nginx
7669
labels: {}
7770
annotations: {}
78-
7971
# hosts:
8072
# - lighthouse.example.com
8173
# - lighthouse.foo.bar
8274
hosts: []
83-
8475
# enables basic auth secret to be created
8576
basicAuth:
8677
enabled: false
8778
authData: ""
88-
8979
tls:
9080
enabled: false
91-
9281
# secrets:
9382
# embedded:
9483
# b64encodedCertificate: e30k
@@ -100,12 +89,10 @@ ingress:
10089
# hosts:
10190
# - lighthouse.foo.bar
10291
secrets: {}
103-
10492
istio:
10593
enabled: false
10694
apiVersion: networking.istio.io/v1beta1
10795
gateway: jx-gateway
108-
10996
# persistence for the events
11097
persistence:
11198
enabled: false
@@ -114,19 +101,16 @@ persistence:
114101
- ReadWriteOnce
115102
storageClassName:
116103
labels: {}
117-
annotations: {}
118-
104+
annotations: {}
119105
serviceAccount:
120106
# allow additional annotations to be added to the ServiceAccount
121107
# such as for workload identity on clouds
122108
annotations: {}
123-
124109
role:
125110
rules:
126-
- apiGroups: ["lighthouse.jenkins.io"]
127-
resources: ["lighthousejobs"]
128-
verbs: ["list", "watch", "get"]
129-
111+
- apiGroups: ["lighthouse.jenkins.io"]
112+
resources: ["lighthousejobs"]
113+
verbs: ["list", "watch", "get"]
130114
jx:
131115
# whether to create a Release CRD when installing charts with Release CRDs included
132116
releaseCRD: true

0 commit comments

Comments
 (0)