Skip to content
This repository has been archived by the owner on Jul 19, 2024. It is now read-only.

Commit

Permalink
Merge pull request #26 from kluctl/upgrade-flux-kluctl-controller
Browse files Browse the repository at this point in the history
feat: Upgrade flux-kluctl-controller and cherry-pick #25
  • Loading branch information
codablock authored May 12, 2023
2 parents 8281506 + 0cafda3 commit 40888d7
Show file tree
Hide file tree
Showing 11 changed files with 51 additions and 10 deletions.
14 changes: 13 additions & 1 deletion charts/flux-kluctl-controller/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,21 @@
# Changelog

## [flux-kluctl-controller-Unreleased](https://github.com/kluctl/charts/compare/flux-kluctl-controller-0.2.7...HEAD) (2023-03-06)
## [flux-kluctl-controller-Unreleased](https://github.com/kluctl/charts/compare/flux-kluctl-controller-0.2.8...HEAD) (2023-05-12)

### Features

* **flux-kluctl-controller:** Allow users to specify additional env variables
([0b72204](https://github.com/kluctl/charts/commit/0b7220424e62404600bd776a260aef3b37930a53))

### Fixes

* **flux-kluctl-controller:** Upgrade flux-kluctl-controller to v0.15.1
([20b414d](https://github.com/kluctl/charts/commit/20b414d8040e7de53bfa96734b0b7ba2ebca08d4))

### [flux-kluctl-controller-0.2.8](https://github.com/kluctl/charts/compare/flux-kluctl-controller-0.2.7...flux-kluctl-controller-0.2.8) (2023-03-06)

#### Fixes

* **flux-kluctl-controller:** Upgrade flux-kluctl-controller to 0.15.0
([da5719e](https://github.com/kluctl/charts/commit/da5719e78f563c39f2425bbe6206482abb8957d9))

Expand Down
4 changes: 2 additions & 2 deletions charts/flux-kluctl-controller/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ maintainers:
name: codablock
description: A Helm chart for the flux-kluctl-controller
type: application
version: 0.2.8
appVersion: "v0.15.0"
version: 0.2.9
appVersion: "v0.15.1"
3 changes: 2 additions & 1 deletion charts/flux-kluctl-controller/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# flux-kluctl-controller

![Version: 0.2.8](https://img.shields.io/badge/Version-0.2.8-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.15.0](https://img.shields.io/badge/AppVersion-v0.15.0-informational?style=flat-square)
![Version: 0.2.9](https://img.shields.io/badge/Version-0.2.9-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.15.1](https://img.shields.io/badge/AppVersion-v0.15.1-informational?style=flat-square)

A Helm chart for the flux-kluctl-controller

Expand All @@ -17,6 +17,7 @@ A Helm chart for the flux-kluctl-controller
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| affinity | object | `{}` | |
| env | list | `[]` | |
| fullnameOverride | string | `""` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"ghcr.io/kluctl/flux-kluctl-controller"` | |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ spec:
description: 'SecretRef holds the name of a secret that contains
the Helm credentials. The secret must either contain the fields
`credentialsId` which refers to the credentialsId found in
https://kluctl.io/docs/reference/deployments/helm/#private-chart-repositories
https://kluctl.io/docs/kluctl/reference/deployments/helm/#private-chart-repositories
or an `url` used to match the credentials found in Kluctl
projects helm-chart.yaml files. The secret can either container
basic authentication credentials via `username` and `password`
Expand Down
3 changes: 3 additions & 0 deletions charts/flux-kluctl-controller/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.namespace
{{- with .Values.env }}
{{- toYaml . | nindent 12 }}
{{- end }}
args:
- --watch-all-namespaces
- --log-level=info
Expand Down
7 changes: 7 additions & 0 deletions charts/flux-kluctl-controller/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,13 @@ securityContext:
seccompProfile:
type: RuntimeDefault

# Additional environment variables
env: []
# - name: HTTPS_PROXY
# value: https://proxy.example.org
# - name: NO_PROXY
# value: 10.96.0.1

service:
type: ClusterIP
prometheus:
Expand Down
13 changes: 10 additions & 3 deletions charts/template-controller/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
# Changelog

## [template-controller-Unreleased](https://github.com/kluctl/charts/compare/template-controller-0.1.2...HEAD) (2023-01-16)
## [template-controller-Unreleased](https://github.com/kluctl/charts/compare/template-controller-0.2.0...HEAD) (2023-05-12)

### Features

* **template-controller:** Upgrade controller to 0.6.0
([d5f1859](https://github.com/kluctl/charts/commit/d5f1859fe115033d0a5876ef23fe0ad975fd182b))
* **template-controller:** Allow users to specify additional env variables
([b5960f1](https://github.com/kluctl/charts/commit/b5960f1ff1e14f8b8b9ac65217cd5a8da5c62f49))

## [template-controller-0.2.0](https://github.com/kluctl/charts/compare/template-controller-0.1.2...template-controller-0.2.0) (2023-01-16)

### Features

* **template-controller:** Upgrade controller to 0.6.0 (#21)
([325f21e](https://github.com/kluctl/charts/commit/325f21e0088ab0efa7840f9fbb22d4d267be07d5))

### [template-controller-0.1.2](https://github.com/kluctl/charts/compare/template-controller-0.1.1...template-controller-0.1.2) (2022-12-20)

Expand Down
2 changes: 1 addition & 1 deletion charts/template-controller/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ maintainers:
name: codablock
description: A Helm chart for the template-controller
type: application
version: 0.2.0
version: 0.2.1
appVersion: "v0.6.0"
3 changes: 2 additions & 1 deletion charts/template-controller/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# template-controller

![Version: 0.1.3](https://img.shields.io/badge/Version-0.1.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.6.0](https://img.shields.io/badge/AppVersion-v0.6.0-informational?style=flat-square)
![Version: 0.2.1](https://img.shields.io/badge/Version-0.2.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.6.0](https://img.shields.io/badge/AppVersion-v0.6.0-informational?style=flat-square)

A Helm chart for the template-controller

Expand All @@ -17,6 +17,7 @@ A Helm chart for the template-controller
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| affinity | object | `{}` | |
| env | list | `[]` | |
| fullnameOverride | string | `""` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"ghcr.io/kluctl/template-controller"` | |
Expand Down
3 changes: 3 additions & 0 deletions charts/template-controller/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.namespace
{{- with .Values.env }}
{{- toYaml . | nindent 12 }}
{{- end }}
args:
- --watch-all-namespaces
- --leader-elect
Expand Down
7 changes: 7 additions & 0 deletions charts/template-controller/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,13 @@ securityContext:
seccompProfile:
type: RuntimeDefault

# Additional environment variables
env: []
# - name: HTTPS_PROXY
# value: https://proxy.example.org
# - name: NO_PROXY
# value: 10.96.0.1

service:
type: ClusterIP
prometheus:
Expand Down

0 comments on commit 40888d7

Please sign in to comment.