From 7b330a2c48844c135806378f2c103e195dee2ac5 Mon Sep 17 00:00:00 2001 From: Raphael Ludwig Date: Tue, 5 Jul 2022 09:30:31 +0200 Subject: [PATCH] refactor: Apply suggestions from review Signed-off-by: Raphael Ludwig --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b59f230..0dd022a 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,7 @@ instance: #!/bin/bash VERSION=0.1.0 NAMESPACE=default + GITEA_ENDPOINT="http://gitea-http.default:3000/" GITEA_ADMIN_USERNAME=#Define a username for the admin GITEA_ADMIN_PASSWORD=#Define a password for the admin @@ -29,6 +30,7 @@ instance: --set gitea.admin.create=true \ --set gitea.admin.username=${GITEA_ADMIN_USERNAME} \ --set gitea.admin.password=${GITEA_ADMIN_PASSWORD} \ + --set gitea.endpoint=${GITEA_ENDPOINT} \ --wait ``` @@ -60,7 +62,7 @@ instance: #!/bin/bash NAMESPACE=default - helm upgrade -n keptn keptn \ + helm upgrade -n keptn keptn keptn/keptn \ --set "control-plane.features.automaticProvisioningURL=http://keptn-gitea-provisioner-service.${NAMESPACE}" ```