Skip to content

Commit b8e9e9c

Browse files
chore: release 0.0.154
1 parent 6b7737c commit b8e9e9c

File tree

6 files changed

+137
-3
lines changed

6 files changed

+137
-3
lines changed

changelog.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
### Linux
2+
3+
```shell
4+
curl -L https://github.com/jenkins-x/jx-git-operator/releases/download/v0.0.154/jx-git-operator-linux-amd64.tar.gz | tar xzv
5+
sudo mv jx-git-operator /usr/local/bin
6+
```
7+
8+
### macOS
9+
10+
```shell
11+
curl -L https://github.com/jenkins-x/jx-git-operator/releases/download/v0.0.154/jx-git-operator-darwin-amd64.tar.gz | tar xzv
12+
sudo mv jx-git-operator /usr/local/bin
13+
```
14+
15+
## Changes
16+
17+
### Bug Fixes
18+
19+
* just use multi-arch images (James Strachan)
20+
* avoid including the git user/token in the logs (James Strachan)
21+
22+
### Chores
23+
24+
* simplify pipelines (James Strachan)
25+
* update deps (James Strachan)
26+
* deps: bump https://github.com/jenkins-x/jx-cli-base-image.git to 0.0.43 (jenkins-x-bot)

charts/jx-git-operator/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ apiVersion: v2
22
name: jx-git-operator
33
description: A Helm chart for Kubernetes
44
type: application
5-
version: 0.1.0
5+
version: 0.0.154
66
icon: https://avatars2.githubusercontent.com/u/47602533
77
appVersion: 0.0.88

charts/jx-git-operator/README.md

Lines changed: 40 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,40 @@
1-
# JX Git Operator
1+
# jx-git-operator
2+
3+
![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.0.88](https://img.shields.io/badge/AppVersion-0.0.88-informational?style=flat-square)
4+
5+
A Helm chart for Kubernetes
6+
7+
## Values
8+
9+
| Key | Type | Default | Description |
10+
|-----|------|---------|-------------|
11+
| bootServiceAccount.annotations | object | `{}` | |
12+
| bootServiceAccount.enabled | bool | `false` | |
13+
| env.POLL_DURATION | string | `"20s"` | |
14+
| envFrom | list | `[]` | |
15+
| fullnameOverride | string | `""` | |
16+
| gitInitCommands | string | `"echo 'no custom git initialisation scripts'"` | |
17+
| image.pullPolicy | string | `"IfNotPresent"` | |
18+
| image.repository | string | `"gcr.io/jenkinsxio/jx-git-operator"` | |
19+
| image.tag | string | `"latest"` | |
20+
| jxBootJobEnvVarSecrets | object | `{}` | |
21+
| nameOverride | string | `""` | |
22+
| ociRegistries | list | `[]` | |
23+
| password | string | `""` | |
24+
| podAnnotations | object | `{}` | |
25+
| rbac.cluster | bool | `true` | |
26+
| rbac.strict | bool | `false` | |
27+
| replicaCount | int | `1` | |
28+
| resources.limits.cpu | string | `"100m"` | |
29+
| resources.limits.memory | string | `"256Mi"` | |
30+
| resources.requests.cpu | string | `"80m"` | |
31+
| resources.requests.memory | string | `"128Mi"` | |
32+
| serviceAccount.annotations | object | `{}` | |
33+
| serviceAccount.create | bool | `true` | |
34+
| serviceAccount.name | string | `"jx-git-operator"` | |
35+
| terminationGracePeriodSeconds | int | `30` | |
36+
| url | string | `""` | |
37+
| username | string | `""` | |
38+
39+
----------------------------------------------
40+
Autogenerated from chart metadata using [helm-docs v1.4.0](https://github.com/norwoodj/helm-docs/releases/v1.4.0)
4.67 KB
Binary file not shown.
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
{{- if .Capabilities.APIVersions.Has "jenkins.io/v1/Release" }}
2+
apiVersion: jenkins.io/v1
3+
kind: Release
4+
metadata:
5+
creationTimestamp: "2021-02-04T15:49:31Z"
6+
deletionTimestamp: null
7+
name: '{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}'
8+
spec:
9+
commits:
10+
- author:
11+
12+
name: James Strachan
13+
branch: master
14+
committer:
15+
16+
name: James Strachan
17+
message: |
18+
fix: just use multi-arch images
19+
sha: 9681a9acb7fc05b79ab841fa05e5b5364e4d5a49
20+
- author:
21+
22+
name: James Strachan
23+
branch: master
24+
committer:
25+
26+
name: James Strachan
27+
message: |
28+
chore: simplify pipelines
29+
sha: 155a1f324daf9caf7badf71ae6c41a3740f0a192
30+
- author:
31+
32+
name: James Strachan
33+
branch: master
34+
committer:
35+
36+
name: James Strachan
37+
message: |
38+
chore: update deps
39+
sha: 8c18eb9efe301ce75c6b5ec42431bcd8406e66b2
40+
- author:
41+
42+
name: James Strachan
43+
branch: master
44+
committer:
45+
46+
name: James Strachan
47+
message: |
48+
fix: avoid including the git user/token in the logs
49+
sha: 9252dd5b67eeb06515f2650e2ccf8db594e1c74c
50+
- author:
51+
52+
name: jenkins-x-bot
53+
branch: master
54+
committer:
55+
56+
name: jenkins-x-bot
57+
message: |
58+
chore(deps): bump https://github.com/jenkins-x/jx-cli-base-image.git to 0.0.43
59+
60+
Command run was `jx step create pr regex --regex (?m)^FROM gcr.io/jenkinsxio/jx-cli-base-image:(?P<version>.*)$ --version 0.0.43 --files Dockerfile --repo https://github.com/jenkins-x/jx-git-operator.git`
61+
sha: c113a4c0ce5bb97bc92b1aabd8b5682eeb8cf435
62+
gitHttpUrl: https://github.com/jenkins-x/jx-git-operator
63+
gitOwner: jenkins-x
64+
gitRepository: jx-git-operator
65+
name: '{{ .Chart.Name }}'
66+
version: 0.0.154
67+
status: {}
68+
69+
{{- end }}

charts/jx-git-operator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ rbac:
1919

2020
image:
2121
repository: gcr.io/jenkinsxio/jx-git-operator
22-
tag: "latest"
22+
tag: 0.0.154
2323
pullPolicy: IfNotPresent
2424

2525
replicaCount: 1

0 commit comments

Comments
 (0)