From 29ecff80e9712ab4c6b79dd4f621b37616af42f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Sch=C3=A4fer?= Date: Mon, 15 Sep 2025 19:33:49 +0200 Subject: [PATCH] fix(self-host): fixed indentation for official Newt Kubernetes Helm install --- self-host/manual/kubernetes.mdx | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/self-host/manual/kubernetes.mdx b/self-host/manual/kubernetes.mdx index 3f5b1ee..1c40752 100644 --- a/self-host/manual/kubernetes.mdx +++ b/self-host/manual/kubernetes.mdx @@ -54,22 +54,22 @@ This guide assumes you already are familiar with Kubernetes concepts and you ful See Newt chart values configuration options. ```yaml title="values-newt.yaml" - newtInstances: - - name: main - enabled: true - auth: - existingSecretName: newt-cred - keys: - endpointKey: PANGOLIN_ENDPOINT - idKey: NEWT_ID - secretKey: NEWT_SECRET - ``` + newtInstances: + - name: main + enabled: true + auth: + existingSecretName: newt-cred + keys: + endpointKey: PANGOLIN_ENDPOINT + idKey: NEWT_ID + secretKey: NEWT_SECRET + ``` - Create a Kubernetes Secret from the env file created earlier: + Create a Kubernetes Secret from the env file created earlier: ```bash - kubectl create secret generic newt-cred -n newt --from-env-file=newt-cred.env + kubectl create secret generic newt-cred -n newt --from-env-file=newt-cred.env ``` Install Newt with Helm: