Skip to content

Commit f8b35ee

Browse files
chore: release 0.0.1
1 parent f204c64 commit f8b35ee

File tree

4 files changed

+82
-20
lines changed

4 files changed

+82
-20
lines changed

charts/lighthouse-webui-plugin/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ description: Web UI for Lighthouse, to visualize events, jobs, and merge status/
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
66
version: 0.0.1
7-
appVersion: latest
7+
appVersion: 0.0.1
88
sources:
9-
- https://github.com/jenkins-x-plugins/lighthouse-webui-plugin
9+
- https://github.com/jenkins-x-plugins/lighthouse-webui-plugin
Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
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+
| deployment.annotations | object | `{}` | |
24+
| deployment.labels | object | `{}` | |
25+
| deployment.replicas | int | `1` | |
26+
| deployment.revisionHistoryLimit | int | `2` | |
27+
| fullnameOverride | string | `nil` | |
28+
| image.pullPolicy | string | `nil` | |
29+
| image.repository | string | `"gcr.io/jenkinsxio/lighthouse-webui-plugin"` | |
30+
| image.tag | string | `nil` | |
31+
| ingress.annotations | object | `{}` | |
32+
| ingress.basicAuth.authData | string | `""` | |
33+
| ingress.basicAuth.enabled | bool | `false` | |
34+
| ingress.class | string | `"nginx"` | |
35+
| ingress.enabled | bool | `false` | |
36+
| ingress.hosts | list | `[]` | |
37+
| ingress.labels | object | `{}` | |
38+
| ingress.tls.enabled | bool | `false` | |
39+
| ingress.tls.secrets | object | `{}` | |
40+
| istio.apiVersion | string | `"networking.istio.io/v1beta1"` | |
41+
| istio.enabled | bool | `false` | |
42+
| istio.gateway | string | `"jx-gateway"` | |
43+
| jx.releaseCRD | bool | `true` | |
44+
| nameOverride | string | `nil` | |
45+
| pod.activeDeadlineSeconds | string | `nil` | |
46+
| pod.affinity | object | `{}` | |
47+
| pod.annotations | object | `{}` | |
48+
| pod.enableServiceLinks | bool | `false` | |
49+
| pod.env | object | `{}` | |
50+
| pod.envFrom | list | `[]` | |
51+
| pod.hostAliases | list | `[]` | |
52+
| pod.labels | object | `{}` | |
53+
| pod.nodeSelector | object | `{}` | |
54+
| pod.resources.limits.cpu | string | `"1"` | |
55+
| pod.resources.limits.memory | string | `"512M"` | |
56+
| pod.resources.requests.cpu | string | `"0.2"` | |
57+
| pod.resources.requests.memory | string | `"128M"` | |
58+
| pod.schedulerName | string | `nil` | |
59+
| pod.securityContext.fsGroup | int | `1000` | |
60+
| pod.terminationGracePeriodSeconds | string | `nil` | |
61+
| pod.tolerations | list | `[]` | |
62+
| role.rules[0].apiGroups[0] | string | `"lighthouse.jenkins.io"` | |
63+
| role.rules[0].resources[0] | string | `"lighthousejobs"` | |
64+
| role.rules[0].verbs[0] | string | `"list"` | |
65+
| role.rules[0].verbs[1] | string | `"watch"` | |
66+
| role.rules[0].verbs[2] | string | `"get"` | |
67+
| service.annotations | object | `{}` | |
68+
| service.labels | object | `{}` | |
69+
| service.loadBalancerIP | string | `nil` | |
70+
| service.port | int | `80` | |
71+
| service.type | string | `nil` | |
72+
| serviceAccount.annotations | object | `{}` | |
73+
74+
----------------------------------------------
75+
Autogenerated from chart metadata using [helm-docs v1.4.0](https://github.com/norwoodj/helm-docs/releases/v1.4.0)
4.18 KB
Binary file not shown.

charts/lighthouse-webui-plugin/values.yaml

Lines changed: 5 additions & 18 deletions
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:
@@ -11,19 +10,16 @@ config:
1110
namespace: jx
1211
resyncInterval: 60s
1312
logLevel: INFO
14-
1513
image:
16-
repository: gcr.io/jenkinsxio/lighthouse-webui-plugin
14+
repository: ghcr.io/jenkins-x/lighthouse-webui-plugin
1715
# If no tag, fallback to the Chart's AppVersion
18-
tag:
16+
tag: 0.0.1
1917
pullPolicy:
20-
2118
deployment:
2219
replicas: 1
2320
revisionHistoryLimit: 2
2421
labels: {}
2522
annotations: {}
26-
2723
pod:
2824
resources:
2925
requests:
@@ -52,26 +48,21 @@ service:
5248
loadBalancerIP:
5349
labels: {}
5450
annotations: {}
55-
5651
ingress:
5752
enabled: false
5853
class: nginx
5954
labels: {}
6055
annotations: {}
61-
6256
# hosts:
6357
# - lighthouse.example.com
6458
# - lighthouse.foo.bar
6559
hosts: []
66-
6760
# enables basic auth secret to be created
6861
basicAuth:
6962
enabled: false
7063
authData: ""
71-
7264
tls:
7365
enabled: false
74-
7566
# secrets:
7667
# embedded:
7768
# b64encodedCertificate: e30k
@@ -83,23 +74,19 @@ ingress:
8374
# hosts:
8475
# - lighthouse.foo.bar
8576
secrets: {}
86-
8777
istio:
8878
enabled: false
8979
apiVersion: networking.istio.io/v1beta1
9080
gateway: jx-gateway
91-
9281
jx:
9382
# whether to create a Release CRD when installing charts with Release CRDs included
9483
releaseCRD: true
95-
9684
serviceAccount:
9785
# allow additional annotations to be added to the ServiceAccount
9886
# such as for workload identity on clouds
9987
annotations: {}
100-
10188
role:
10289
rules:
103-
- apiGroups: ["lighthouse.jenkins.io"]
104-
resources: ["lighthousejobs"]
105-
verbs: ["list", "watch", "get"]
90+
- apiGroups: ["lighthouse.jenkins.io"]
91+
resources: ["lighthousejobs"]
92+
verbs: ["list", "watch", "get"]

0 commit comments

Comments
 (0)