Ignore files in chart directory.

This commit is contained in:
2023-02-20 09:33:02 +00:00
parent 45ffb50b72
commit 372b25111b
14 changed files with 33 additions and 1 deletions
+10
View File
@@ -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:
+1
View File
@@ -8,6 +8,7 @@
bin
testbin/*
Dockerfile.cross
chart-releaser.yaml
# Test binary, build with `go test -c`
*.test
+9 -1
View File
@@ -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+
@@ -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