Update documentation

Signed-off-by: Tom Chauveau <tom.chauveau@epitech.eu>
This commit is contained in:
Tom Chauveau
2021-09-22 19:11:35 +02:00
parent 56083ed3d0
commit 7991991a3c
5 changed files with 14 additions and 11 deletions

View File

@@ -22,10 +22,10 @@ import (
chart: dagger.#Input & {*null | string}
// Helm chart repository
repository: dagger.#Input & {string}
repository: dagger.#Input & {*null | string}
// Helm values (either a YAML string or a Cue structure)
values: dagger.#Input & {string}
values: dagger.#Input & {*null | string}
// Kubernetes Namespace to deploy to
namespace: dagger.#Input & {string}
@@ -95,13 +95,13 @@ import (
}
},
if chart != _|_ {
if chart != null {
op.#WriteFile & {
dest: "/helm/chart"
content: chart
}
},
if (values & string) != _|_ {
if values != null {
op.#WriteFile & {
dest: "/helm/values.yaml"
content: values
@@ -121,7 +121,7 @@ import (
KUBECONFIG: "/kubeconfig"
KUBE_NAMESPACE: namespace
if repository != _|_ {
if repository != null {
HELM_REPO: repository
}
HELM_NAME: name
@@ -131,7 +131,7 @@ import (
HELM_ATOMIC: strconv.FormatBool(atomic)
}
mount: {
if chartSource != _|_ && chart == _|_ {
if chartSource != null && chart == null {
"/helm/chart": from: chartSource
}
if (kubeconfig & dagger.#Secret) != _|_ {

View File

@@ -7,9 +7,9 @@ import (
// We assume that a kinD cluster is running locally
// To deploy a local KinD cluster, follow this link : https://kind.sigs.k8s.io/docs/user/quick-start/
TestKubeconfig: string @dagger(input)
TestKubeconfig: dagger.#Input & {string}
TestChartSource: dagger.#Artifact @dagger(input)
TestChartSource: dagger.#Input & {dagger.#Artifact}
// Deploy user local chart
TestHelmSimpleChart: {

View File

@@ -95,7 +95,7 @@ import (
dest: "/kubeconfig"
content: kubeconfig
mode: 0o600
},
}
},
if manifest != null {