Skip to content

Commit 46c3d53

Browse files
authored
Merge pull request #6 from GoodRxOSS/update-helm-install-steps
Link to lifecycle helm chart readme for installation
2 parents 56677e8 + 2f63e9d commit 46c3d53

File tree

3 files changed

+3
-18
lines changed

3 files changed

+3
-18
lines changed

src/lib/static/blogcontent/blogcontent.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"description": null,
5454
"date": null,
5555
"path": "docs/setup/install-lifecycle",
56-
"body": "Now that the infrastructure components are setup, let's install the lifecycle app and create a new Github app that will send events to the application to process and create ephemeral dev environments.\n\n\n Make sure you have updated the kube config to be able to `helm install` in the\n cluster you just created!\n\n\n- Clone the repository:\n\n```sh\ngit clone https://github.com/GoodRxOSS/lifecycle\ncd lifecycle\n```\n\n- Install the Lifecycle Helm chart:\n\n```sh\nhelm upgrade -i lifecycle helm/web-app --namespace lifecycle-app --values ./helm/environments/default/lifecycle.yaml --set components.web.ingress.hosts\\[0\\].host=app.\n```\n\n\n Make sure to replace values with your actual domain.\n\n\n- Wait for the installation to complete and verify that the pods are running:\n\n```sh\nkubectl get pods -n lifecycle-app\n```\n\n- Once the pods are running, you can access the application at your configured domain (e.g. `https://app.0env.com`)\n\n\n\nJust like that, you have successfully installed Lifecycle and set up the necessary infrastructure to start creating ephemeral environments for your GitHub pull requests!\n\nIf you notice any secure certificate issues when accessing the application, you can check the status of your certificate using the following command:\n\n```sh\nkubectl get certificate -n lifecycle-app\n```\n\n\n\nMake sure the certificate is in the `Ready` state. If it is not, you may need to wait a bit longer for the certificate to be issued or troubleshoot any issues with your DNS settings.\n\nLet's move on to the next step where we will create a GitHub app to connect Lifecycle with your repositories."
56+
"body": "Now that the infrastructure components are setup, let's install the lifecycle app and create a new Github app that will send events to the application to process and create ephemeral dev environments.\n\n\n Make sure you have updated the kube config to be able to `helm install` in the\n cluster you just created!\n\n\n- Follow installation steps in [lifecycle helm chart](https://github.com/GoodRxOSS/helm-charts/blob/main/charts/lifecycle/README.md)\n\n- Wait for the installation to complete and verify that the pods are running:\n\n```sh\nkubectl get pods -n lifecycle-app\n```\n\n- Once the pods are running, you can access the application at your configured domain (e.g. `https://app.0env.com`)\n\n\n\nJust like that, you have successfully installed Lifecycle and set up the necessary infrastructure to start creating ephemeral environments for your GitHub pull requests!\n\nIf you notice any secure certificate issues when accessing the application, you can check the status of your certificate using the following command:\n\n```sh\nkubectl get certificate -n lifecycle-app\n```\n\n\n\nMake sure the certificate is in the `Ready` state. If it is not, you may need to wait a bit longer for the certificate to be issued or troubleshoot any issues with your DNS settings.\n\nLet's move on to the next step where we will create a GitHub app to connect Lifecycle with your repositories."
5757
},
5858
{
5959
"title": "Prerequisites",

src/lib/static/blogcontent/blogcontent.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export const blogContent = [
5757
description: null,
5858
date: null,
5959
path: "docs/setup/install-lifecycle",
60-
body: "Now that the infrastructure components are setup, let's install the lifecycle app and create a new Github app that will send events to the application to process and create ephemeral dev environments.\n\n\n Make sure you have updated the kube config to be able to `helm install` in the\n cluster you just created!\n\n\n- Clone the repository:\n\n```sh\ngit clone https://github.com/GoodRxOSS/lifecycle\ncd lifecycle\n```\n\n- Install the Lifecycle Helm chart:\n\n```sh\nhelm upgrade -i lifecycle helm/web-app --namespace lifecycle-app --values ./helm/environments/default/lifecycle.yaml --set components.web.ingress.hosts\\[0\\].host=app.\n```\n\n\n Make sure to replace values with your actual domain.\n\n\n- Wait for the installation to complete and verify that the pods are running:\n\n```sh\nkubectl get pods -n lifecycle-app\n```\n\n- Once the pods are running, you can access the application at your configured domain (e.g. `https://app.0env.com`)\n\n\n\nJust like that, you have successfully installed Lifecycle and set up the necessary infrastructure to start creating ephemeral environments for your GitHub pull requests!\n\nIf you notice any secure certificate issues when accessing the application, you can check the status of your certificate using the following command:\n\n```sh\nkubectl get certificate -n lifecycle-app\n```\n\n\n\nMake sure the certificate is in the `Ready` state. If it is not, you may need to wait a bit longer for the certificate to be issued or troubleshoot any issues with your DNS settings.\n\nLet's move on to the next step where we will create a GitHub app to connect Lifecycle with your repositories.",
60+
body: "Now that the infrastructure components are setup, let's install the lifecycle app and create a new Github app that will send events to the application to process and create ephemeral dev environments.\n\n\n Make sure you have updated the kube config to be able to `helm install` in the\n cluster you just created!\n\n\n- Follow installation steps in [lifecycle helm chart](https://github.com/GoodRxOSS/helm-charts/blob/main/charts/lifecycle/README.md)\n\n- Wait for the installation to complete and verify that the pods are running:\n\n```sh\nkubectl get pods -n lifecycle-app\n```\n\n- Once the pods are running, you can access the application at your configured domain (e.g. `https://app.0env.com`)\n\n\n\nJust like that, you have successfully installed Lifecycle and set up the necessary infrastructure to start creating ephemeral environments for your GitHub pull requests!\n\nIf you notice any secure certificate issues when accessing the application, you can check the status of your certificate using the following command:\n\n```sh\nkubectl get certificate -n lifecycle-app\n```\n\n\n\nMake sure the certificate is in the `Ready` state. If it is not, you may need to wait a bit longer for the certificate to be issued or troubleshoot any issues with your DNS settings.\n\nLet's move on to the next step where we will create a GitHub app to connect Lifecycle with your repositories.",
6161
},
6262
{
6363
title: "Prerequisites",

src/pages/docs/setup/install-lifecycle.mdx

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -17,22 +17,7 @@ Now that the infrastructure components are setup, let's install the lifecycle ap
1717
cluster you just created!
1818
</Callout>
1919

20-
- Clone the repository:
21-
22-
```sh
23-
git clone https://github.com/GoodRxOSS/lifecycle
24-
cd lifecycle
25-
```
26-
27-
- Install the Lifecycle Helm chart:
28-
29-
```sh
30-
helm upgrade -i lifecycle helm/web-app --namespace lifecycle-app --values ./helm/environments/default/lifecycle.yaml --set components.web.ingress.hosts\[0\].host=app.<your_domain_here>
31-
```
32-
33-
<Callout type="info">
34-
Make sure to replace values with your actual domain.
35-
</Callout>
20+
- Follow installation steps in [lifecycle helm chart](https://github.com/GoodRxOSS/helm-charts/blob/main/charts/lifecycle/README.md)
3621

3722
- Wait for the installation to complete and verify that the pods are running:
3823

0 commit comments

Comments
 (0)