-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4bf0425
commit 268262b
Showing
6 changed files
with
183 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
### Linux | ||
|
||
```shell | ||
curl -L https://github.com/jenkins-x/jx-pipelines-visualizer/releases/download/v1.1.5/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.5/jx-pipelines-visualizer-darwin-amd64.tar.gz | tar xzv | ||
sudo mv jx-pipelines-visualizer /usr/local/bin | ||
``` | ||
## Changes | ||
|
||
### Bug Fixes | ||
|
||
* handle live logs for repos with underscore (Vincent Behar) [#94](https://github.com/jenkins-x/jx-pipelines-visualizer/issues/94) | ||
* support repos with underscore (Vincent Behar) [#91](https://github.com/jenkins-x/jx-pipelines-visualizer/issues/91) | ||
|
||
### Chores | ||
|
||
* add file for changelog (James Strachan) | ||
|
||
### Issues | ||
|
||
* [#94](https://github.com/jenkins-x/jx-pipelines-visualizer/issues/94) In progress logs not available for repos with underscore | ||
* [#91](https://github.com/jenkins-x/jx-pipelines-visualizer/issues/91) Error: Archived logs not found in the long term storage for repos with underscores in name |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
{{- if .Capabilities.APIVersions.Has "jenkins.io/v1/Release" }} | ||
apiVersion: jenkins.io/v1 | ||
kind: Release | ||
metadata: | ||
creationTimestamp: "2021-02-03T10:59:19Z" | ||
deletionTimestamp: null | ||
name: '{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}' | ||
spec: | ||
commits: | ||
- author: | ||
email: [email protected] | ||
name: Vincent Behar | ||
branch: master | ||
committer: | ||
email: [email protected] | ||
name: Vincent Behar | ||
issueIds: | ||
- "94" | ||
message: | | ||
fix: handle live logs for repos with underscore | ||
fixes #94 | ||
sha: 8c2ee689039560fcdbbfe8586d8f2f7a00db679a | ||
- author: | ||
email: [email protected] | ||
name: James Strachan | ||
branch: master | ||
committer: | ||
email: [email protected] | ||
name: GitHub | ||
message: 'chore: add file for changelog' | ||
sha: 1048cfebc14d2207608a7ef9cc68fba26e798b5e | ||
- author: | ||
email: [email protected] | ||
name: Vincent Behar | ||
branch: master | ||
committer: | ||
email: [email protected] | ||
name: Vincent Behar | ||
issueIds: | ||
- "91" | ||
message: | | ||
fix: support repos with underscore | ||
fixes #91 | ||
sha: 631586f6cb660be5fff1765c78f517db7c3209a0 | ||
gitHttpUrl: https://github.com/jenkins-x/jx-pipelines-visualizer | ||
gitOwner: jenkins-x | ||
gitRepository: jx-pipelines-visualizer | ||
issues: | ||
- body: "Similar to recently closed #91 \r\n\r\nThe fix in #91 allows the UI to show logs from LTS. Once the pipeline finishes running they are viewable. \r\n\r\nHowever, the UI is still unable to show in progress pipelines.\r\n\r\nGuessing it's a similar issue just elsewhere in the codebase?" | ||
creationTimestamp: "2021-02-02T18:10:30Z" | ||
id: "94" | ||
state: closed | ||
title: In progress logs not available for repos with underscore | ||
url: https://github.com/jenkins-x/jx-pipelines-visualizer/issues/94 | ||
- body: "All other repos work, and the logs are in fact in s3. `jx get build logs` also retreives them successfully.\r\n\r\n![image](https://user-images.githubusercontent.com/474827/106169988-fd08d780-615d-11eb-90f7-5b2b3bf07533.png)\r\n\r\n![image](https://user-images.githubusercontent.com/474827/106170098-1f9af080-615e-11eb-85ea-637648c31d77.png)\r\n\r\n" | ||
creationTimestamp: "2021-01-28T16:43:22Z" | ||
id: "91" | ||
state: closed | ||
title: 'Error: Archived logs not found in the long term storage for repos with underscores in name ' | ||
url: https://github.com/jenkins-x/jx-pipelines-visualizer/issues/91 | ||
name: '{{ .Chart.Name }}' | ||
version: 1.1.5 | ||
status: {} | ||
|
||
{{- end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters