From 0cef8255ecc9ccc871b9117636167a068dd354a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alby=20Hern=C3=A1ndez?= Date: Mon, 6 May 2024 09:53:06 +0100 Subject: [PATCH] fix: Delete chart unused fields --- charts/bgos/Chart.yaml | 2 +- charts/bgos/templates/deployment.yaml | 2 +- charts/bgos/values.yaml | 18 +----------------- 3 files changed, 3 insertions(+), 19 deletions(-) diff --git a/charts/bgos/Chart.yaml b/charts/bgos/Chart.yaml index bbe814b..411eccf 100644 --- a/charts/bgos/Chart.yaml +++ b/charts/bgos/Chart.yaml @@ -5,7 +5,7 @@ type: application description: >- A Helm chart for BGOS, a super specific process to synchronize selected G.Workspace groups into Boundary groups following an authoritative approach -version: 0.1.1 # chart version +version: 0.1.2 # chart version appVersion: "0.1.0" # bgos version kubeVersion: ">=1.22.0-0" # kubernetes version home: https://github.com/freepik-company/bgos diff --git a/charts/bgos/templates/deployment.yaml b/charts/bgos/templates/deployment.yaml index e64b068..ef6ed4b 100644 --- a/charts/bgos/templates/deployment.yaml +++ b/charts/bgos/templates/deployment.yaml @@ -30,7 +30,7 @@ spec: image: "{{ .Values.controller.image.repository }}:{{ .Values.controller.image.tag | default (printf "v%s" .Chart.AppVersion) }}" imagePullPolicy: {{ .Values.controller.image.pullPolicy }} command: - - /manager + - /bgos - run {{- with .Values.controller.extraArgs }} diff --git a/charts/bgos/values.yaml b/charts/bgos/values.yaml index 6e59afa..1582da8 100644 --- a/charts/bgos/values.yaml +++ b/charts/bgos/values.yaml @@ -3,22 +3,6 @@ nameOverride: "" fullnameOverride: "" -# Following custom ClusterRole is a place where to add the type of resources -# allowed to be treated by BGOS. -customClusterRole: - # Specifies whether a custom clusterRole should be created - create: false - - # Annotations to add to the clusterRole - annotations: {} - - # A set of rules as documented here: https://kubernetes.io/docs/reference/access-authn-authz/rbac/ - rules: [] - - clusterRoleBinding: - # Annotations to add to the clusterRoleBinding - annotations: {} - # TODO controller: @@ -37,7 +21,7 @@ controller: repository: ghcr.io/freepik-company/bgos pullPolicy: IfNotPresent # Overrides the image tag whose default is the chart appVersion. - tag: "v0.3.0" + tag: "v0.1.0" imagePullSecrets: []