Skip to content

Commit

Permalink
chore: release 0.0.58
Browse files Browse the repository at this point in the history
  • Loading branch information
pow-devops2020 committed Aug 25, 2021
1 parent 6cf3ac9 commit 7d358ab
Show file tree
Hide file tree
Showing 6 changed files with 85 additions and 4 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-labs/gsm-controller/releases/download/v0.0.58/gsm-controller-linux-amd64.tar.gz | tar xzv
sudo mv gsm-controller /usr/local/bin
```

### macOS

```shell
curl -L https://github.com/jenkins-x-labs/gsm-controller/releases/download/v0.0.58/gsm-controller-darwin-amd64.tar.gz | tar xzv
sudo mv gsm-controller /usr/local/bin
```

## Changes

### Bug Fixes

* pipeline (James Rawlings)
2 changes: 1 addition & 1 deletion charts/gsm-controller/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v1
description: A Helm chart for Kubernetes
icon: https://raw.githubusercontent.com/jenkins-x/jenkins-x-platform/d273e09/images/go.png
name: gsm-controller
version: 0.1.0-SNAPSHOT
version: 0.0.58
home: https://github.com/jenkins-x-labs/gsm-controller
38 changes: 37 additions & 1 deletion charts/gsm-controller/README.md
Original file line number Diff line number Diff line change
@@ -1 +1,37 @@
# golang application
# gsm-controller

![Version: 0.1.0-SNAPSHOT](https://img.shields.io/badge/Version-0.1.0--SNAPSHOT-informational?style=flat-square)

A Helm chart for Kubernetes

**Homepage:** <https://github.com/jenkins-x-labs/gsm-controller>

## Values

| Key | Type | Default | Description |
|-----|------|---------|-------------|
| cron.enabled | bool | `true` | |
| cron.schedule | string | `"*/5 * * * *"` | |
| deployment.enabled | bool | `true` | |
| env | string | `nil` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"draft"` | |
| image.tag | string | `"dev"` | |
| jx.releaseCRD | bool | `false` | |
| jxRequirements.ingress.annotations | string | `nil` | |
| jxRequirements.ingress.apiVersion | string | `"extensions/v1beta1"` | |
| jxRequirements.ingress.domain | string | `""` | |
| jxRequirements.ingress.externalDNS | bool | `false` | |
| jxRequirements.ingress.namespaceSubDomain | string | `"-jx."` | |
| jxRequirements.ingress.tls.email | string | `""` | |
| jxRequirements.ingress.tls.enabled | bool | `false` | |
| jxRequirements.ingress.tls.production | bool | `false` | |
| projectID | string | `nil` | |
| replicaCount | int | `1` | |
| resources.limits.cpu | string | `"100m"` | |
| resources.limits.memory | string | `"256Mi"` | |
| resources.requests.cpu | string | `"80m"` | |
| resources.requests.memory | string | `"128Mi"` | |

----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.4.0](https://github.com/norwoodj/helm-docs/releases/v1.4.0)
Binary file added charts/gsm-controller/gsm-controller-0.0.58.tgz
Binary file not shown.
26 changes: 26 additions & 0 deletions charts/gsm-controller/templates/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{{- if and (.Capabilities.APIVersions.Has "jenkins.io/v1/Release") (hasKey .Values.jx "releaseCRD") (.Values.jx.releaseCRD)}}
apiVersion: jenkins.io/v1
kind: Release
metadata:
creationTimestamp: "2021-08-25T16:19:06Z"
deletionTimestamp: null
name: '{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}'
spec:
commits:
- author:
email: [email protected]
name: James Rawlings
branch: master
committer:
email: [email protected]
name: GitHub
message: 'fix: pipeline'
sha: 205b789ffcc6e94c940ad1b709f85c7f65dae11b
gitHttpUrl: https://github.com/jenkins-x/gsm-controller
gitOwner: jenkins-x
gitRepository: gsm-controller
name: '{{ .Chart.Name }}'
version: 0.0.58
status: {}

{{- end }}
4 changes: 2 additions & 2 deletions charts/gsm-controller/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ projectID:
# Declare variables to be passed into your templates.
replicaCount: 1
image:
repository: draft
tag: dev
repository: ghcr.io/jenkins-x/gsm-controller
tag: 0.0.58
pullPolicy: IfNotPresent

# define environment variables here as a map of key: value
Expand Down

0 comments on commit 7d358ab

Please sign in to comment.