From a4bb0f85e823857035c8682b04d8bff511f9ce48 Mon Sep 17 00:00:00 2001 From: mackjmr Date: Mon, 4 Dec 2023 14:01:28 +0100 Subject: [PATCH 1/2] Deploy demo to docs ng --- .gitlab-ci.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3f72d6c4a5..fd1962f302 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -258,3 +258,14 @@ staging-deploy-ds-gateway-demo-eks: CLUSTER_NAME: dd-otel CLUSTER_ARN: "arn:aws:eks:us-east-1:601427279990:cluster/dd-otel" REGION: us-east-1 +# Demo env:otel-docs +staging-docs-deploy-otel-demo-eks: + !!merge <<: *staging-deploy + variables: + NAMESPACE: otel-docs + VALUES: ./ci/values-staging.yaml + NODE_GROUP: ng-docs + SCRIPT: ./ci/scripts/ci-deploy-demo-staging.sh + CLUSTER_NAME: dd-otel + CLUSTER_ARN: "arn:aws:eks:us-east-1:601427279990:cluster/dd-otel" + REGION: us-east-1 From fe25c79ea1c8ae89825c501516adacda57209dc9 Mon Sep 17 00:00:00 2001 From: mackjmr Date: Mon, 4 Dec 2023 15:10:57 +0100 Subject: [PATCH 2/2] add values docs --- .gitlab-ci.yml | 2 +- ci/values-docs.yaml | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 ci/values-docs.yaml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fd1962f302..c3e13554f4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -263,7 +263,7 @@ staging-docs-deploy-otel-demo-eks: !!merge <<: *staging-deploy variables: NAMESPACE: otel-docs - VALUES: ./ci/values-staging.yaml + VALUES: ./ci/values-docs.yaml NODE_GROUP: ng-docs SCRIPT: ./ci/scripts/ci-deploy-demo-staging.sh CLUSTER_NAME: dd-otel diff --git a/ci/values-docs.yaml b/ci/values-docs.yaml new file mode 100644 index 0000000000..d1ead26458 --- /dev/null +++ b/ci/values-docs.yaml @@ -0,0 +1,4 @@ +default: + schedulingRules: + nodeSelector: + alpha.eksctl.io/nodegroup-name: ng-docs