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