From 033992374afa18a83dd2be9df317e2c487499ca6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20B=C3=A4hler?= Date: Wed, 18 Oct 2023 19:25:53 +0200 Subject: [PATCH] fix(ci): build workflow --- Makefile | 2 +- charts/capsule/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9745dd388..ad480bbf4 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,5 @@ # Version +GIT_HEAD_COMMIT ?= $(shell git rev-parse --short HEAD) VERSION ?= $(shell git describe --abbrev=0 --tags --match "v*") ifndef VERSION VERSION = $(GIT_HEAD_COMMIT) @@ -7,7 +8,6 @@ endif # Defaults REGISTRY ?= ghcr.io REPOSITORY ?= projectcapsule/capsule -GIT_HEAD_COMMIT ?= $(shell git rev-parse --short HEAD) GIT_TAG_COMMIT ?= $(shell git rev-parse --short $(VERSION)) GIT_MODIFIED_1 ?= $(shell git diff $(GIT_HEAD_COMMIT) $(GIT_TAG_COMMIT) --quiet && echo "" || echo ".dev") GIT_MODIFIED_2 ?= $(shell git diff --quiet && echo "" || echo ".dirty") diff --git a/charts/capsule/README.md b/charts/capsule/README.md index 23813f9da..916dc724b 100644 --- a/charts/capsule/README.md +++ b/charts/capsule/README.md @@ -108,7 +108,7 @@ Here the values you can override: | manager.image.tag | string | `""` | Overrides the image tag whose default is the chart appVersion. | | manager.kind | string | `"Deployment"` | Set the controller deployment mode as `Deployment` or `DaemonSet`. | | manager.livenessProbe | object | `{"httpGet":{"path":"/healthz","port":10080}}` | Configure the liveness probe using Deployment probe spec | -| manager.options.capsuleUserGroups | list | `["capsule.projectcapsule.io"]` | Override the Capsule user groups | +| manager.options.capsuleUserGroups | list | `["capsule.clastix.io"]` | Override the Capsule user groups | | manager.options.forceTenantPrefix | bool | `false` | Boolean, enforces the Tenant owner, during Namespace creation, to name it using the selected Tenant name as prefix, separated by a dash | | manager.options.generateCertificates | bool | `true` | Specifies whether capsule webhooks certificates should be generated by capsule operator | | manager.options.logLevel | string | `"4"` | Set the log verbosity of the capsule with a value from 1 to 10 |