From bd53431282d3e81ac45210dbd7deab328c522063 Mon Sep 17 00:00:00 2001 From: Eron Wright Date: Fri, 10 May 2024 09:49:11 -0700 Subject: [PATCH] remove "getting started" stepper --- .../default/content/docs/esc/other-integrations/direnv.md | 2 -- .../default/content/docs/esc/other-integrations/docker.md | 2 -- .../content/docs/esc/other-integrations/kubernetes.md | 2 -- .../aws-simulated-server-interpolate-go/go.mod.txt | 8 ++++++++ .../awsx-ecr-eks-deployment-service-go/go.mod.txt | 8 ++++---- .../default/static/programs/awsx-ecr-image-go/go.mod.txt | 6 +++--- .../static/programs/awsx-ecr-repository-go/go.mod.txt | 4 ++-- .../programs/awsx-load-balanced-fargate-ecr-go/go.mod.txt | 6 +++--- .../awsx-load-balanced-fargate-nginx-go/go.mod.txt | 6 +++--- .../programs/awsx-vpc-fargate-service-go/go.mod.txt | 6 +++--- 10 files changed, 26 insertions(+), 24 deletions(-) create mode 100644 themes/default/static/programs/aws-simulated-server-interpolate-go/go.mod.txt diff --git a/themes/default/content/docs/esc/other-integrations/direnv.md b/themes/default/content/docs/esc/other-integrations/direnv.md index fc5fd812ecd..a659b1f744e 100644 --- a/themes/default/content/docs/esc/other-integrations/direnv.md +++ b/themes/default/content/docs/esc/other-integrations/direnv.md @@ -83,5 +83,3 @@ You can then retrieve the value of the environment variable: $ echo $ESC_HELLO Hello, ! ``` - -{{< get-started-stepper >}} diff --git a/themes/default/content/docs/esc/other-integrations/docker.md b/themes/default/content/docs/esc/other-integrations/docker.md index 893a04d3b14..4bfb939cf90 100644 --- a/themes/default/content/docs/esc/other-integrations/docker.md +++ b/themes/default/content/docs/esc/other-integrations/docker.md @@ -133,5 +133,3 @@ $ esc run -- sh -c 'echo ${docker.password} | docker log Login Succeeded ``` - -{{< get-started-stepper >}} diff --git a/themes/default/content/docs/esc/other-integrations/kubernetes.md b/themes/default/content/docs/esc/other-integrations/kubernetes.md index a0ea6a8f9c0..d9fc01318aa 100644 --- a/themes/default/content/docs/esc/other-integrations/kubernetes.md +++ b/themes/default/content/docs/esc/other-integrations/kubernetes.md @@ -171,5 +171,3 @@ values: When this environment is opened, expect to see a combination of environment variables and files. - -{{< get-started-stepper >}} diff --git a/themes/default/static/programs/aws-simulated-server-interpolate-go/go.mod.txt b/themes/default/static/programs/aws-simulated-server-interpolate-go/go.mod.txt new file mode 100644 index 00000000000..cdad63cdf2b --- /dev/null +++ b/themes/default/static/programs/aws-simulated-server-interpolate-go/go.mod.txt @@ -0,0 +1,8 @@ +module aws-simulated-server-interpolate-go + +go 1.20 + +require ( + github.com/pulumi/pulumi-aws/sdk/v6 v6.18.0 + github.com/pulumi/pulumi/sdk/v3 v3.102.0 +) diff --git a/themes/default/static/programs/awsx-ecr-eks-deployment-service-go/go.mod.txt b/themes/default/static/programs/awsx-ecr-eks-deployment-service-go/go.mod.txt index 0f9e7fcadc6..0382fb69b9e 100644 --- a/themes/default/static/programs/awsx-ecr-eks-deployment-service-go/go.mod.txt +++ b/themes/default/static/programs/awsx-ecr-eks-deployment-service-go/go.mod.txt @@ -1,10 +1,10 @@ -module awsx-ecr-eks-deployment-service-go +module awsx-ecr-eks-deployment-service-yaml go 1.20 require ( - github.com/pulumi/pulumi-awsx/sdk/v2 v2.4.0 + github.com/pulumi/pulumi-awsx/sdk/v2 v2.2.0 github.com/pulumi/pulumi-eks/sdk/v2 v2.0.0 - github.com/pulumi/pulumi-kubernetes/sdk/v4 v4.6.1 - github.com/pulumi/pulumi/sdk/v3 v3.100.0 + github.com/pulumi/pulumi-kubernetes/sdk/v4 v4.5.4 + github.com/pulumi/pulumi/sdk/v3 v3.92.0 ) diff --git a/themes/default/static/programs/awsx-ecr-image-go/go.mod.txt b/themes/default/static/programs/awsx-ecr-image-go/go.mod.txt index c759664a897..18b61e93e06 100644 --- a/themes/default/static/programs/awsx-ecr-image-go/go.mod.txt +++ b/themes/default/static/programs/awsx-ecr-image-go/go.mod.txt @@ -1,8 +1,8 @@ -module awsx-ecr-image-go +module repo-go go 1.20 require ( - github.com/pulumi/pulumi-awsx/sdk/v2 v2.4.0 - github.com/pulumi/pulumi/sdk/v3 v3.100.0 + github.com/pulumi/pulumi-awsx/sdk/v2 v2.2.0 + github.com/pulumi/pulumi/sdk/v3 v3.91.1 ) diff --git a/themes/default/static/programs/awsx-ecr-repository-go/go.mod.txt b/themes/default/static/programs/awsx-ecr-repository-go/go.mod.txt index 8b015a5d949..0601d77ee3c 100644 --- a/themes/default/static/programs/awsx-ecr-repository-go/go.mod.txt +++ b/themes/default/static/programs/awsx-ecr-repository-go/go.mod.txt @@ -3,6 +3,6 @@ module awsx-ecr-repository-go go 1.20 require ( - github.com/pulumi/pulumi-awsx/sdk/v2 v2.4.0 - github.com/pulumi/pulumi/sdk/v3 v3.100.0 + github.com/pulumi/pulumi-awsx/sdk/v2 v2.3.0 + github.com/pulumi/pulumi/sdk/v3 v3.93.0 ) diff --git a/themes/default/static/programs/awsx-load-balanced-fargate-ecr-go/go.mod.txt b/themes/default/static/programs/awsx-load-balanced-fargate-ecr-go/go.mod.txt index 9a10e8693eb..be95271e269 100644 --- a/themes/default/static/programs/awsx-load-balanced-fargate-ecr-go/go.mod.txt +++ b/themes/default/static/programs/awsx-load-balanced-fargate-ecr-go/go.mod.txt @@ -3,7 +3,7 @@ module awsx-load-balanced-fargate-nginx-go go 1.20 require ( - github.com/pulumi/pulumi-aws/sdk/v6 v6.17.0 - github.com/pulumi/pulumi-awsx/sdk/v2 v2.4.0 - github.com/pulumi/pulumi/sdk/v3 v3.100.0 + github.com/pulumi/pulumi-aws/sdk/v6 v6.10.0 + github.com/pulumi/pulumi-awsx/sdk/v2 v2.2.0 + github.com/pulumi/pulumi/sdk/v3 v3.93.0 ) diff --git a/themes/default/static/programs/awsx-load-balanced-fargate-nginx-go/go.mod.txt b/themes/default/static/programs/awsx-load-balanced-fargate-nginx-go/go.mod.txt index 9a10e8693eb..be95271e269 100644 --- a/themes/default/static/programs/awsx-load-balanced-fargate-nginx-go/go.mod.txt +++ b/themes/default/static/programs/awsx-load-balanced-fargate-nginx-go/go.mod.txt @@ -3,7 +3,7 @@ module awsx-load-balanced-fargate-nginx-go go 1.20 require ( - github.com/pulumi/pulumi-aws/sdk/v6 v6.17.0 - github.com/pulumi/pulumi-awsx/sdk/v2 v2.4.0 - github.com/pulumi/pulumi/sdk/v3 v3.100.0 + github.com/pulumi/pulumi-aws/sdk/v6 v6.10.0 + github.com/pulumi/pulumi-awsx/sdk/v2 v2.2.0 + github.com/pulumi/pulumi/sdk/v3 v3.93.0 ) diff --git a/themes/default/static/programs/awsx-vpc-fargate-service-go/go.mod.txt b/themes/default/static/programs/awsx-vpc-fargate-service-go/go.mod.txt index 670caa6bf82..d31b2a22ec3 100644 --- a/themes/default/static/programs/awsx-vpc-fargate-service-go/go.mod.txt +++ b/themes/default/static/programs/awsx-vpc-fargate-service-go/go.mod.txt @@ -3,7 +3,7 @@ module awsx-vpc-fargate-service-yaml go 1.20 require ( - github.com/pulumi/pulumi-aws/sdk/v6 v6.17.0 - github.com/pulumi/pulumi-awsx/sdk/v2 v2.4.0 - github.com/pulumi/pulumi/sdk/v3 v3.100.0 + github.com/pulumi/pulumi-aws/sdk/v6 v6.10.0 + github.com/pulumi/pulumi-awsx/sdk/v2 v2.2.0 + github.com/pulumi/pulumi/sdk/v3 v3.93.0 )