From 23e40e523ae3d85c04296611bbf3c587a08e7c66 Mon Sep 17 00:00:00 2001 From: Maidul Islam Date: Wed, 2 Aug 2023 17:41:45 -0400 Subject: [PATCH] highlight infisical version in k8 docs --- .../deployment-options/kubernetes-helm.mdx | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/docs/self-hosting/deployment-options/kubernetes-helm.mdx b/docs/self-hosting/deployment-options/kubernetes-helm.mdx index 36b3c5213..e0843c4fa 100644 --- a/docs/self-hosting/deployment-options/kubernetes-helm.mdx +++ b/docs/self-hosting/deployment-options/kubernetes-helm.mdx @@ -7,9 +7,6 @@ description: "Use our Helm chart to Install Infisical on your Kubernetes cluster - Installed [Helm package manager](https://helm.sh/) version v3.11.3 or greater - You have [kubectl](https://kubernetes.io/docs/reference/kubectl/kubectl/) installed and connected to your kubernetes cluster - - - By deploying Infisical on Kubernetes, you can take advantage of its features to ensure that the application is fault-tolerant, highly available, and scalable. To make the installation process easier and more streamlined, we have created a Helm chart that you can use to install Infisical on Kubernetes. @@ -34,10 +31,11 @@ By default, the application will use the latest tag to retrieve the required Doc However, it's important to specify a particular version of Infisical during installation to prevent any significant updates from disrupting your deployment. View [properties for frontend and backend](https://github.com/Infisical/infisical/tree/main/helm-charts/infisical#parameters). - -To determine the appropriate versions to use for the docker images, follow the links bellow -- [frontend Docker image](https://hub.docker.com/r/infisical/frontend/tags) -- [backend Docker image](https://hub.docker.com/r/infisical/backend/tags) + + To find the latest version number of Infisical, follow the links bellow + - [frontend Docker image](https://hub.docker.com/r/infisical/frontend/tags) + - [backend Docker image](https://hub.docker.com/r/infisical/backend/tags) + ```yaml simple-values-example.yaml frontend: @@ -45,14 +43,14 @@ frontend: replicaCount: 2 image: repository: infisical/frontend - tag: "v0.1.3" + tag: "v0.26.0" # <--- frontend version pullPolicy: Always backend: replicaCount: 2 image: repository: infisical/backend - tag: "v0.1.3" + tag: "v0.26.0" # <--- backend version pullPolicy: Always ```