Skip to content

Commit f8fec90

Browse files
chore: release 1.1.8
1 parent 9ed61b6 commit f8fec90

File tree

6 files changed

+147
-2
lines changed

6 files changed

+147
-2
lines changed

changelog.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
### Linux
2+
3+
```shell
4+
curl -L https://github.com/jenkins-x/jx-pipelines-visualizer/releases/download/v1.1.8/jx-pipelines-visualizer-linux-amd64.tar.gz | tar xzv
5+
sudo mv jx-pipelines-visualizer /usr/local/bin
6+
```
7+
8+
### macOS
9+
10+
```shell
11+
curl -L https://github.com/jenkins-x/jx-pipelines-visualizer/releases/download/v1.1.8/jx-pipelines-visualizer-darwin-amd64.tar.gz | tar xzv
12+
sudo mv jx-pipelines-visualizer /usr/local/bin
13+
```
14+
## Changes
15+
16+
### Chores
17+
18+
* upgrade go dependencies (jenkins-x-bot)

charts/jx-pipelines-visualizer/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v1
22
name: jx-pipelines-visualizer
33
description: Web UI for Jenkins X, with a clear goal - visualize the pipelines - and their logs.
44
home: https://github.com/jenkins-x/jx-pipelines-visualizer
5-
version: 0.0.1
5+
version: 1.1.8
66
appVersion: latest
77
sources:
88
- https://github.com/jenkins-x/jx-pipelines-visualizer
Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
# jx-pipelines-visualizer
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 Jenkins X, with a clear goal - visualize the pipelines - and their logs.
6+
7+
**Homepage:** <https://github.com/jenkins-x/jx-pipelines-visualizer>
8+
9+
## Source Code
10+
11+
* <https://github.com/jenkins-x/jx-pipelines-visualizer>
12+
13+
## Values
14+
15+
| Key | Type | Default | Description |
16+
|-----|------|---------|-------------|
17+
| config.archivedLogsURLTemplate | string | `nil` | |
18+
| config.archivedPipelinesURLTemplate | string | `nil` | |
19+
| config.logLevel | string | `"INFO"` | |
20+
| config.namespace | string | `"jx"` | |
21+
| config.resyncInterval | string | `"60s"` | |
22+
| deployment.annotations | object | `{}` | |
23+
| deployment.labels | object | `{}` | |
24+
| deployment.replicas | int | `1` | |
25+
| deployment.revisionHistoryLimit | int | `2` | |
26+
| fullnameOverride | string | `nil` | |
27+
| gitSecretName | string | `"tekton-git"` | |
28+
| image.pullPolicy | string | `nil` | |
29+
| image.repository | string | `"gcr.io/jenkinsxio/jx-pipelines-visualizer"` | |
30+
| image.tag | string | `nil` | |
31+
| ingress.annotations | object | `{}` | |
32+
| ingress.basicAuth.authData | string | `""` | |
33+
| ingress.basicAuth.enabled | bool | `false` | |
34+
| ingress.enabled | bool | `false` | |
35+
| ingress.hosts | list | `[]` | |
36+
| ingress.labels | object | `{}` | |
37+
| ingress.tls.enabled | bool | `false` | |
38+
| ingress.tls.secrets | object | `{}` | |
39+
| istio.apiVersion | string | `"networking.istio.io/v1beta1"` | |
40+
| istio.enabled | bool | `false` | |
41+
| istio.gateway | string | `"jx-gateway"` | |
42+
| nameOverride | string | `nil` | |
43+
| pod.activeDeadlineSeconds | string | `nil` | |
44+
| pod.affinity | object | `{}` | |
45+
| pod.annotations | object | `{}` | |
46+
| pod.enableServiceLinks | bool | `false` | |
47+
| pod.env | object | `{}` | |
48+
| pod.hostAliases | list | `[]` | |
49+
| pod.labels | object | `{}` | |
50+
| pod.nodeSelector | object | `{}` | |
51+
| pod.resources.limits.cpu | string | `"1"` | |
52+
| pod.resources.limits.memory | string | `"512M"` | |
53+
| pod.resources.requests.cpu | string | `"0.2"` | |
54+
| pod.resources.requests.memory | string | `"128M"` | |
55+
| pod.schedulerName | string | `nil` | |
56+
| pod.securityContext.fsGroup | int | `1000` | |
57+
| pod.terminationGracePeriodSeconds | string | `nil` | |
58+
| pod.tolerations | list | `[]` | |
59+
| role.rules[0].apiGroups[0] | string | `"jenkins.io"` | |
60+
| role.rules[0].resources[0] | string | `"pipelineactivities"` | |
61+
| role.rules[0].resources[1] | string | `"pipelinestructures"` | |
62+
| role.rules[0].verbs[0] | string | `"list"` | |
63+
| role.rules[0].verbs[1] | string | `"watch"` | |
64+
| role.rules[0].verbs[2] | string | `"get"` | |
65+
| role.rules[1].apiGroups[0] | string | `"tekton.dev"` | |
66+
| role.rules[1].resources[0] | string | `"pipelineruns"` | |
67+
| role.rules[1].verbs[0] | string | `"list"` | |
68+
| role.rules[1].verbs[1] | string | `"watch"` | |
69+
| role.rules[1].verbs[2] | string | `"get"` | |
70+
| role.rules[2].apiGroups[0] | string | `""` | |
71+
| role.rules[2].resources[0] | string | `"pods"` | |
72+
| role.rules[2].verbs[0] | string | `"list"` | |
73+
| role.rules[2].verbs[1] | string | `"watch"` | |
74+
| role.rules[2].verbs[2] | string | `"get"` | |
75+
| role.rules[3].apiGroups[0] | string | `""` | |
76+
| role.rules[3].resources[0] | string | `"pods/log"` | |
77+
| role.rules[3].verbs[0] | string | `"get"` | |
78+
| service.annotations | object | `{}` | |
79+
| service.labels | object | `{}` | |
80+
| service.loadBalancerIP | string | `nil` | |
81+
| service.port | int | `80` | |
82+
| service.type | string | `nil` | |
83+
| serviceAccount.annotations | object | `{}` | |
84+
85+
----------------------------------------------
86+
Autogenerated from chart metadata using [helm-docs v1.4.0](https://github.com/norwoodj/helm-docs/releases/v1.4.0)
4.56 KB
Binary file not shown.
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{{- if .Capabilities.APIVersions.Has "jenkins.io/v1/Release" }}
2+
apiVersion: jenkins.io/v1
3+
kind: Release
4+
metadata:
5+
creationTimestamp: "2021-02-05T15:11:10Z"
6+
deletionTimestamp: null
7+
name: '{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}'
8+
spec:
9+
commits:
10+
- author:
11+
12+
name: jenkins-x-bot
13+
branch: master
14+
committer:
15+
16+
name: jenkins-x-bot
17+
message: |
18+
chore: upgrade go dependencies
19+
20+
from: https://github.com/jenkins-x/jx3-versions
21+
sha: 969896dec59fa8e5820ae283662e7a4db5bb1f20
22+
- author:
23+
24+
name: jenkins-x-bot
25+
branch: master
26+
committer:
27+
28+
name: jenkins-x-bot
29+
message: |
30+
chore: upgrade go dependencies
31+
32+
from: https://github.com/jenkins-x/jx3-versions
33+
sha: 116a6c7d4c229ebcd4da70450947ed8caf10fe15
34+
gitHttpUrl: https://github.com/jenkins-x/jx-pipelines-visualizer
35+
gitOwner: jenkins-x
36+
gitRepository: jx-pipelines-visualizer
37+
name: '{{ .Chart.Name }}'
38+
version: 1.1.8
39+
status: {}
40+
41+
{{- end }}

charts/jx-pipelines-visualizer/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ config:
1616
image:
1717
repository: gcr.io/jenkinsxio/jx-pipelines-visualizer
1818
# If no tag, fallback to the Chart's AppVersion
19-
tag:
19+
tag: 1.1.8
2020
pullPolicy:
2121

2222
deployment:

0 commit comments

Comments
 (0)