Skip to content

Commit

Permalink
chore: release 1.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
pow-devops2020 committed Feb 5, 2021
1 parent 35417a4 commit 10eb516
Show file tree
Hide file tree
Showing 6 changed files with 146 additions and 2 deletions.
19 changes: 19 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
### Linux

```shell
curl -L https://github.com/jenkins-x/jx-pipelines-visualizer/releases/download/v1.1.7/jx-pipelines-visualizer-linux-amd64.tar.gz | tar xzv
sudo mv jx-pipelines-visualizer /usr/local/bin
```

### macOS

```shell
curl -L https://github.com/jenkins-x/jx-pipelines-visualizer/releases/download/v1.1.7/jx-pipelines-visualizer-darwin-amd64.tar.gz | tar xzv
sudo mv jx-pipelines-visualizer /usr/local/bin
```
## Changes

### Chores

* upgrade go dependencies (jenkins-x-bot)
* upgrade deps (James Strachan)
2 changes: 1 addition & 1 deletion charts/jx-pipelines-visualizer/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
name: jx-pipelines-visualizer
description: Web UI for Jenkins X, with a clear goal - visualize the pipelines - and their logs.
home: https://github.com/jenkins-x/jx-pipelines-visualizer
version: 0.0.1
version: 1.1.7
appVersion: latest
sources:
- https://github.com/jenkins-x/jx-pipelines-visualizer
86 changes: 86 additions & 0 deletions charts/jx-pipelines-visualizer/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
# jx-pipelines-visualizer

![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)

Web UI for Jenkins X, with a clear goal - visualize the pipelines - and their logs.

**Homepage:** <https://github.com/jenkins-x/jx-pipelines-visualizer>

## Source Code

* <https://github.com/jenkins-x/jx-pipelines-visualizer>

## Values

| Key | Type | Default | Description |
|-----|------|---------|-------------|
| config.archivedLogsURLTemplate | string | `nil` | |
| config.archivedPipelinesURLTemplate | string | `nil` | |
| config.logLevel | string | `"INFO"` | |
| config.namespace | string | `"jx"` | |
| config.resyncInterval | string | `"60s"` | |
| deployment.annotations | object | `{}` | |
| deployment.labels | object | `{}` | |
| deployment.replicas | int | `1` | |
| deployment.revisionHistoryLimit | int | `2` | |
| fullnameOverride | string | `nil` | |
| gitSecretName | string | `"tekton-git"` | |
| image.pullPolicy | string | `nil` | |
| image.repository | string | `"gcr.io/jenkinsxio/jx-pipelines-visualizer"` | |
| image.tag | string | `nil` | |
| ingress.annotations | object | `{}` | |
| ingress.basicAuth.authData | string | `""` | |
| ingress.basicAuth.enabled | bool | `false` | |
| ingress.enabled | bool | `false` | |
| ingress.hosts | list | `[]` | |
| ingress.labels | object | `{}` | |
| ingress.tls.enabled | bool | `false` | |
| ingress.tls.secrets | object | `{}` | |
| istio.apiVersion | string | `"networking.istio.io/v1beta1"` | |
| istio.enabled | bool | `false` | |
| istio.gateway | string | `"jx-gateway"` | |
| nameOverride | string | `nil` | |
| pod.activeDeadlineSeconds | string | `nil` | |
| pod.affinity | object | `{}` | |
| pod.annotations | object | `{}` | |
| pod.enableServiceLinks | bool | `false` | |
| pod.env | object | `{}` | |
| pod.hostAliases | list | `[]` | |
| pod.labels | object | `{}` | |
| pod.nodeSelector | object | `{}` | |
| pod.resources.limits.cpu | string | `"1"` | |
| pod.resources.limits.memory | string | `"512M"` | |
| pod.resources.requests.cpu | string | `"0.2"` | |
| pod.resources.requests.memory | string | `"128M"` | |
| pod.schedulerName | string | `nil` | |
| pod.securityContext.fsGroup | int | `1000` | |
| pod.terminationGracePeriodSeconds | string | `nil` | |
| pod.tolerations | list | `[]` | |
| role.rules[0].apiGroups[0] | string | `"jenkins.io"` | |
| role.rules[0].resources[0] | string | `"pipelineactivities"` | |
| role.rules[0].resources[1] | string | `"pipelinestructures"` | |
| role.rules[0].verbs[0] | string | `"list"` | |
| role.rules[0].verbs[1] | string | `"watch"` | |
| role.rules[0].verbs[2] | string | `"get"` | |
| role.rules[1].apiGroups[0] | string | `"tekton.dev"` | |
| role.rules[1].resources[0] | string | `"pipelineruns"` | |
| role.rules[1].verbs[0] | string | `"list"` | |
| role.rules[1].verbs[1] | string | `"watch"` | |
| role.rules[1].verbs[2] | string | `"get"` | |
| role.rules[2].apiGroups[0] | string | `""` | |
| role.rules[2].resources[0] | string | `"pods"` | |
| role.rules[2].verbs[0] | string | `"list"` | |
| role.rules[2].verbs[1] | string | `"watch"` | |
| role.rules[2].verbs[2] | string | `"get"` | |
| role.rules[3].apiGroups[0] | string | `""` | |
| role.rules[3].resources[0] | string | `"pods/log"` | |
| role.rules[3].verbs[0] | string | `"get"` | |
| service.annotations | object | `{}` | |
| service.labels | object | `{}` | |
| service.loadBalancerIP | string | `nil` | |
| service.port | int | `80` | |
| service.type | string | `nil` | |
| serviceAccount.annotations | object | `{}` | |

----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.4.0](https://github.com/norwoodj/helm-docs/releases/v1.4.0)
Binary file not shown.
39 changes: 39 additions & 0 deletions charts/jx-pipelines-visualizer/templates/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{{- if .Capabilities.APIVersions.Has "jenkins.io/v1/Release" }}
apiVersion: jenkins.io/v1
kind: Release
metadata:
creationTimestamp: "2021-02-05T11:08:05Z"
deletionTimestamp: null
name: '{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}'
spec:
commits:
- author:
email: [email protected]
name: jenkins-x-bot
branch: master
committer:
email: [email protected]
name: jenkins-x-bot
message: |
chore: upgrade go dependencies
from: https://github.com/jenkins-x/jx3-versions
sha: 116a6c7d4c229ebcd4da70450947ed8caf10fe15
- author:
email: [email protected]
name: James Strachan
branch: master
committer:
email: [email protected]
name: James Strachan
message: |
chore: upgrade deps
sha: bf18eac39015b7a1535caf7c895a2251aecf26c4
gitHttpUrl: https://github.com/jenkins-x/jx-pipelines-visualizer
gitOwner: jenkins-x
gitRepository: jx-pipelines-visualizer
name: '{{ .Chart.Name }}'
version: 1.1.7
status: {}

{{- end }}
2 changes: 1 addition & 1 deletion charts/jx-pipelines-visualizer/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ config:
image:
repository: gcr.io/jenkinsxio/jx-pipelines-visualizer
# If no tag, fallback to the Chart's AppVersion
tag:
tag: 1.1.7
pullPolicy:

deployment:
Expand Down

0 comments on commit 10eb516

Please sign in to comment.