-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from haarchri/feature/helm-chart-flux2
- Loading branch information
Showing
22 changed files
with
6,238 additions
and
0 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,21 @@ | ||
name: Release Charts | ||
on: | ||
push: | ||
branches: | ||
- main | ||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v1 | ||
|
||
- name: Configure Git | ||
run: | | ||
git config user.name "$GITHUB_ACTOR" | ||
git config user.email "[email protected]" | ||
- name: Run chart-releaser | ||
uses: helm/[email protected] | ||
env: | ||
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" |
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 @@ | ||
.work |
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,26 @@ | ||
# ==================================================================================== | ||
# Setup Project | ||
|
||
FLUX2_VERSION ?= v0.20.1 | ||
|
||
all: fetch generate helm-docs | ||
|
||
fetch: | ||
@if [ ! -d ".work/flux2" ]; then \ | ||
cd .work && git clone "https://github.com/fluxcd/flux2.git"; \ | ||
fi | ||
@cd .work/flux2 && git fetch origin && git checkout $(FLUX2_VERSION) | ||
|
||
generate: | ||
# ToDo: no override since we have manipulate step | ||
@cd .work/flux2 && manifests/scripts/bundle.sh && cp cmd/flux/manifests/* ../../charts/flux2/templates | ||
|
||
helm-docs: | ||
helm-docs | ||
|
||
# manipulate: | ||
# ToDo: | ||
# - split files in crds & deployments | ||
# - insert if/end to | ||
|
||
# ==================================================================================== |
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,6 @@ | ||
# Helm Charts | ||
|
||
The repository can be added using the following command: | ||
```bash | ||
helm repo add fluxcd-community https://fluxcd-community.github.io/helm-charts | ||
``` |
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,23 @@ | ||
# Patterns to ignore when building packages. | ||
# This supports shell glob matching, relative path matching, and | ||
# negation (prefixed with !). Only one pattern per line. | ||
.DS_Store | ||
# Common VCS dirs | ||
.git/ | ||
.gitignore | ||
.bzr/ | ||
.bzrignore | ||
.hg/ | ||
.hgignore | ||
.svn/ | ||
# Common backup files | ||
*.swp | ||
*.bak | ||
*.tmp | ||
*.orig | ||
*~ | ||
# Various IDEs | ||
.project | ||
.idea/ | ||
*.tmproj | ||
.vscode/ |
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,8 @@ | ||
apiVersion: v2 | ||
name: flux2 | ||
description: A Helm chart for flux2 | ||
|
||
type: application | ||
version: 0.0.1 | ||
|
||
appVersion: "0.20.1" |
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,33 @@ | ||
# flux2 | ||
|
||
![Version: 0.0.1](https://img.shields.io/badge/Version-0.0.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.20.1](https://img.shields.io/badge/AppVersion-0.20.1-informational?style=flat-square) | ||
|
||
A Helm chart for flux2 | ||
|
||
## Values | ||
|
||
| Key | Type | Default | Description | | ||
|-----|------|---------|-------------| | ||
| helmcontroller.create | bool | `true` | | | ||
| helmcontroller.image | string | `"fluxcd/helm-controller"` | | | ||
| helmcontroller.tag | string | `"v0.12.1"` | | | ||
| imageautomationcontroller.create | bool | `true` | | | ||
| imageautomationcontroller.image | string | `"fluxcd/image-automation-controller"` | | | ||
| imageautomationcontroller.tag | string | `"v0.16.0"` | | | ||
| imagereflectorcontroller.create | bool | `true` | | | ||
| imagereflectorcontroller.image | string | `"fluxcd/image-reflector-controller"` | | | ||
| imagereflectorcontroller.tag | string | `"v0.13.0"` | | | ||
| kustomizecontroller.create | bool | `true` | | | ||
| kustomizecontroller.image | string | `"fluxcd/kustomize-controller"` | | | ||
| kustomizecontroller.tag | string | `"v0.16.0"` | | | ||
| notificationcontroller.create | bool | `true` | | | ||
| notificationcontroller.image | string | `"fluxcd/notification-controller"` | | | ||
| notificationcontroller.tag | string | `"v0.18.1"` | | | ||
| policies.create | bool | `true` | | | ||
| rbac.create | bool | `true` | | | ||
| sourcecontroller.create | bool | `true` | | | ||
| sourcecontroller.image | string | `"fluxcd/source-controller"` | | | ||
| sourcecontroller.tag | string | `"v0.17.1"` | | | ||
|
||
---------------------------------------------- | ||
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) |
Oops, something went wrong.