mirror of
https://github.com/lukaszraczylo/jobs-manager-operator.git
synced 2026-07-15 07:57:10 +00:00
Ignore files in chart directory.
This commit is contained in:
@@ -4,9 +4,19 @@ on:
|
|||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
|
paths-ignore:
|
||||||
|
- 'charts/**'
|
||||||
|
- 'docs/**'
|
||||||
|
- '.github/**'
|
||||||
|
- 'README.md'
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
|
paths-ignore:
|
||||||
|
- 'charts/**'
|
||||||
|
- 'docs/**'
|
||||||
|
- '.github/**'
|
||||||
|
- 'README.md'
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|||||||
@@ -8,6 +8,7 @@
|
|||||||
bin
|
bin
|
||||||
testbin/*
|
testbin/*
|
||||||
Dockerfile.cross
|
Dockerfile.cross
|
||||||
|
chart-releaser.yaml
|
||||||
|
|
||||||
# Test binary, build with `go test -c`
|
# Test binary, build with `go test -c`
|
||||||
*.test
|
*.test
|
||||||
|
|||||||
@@ -5,7 +5,15 @@ This operator is responsible for managing the lifecycle of complicated workflows
|
|||||||
|
|
||||||
## Getting Started
|
## Getting Started
|
||||||
|
|
||||||
### Prerequisites
|
### Installation with helm
|
||||||
|
|
||||||
|
```sh
|
||||||
|
helm repo add raczylo https://lukaszraczylo.github.io/helm-charts/
|
||||||
|
helm repo update raczylo
|
||||||
|
helm install jobs-manager raczylo/jobs-manager
|
||||||
|
```
|
||||||
|
|
||||||
|
### Prerequisites for local runs
|
||||||
- [go](https://golang.org/dl/) v1.16+
|
- [go](https://golang.org/dl/) v1.16+
|
||||||
- [kustomize](https://sigs.k8s.io/kustomize/docs/INSTALL.md) v3.5.4+
|
- [kustomize](https://sigs.k8s.io/kustomize/docs/INSTALL.md) v3.5.4+
|
||||||
- [docker](https://docs.docker.com/install/) v19.03.8+
|
- [docker](https://docs.docker.com/install/) v19.03.8+
|
||||||
|
|||||||
+13
@@ -31,6 +31,19 @@ rules:
|
|||||||
- get
|
- get
|
||||||
- patch
|
- patch
|
||||||
- update
|
- update
|
||||||
|
# Add ability to manage jobs
|
||||||
|
- apiGroups:
|
||||||
|
- batch
|
||||||
|
resources:
|
||||||
|
- jobs
|
||||||
|
verbs:
|
||||||
|
- create
|
||||||
|
- delete
|
||||||
|
- get
|
||||||
|
- list
|
||||||
|
- patch
|
||||||
|
- update
|
||||||
|
- watch
|
||||||
---
|
---
|
||||||
apiVersion: rbac.authorization.k8s.io/v1
|
apiVersion: rbac.authorization.k8s.io/v1
|
||||||
kind: ClusterRoleBinding
|
kind: ClusterRoleBinding
|
||||||
Reference in New Issue
Block a user