From 5eca12d8e1dd8ae49b4880d7f14c232e465cd820 Mon Sep 17 00:00:00 2001 From: Laszlo Fogas Date: Tue, 22 Aug 2023 14:47:01 +0200 Subject: [PATCH] Static-site json schema updated to match the default values.yaml --- charts/static-site/values.schema.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/charts/static-site/values.schema.json b/charts/static-site/values.schema.json index 4e81fca..6473c27 100644 --- a/charts/static-site/values.schema.json +++ b/charts/static-site/values.schema.json @@ -25,21 +25,21 @@ "type": "string", "title": "Repo url", "description": "The static site's git repository", - "default": "https://github.com/gimlet-io/hugo-site.git" + "default": "https://github.com/gimlet-io/reactjs-test-app.git" }, "buildImage": { "$id": "#/properties/buildImage", "type": "string", "title": "Build image", "description": "The image that will be used for the build proccess", - "default": "bitnami/git:latest" + "default": "node:latest" }, "buildScript": { "$id": "#/properties/buildScript", "type": "string", "title": "Build script", "description": "Commands required for the build to be completed", - "default": "# !/usr/bin/env bash\n# pre -reqs\napt-get update && apt-get install -y wget\n\n# Setting up Hugo \nwget https://github.com/gohugoio/hugo/releases/download/v0.111.3/hugo_0.111.3_Linux-64bit.tar.gz &&\ntar -xzf hugo_0.111.3_Linux-64bit.tar.gz &&\nchmod +x hugo\n\n./hugo" + "default": "# !/usr/bin/env bash\n\nnpm install\nnpm run build" }, "builtAssets": { @@ -47,7 +47,7 @@ "type": "string", "title": "Built assets", "description": "The folder containing the build's generated files", - "default": "public/" + "default": "build/" }, "ingress": { "$id": "#/properties/ingress",