-
Notifications
You must be signed in to change notification settings - Fork 16
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
cbd22e1
commit 4c6c4fc
Showing
6 changed files
with
119 additions
and
4 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,19 @@ | ||
### Linux | ||
|
||
```shell | ||
curl -L https://github.com/jenkins-x-plugins/jx-slack/releases/download/v0.0.41/jx-slack-linux-amd64.tar.gz | tar xzv | ||
sudo mv slack /usr/local/bin | ||
``` | ||
|
||
### macOS | ||
|
||
```shell | ||
curl -L https://github.com/jenkins-x-plugins/jx-slack/releases/download/v0.0.41/jx-slack-darwin-amd64.tar.gz | tar xzv | ||
sudo mv slack /usr/local/bin | ||
``` | ||
## Changes | ||
|
||
### Bug Fixes | ||
|
||
* resource limit yaml layout (James Strachan) | ||
* use correct image name (James Strachan) |
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 |
---|---|---|
@@ -1 +1,60 @@ | ||
# Slack application for Jenkins X | ||
# jx-slack | ||
|
||
![Version: 0.0.1-SNAPSHOT](https://img.shields.io/badge/Version-0.0.1--SNAPSHOT-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square) | ||
|
||
A Slack bot for Jenkins X | ||
|
||
**Homepage:** <https://github.com/jenkins-x-plugins/jx-slack> | ||
|
||
## Source Code | ||
|
||
* <https://github.com/jenkins-x-plugins/jx-slack> | ||
|
||
## Values | ||
|
||
| Key | Type | Default | Description | | ||
|-----|------|---------|-------------| | ||
| gitSecretName | string | `"tekton-git"` | | | ||
| image.pullPolicy | string | `"IfNotPresent"` | | | ||
| image.repository | string | `"jenkinsxio/jx-slack"` | | | ||
| image.tag | string | `"dev"` | | | ||
| jxRequirements.cluster.gitKind | string | `"github"` | | | ||
| jxRequirements.cluster.gitServer | string | `"https://github.com"` | | | ||
| podAnnotations.myannotation | string | `"abcd"` | | | ||
| replicaCount | int | `1` | | | ||
| resources.limits.cpu | string | `"100m"` | | | ||
| resources.limits.memory | string | `"256Mi"` | | | ||
| resources.requests.cpu | string | `"80m"` | | | ||
| resources.requests.memory | string | `"128Mi"` | | | ||
| role.rules[0].apiGroups[0] | string | `"jenkins.io"` | | | ||
| role.rules[0].resources[0] | string | `"pipelineactivities"` | | | ||
| role.rules[0].verbs[0] | string | `"watch"` | | | ||
| role.rules[0].verbs[1] | string | `"update"` | | | ||
| role.rules[0].verbs[2] | string | `"list"` | | | ||
| role.rules[1].apiGroups[0] | string | `"jenkins.io"` | | | ||
| role.rules[1].resources[0] | string | `"environments"` | | | ||
| role.rules[1].verbs[0] | string | `"get"` | | | ||
| role.rules[1].verbs[1] | string | `"list"` | | | ||
| role.rules[2].apiGroups[0] | string | `""` | | | ||
| role.rules[2].resources[0] | string | `"secrets"` | | | ||
| role.rules[2].resources[1] | string | `"configmaps"` | | | ||
| role.rules[2].resources[2] | string | `"namespaces"` | | | ||
| role.rules[2].resources[3] | string | `"serviceaccounts"` | | | ||
| role.rules[2].verbs[0] | string | `"get"` | | | ||
| role.rules[2].verbs[1] | string | `"list"` | | | ||
| role.rules[3].apiGroups[0] | string | `"extensions"` | | | ||
| role.rules[3].apiGroups[1] | string | `"networking.k8s.io"` | | | ||
| role.rules[3].resources[0] | string | `"ingresses"` | | | ||
| role.rules[3].verbs[0] | string | `"get"` | | | ||
| role.rules[3].verbs[1] | string | `"watch"` | | | ||
| role.rules[3].verbs[2] | string | `"list"` | | | ||
| role.rules[4].apiGroups[0] | string | `""` | | | ||
| role.rules[4].resourceNames[0] | string | `"plugins"` | | | ||
| role.rules[4].resources[0] | string | `"configmaps"` | | | ||
| role.rules[4].verbs[0] | string | `"watch"` | | | ||
| role.rules[4].verbs[1] | string | `"get"` | | | ||
| role.rules[4].verbs[2] | string | `"update"` | | | ||
| terminationGracePeriodSeconds | int | `10` | | | ||
|
||
---------------------------------------------- | ||
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,37 @@ | ||
{{- if .Capabilities.APIVersions.Has "jenkins.io/v1/Release" }} | ||
apiVersion: jenkins.io/v1 | ||
kind: Release | ||
metadata: | ||
creationTimestamp: "2021-02-22T07:28:45Z" | ||
deletionTimestamp: null | ||
name: '{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}' | ||
spec: | ||
commits: | ||
- author: | ||
email: james.strachan@gmail.com | ||
name: James Strachan | ||
branch: master | ||
committer: | ||
email: james.strachan@gmail.com | ||
name: James Strachan | ||
message: | | ||
fix: resource limit yaml layout | ||
sha: 6a364e2e77230cb52b3d7ee06d231e9a0ae2e67c | ||
- author: | ||
email: james.strachan@gmail.com | ||
name: James Strachan | ||
branch: master | ||
committer: | ||
email: james.strachan@gmail.com | ||
name: James Strachan | ||
message: | | ||
fix: use correct image name | ||
sha: ea2f16f9a29085bd841862e4445a02efd2843a83 | ||
gitHttpUrl: https://github.com/jenkins-x-plugins/jx-slack | ||
gitOwner: jenkins-x-plugins | ||
gitRepository: jx-slack | ||
name: '{{ .Chart.Name }}' | ||
version: 0.0.41 | ||
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