Skip to content

Commit

Permalink
[uniconfig] Release for version 7.0 (#429)
Browse files Browse the repository at this point in the history
Co-authored-by: Jozef Volak <[email protected]>
  • Loading branch information
Jozefiel and Jozef Volak authored Oct 3, 2024
1 parent 26bd2ce commit dab0452
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 34 deletions.
13 changes: 9 additions & 4 deletions charts/uniconfig/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: uniconfig
version: 8.2.1
appVersion: "6.1.1"
version: 8.2.2
appVersion: "7.0.0"
description: A Helm chart for UniConfig Kubernetes deployment
type: application
home: https://github.com/FRINXio/helm-charts
Expand All @@ -22,7 +22,12 @@ icon: https://avatars.githubusercontent.com/u/23452093?s=200&v=4
annotations:
artifacthub.io/changes: |
- kind: changed
description: Monitoring to metrics configuration
description: Bump appVersion
links:
- name: GitHub PR
url: https://github.com/FRINXio/helm-charts/pull/418
url: https://github.com/FRINXio/helm-charts/pull/429
- kind: fixed
description: Fix extraContainers templating
links:
- name: GitHub PR
url: https://github.com/FRINXio/helm-charts/pull/429
2 changes: 1 addition & 1 deletion charts/uniconfig/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

A Helm chart for UniConfig Kubernetes deployment

![Version: 8.2.1](https://img.shields.io/badge/Version-8.2.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 6.1.1](https://img.shields.io/badge/AppVersion-6.1.1-informational?style=flat-square)
![Version: 8.2.2](https://img.shields.io/badge/Version-8.2.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 7.0.0](https://img.shields.io/badge/AppVersion-7.0.0-informational?style=flat-square)

## Get Repo Info

Expand Down
30 changes: 1 addition & 29 deletions charts/uniconfig/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -237,33 +237,5 @@ spec:
readOnly: {{ .readOnly }}
{{- end }}
{{- with .Values.extraContainers }}
{{- range . }}
- name: {{ .name }}
image: {{ .image | quote }}
imagePullPolicy: {{ .imagePullPolicy | quote }}
{{- if .command }}
command:
{{- toYaml .command | nindent 12 }}
{{- end }}
{{- if .args }}
args:
{{- toYaml .args | nindent 12 }}
{{- end }}
{{- if .ports }}
ports:
{{- toYaml .ports | nindent 12 }}
{{- end }}
{{- if .env }}
env:
{{- toYaml .env | nindent 12 }}
{{- end }}
{{- if .resources }}
resources:
{{- toYaml .resources | nindent 12 }}
{{- end }}
{{- if .volumeMounts }}
volumeMounts:
{{- toYaml .volumeMounts | nindent 12 }}
{{- end }}
{{- toYaml . | nindent 8 }}
{{- end }}
{{- end }}

0 comments on commit dab0452

Please sign in to comment.