From d05914bc04910657e236deea8ccbe5c489cd95c5 Mon Sep 17 00:00:00 2001 From: Stijn Polfliet Date: Wed, 12 Aug 2020 09:26:54 +0200 Subject: [PATCH 1/2] Embed Instruqt tutorial --- .../automate-workflows/get-started-kubernetes.mdx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/markdown-pages/automate-workflows/get-started-kubernetes.mdx b/src/markdown-pages/automate-workflows/get-started-kubernetes.mdx index 767615b58..c3eb10b2f 100644 --- a/src/markdown-pages/automate-workflows/get-started-kubernetes.mdx +++ b/src/markdown-pages/automate-workflows/get-started-kubernetes.mdx @@ -202,6 +202,15 @@ To finish things off, you'll create and add an alert channel to your alert polic +## Try it out now + +We have a Kubernetes test cluster ready for you in 2 minutes. +By starting this on-line tutorial, you will learn how to: +- Deploy the New Relic agent in a Kubernetes environment +- Use the New Relic Kubernetes operator + + + ## What’s next? Nice work — now you can manage your New Relic alert policies and NRQL alert conditions with code that integrates seamlessly within your Kubernetes workflow. This provides the ability to configure and manage your alerts with a domain-specific pattern, providing consistency and maintainability. You also gain the benefits of code reviews for any potential changes moving forward. From 3f885b2bc9f84f7afcfbbeeb0b5e1cc4a0f87d98 Mon Sep 17 00:00:00 2001 From: Stijn Polfliet Date: Wed, 12 Aug 2020 13:56:27 +0200 Subject: [PATCH 2/2] Fix operator and add tips --- .../automate-workflows/get-started-kubernetes.mdx | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/src/markdown-pages/automate-workflows/get-started-kubernetes.mdx b/src/markdown-pages/automate-workflows/get-started-kubernetes.mdx index c3eb10b2f..34946e3c1 100644 --- a/src/markdown-pages/automate-workflows/get-started-kubernetes.mdx +++ b/src/markdown-pages/automate-workflows/get-started-kubernetes.mdx @@ -47,7 +47,7 @@ kubectl apply --validate=false -f https://github.com/jetstack/cert-manager/relea Next, install the Kubernetes operator. ```bash lineNumbers=false -kustomize build https://github.com/newrelic/newrelic-kubernetes-operator/configs/default | kubectl apply -f - +kustomize build https://github.com/newrelic/newrelic-kubernetes-operator/config/default | kubectl apply -f - ``` To confirm the installation was successful, run a few `kubectl` commands to check the status of the Kubernetes operator. @@ -204,11 +204,18 @@ To finish things off, you'll create and add an alert channel to your alert polic ## Try it out now -We have a Kubernetes test cluster ready for you in 2 minutes. -By starting this on-line tutorial, you will learn how to: +We have a Kubernetes test cluster ready for you in 2 minutes. By following this on-line tutorial, you will learn how to: - Deploy the New Relic agent in a Kubernetes environment - Use the New Relic Kubernetes operator +**Some tips to use the on-line tutorial window:** +- Accept the cookies, so you can see the menu bar. +- Click anywhere in the tutorial window to start. It will take about 2 minutes for your environment to be ready. +- Press CTRL-l or type `clear` to clear the terminal window +- Click on the finish flag icon in the bottom menu to hide or show the instructions + +Good luck! + ## What’s next?