Skip to content

Commit 6e42b7d

Browse files
authored
Merge pull request #425 from dmitchsplunk/main
AI POD workshop updates
2 parents 9d9bb5d + 3bbe6d2 commit 6e42b7d

File tree

5 files changed

+808
-16
lines changed

5 files changed

+808
-16
lines changed

content/en/ninja-workshops/14-cisco-ai-pods/10-cleanup.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,15 @@ Delete the OIDC provider:
5353
rosa delete oidc-provider --oidc-config-id $OIDC_ID
5454
```
5555

56+
Delete the network:
57+
58+
> Note: add the name of the CloudFormation stack used to create the network before
59+
> running the following command
60+
61+
``` bash
62+
aws cloudformation delete-stack --region $AWS_REGION --stack-name <stack name i.e. rosa-network-stack-nnnnnnnnnnn>
63+
```
64+
5665
Refer to [OpenShift documentation](https://docs.redhat.com/en/documentation/red_hat_openshift_service_on_aws/4/html/install_clusters/rosa-hcp-deleting-cluster)
5766
if you'd like to completely remove the Red Hat OpenShift Service from your AWS account.
5867

content/en/ninja-workshops/14-cisco-ai-pods/2-openshift-prereqs.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,11 +133,12 @@ create a new VPC in our AWS account using the following command:
133133
> Note: update the region as appropriate for your environment.
134134
135135
``` bash
136-
rosa create network --param Region=us-east-2
136+
rosa create network network-template --param Region=us-east-2 --template-dir='.'
137137
```
138138

139139
> Important: make note of the subnet ids created as a result of this command
140-
> as you'll need them when creating the cluster.
140+
> as you'll need them when creating the cluster. Make a note of the CloudFormation
141+
> stack name as well, which will be needed later if you want to delete the network.
141142
142143
> Note: by default, each AWS region is limited to 5 elastic IP addresses.
143144
> If you receive the following error:

content/en/ninja-workshops/14-cisco-ai-pods/3-deploy-openshift-cluster.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ rosa create cluster \
4444
--subnet-ids $SUBNET_IDS \
4545
--compute-machine-type $AWS_INSTANCE_TYPE \
4646
--replicas 2 \
47-
--region $AWS_REGION
47+
--region $AWS_REGION \
48+
--tags "splunkit_environment_type:non-prd,splunkit_data_classification:private"
4849
```
4950

5051
> Note that we've specified the `g5.2xlarge` instance type, which includes NVIDIA

content/en/scenarios/debug-problems/profiling/1-build-application.md

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -34,19 +34,8 @@ cd workshop/profiling
3434

3535
Now that the application is deployed, let's play with it and generate some observability data.
3636

37-
Get the external IP address for your application instance using the following command:
38-
39-
```` bash
40-
kubectl describe svc doorgame | grep "LoadBalancer Ingress"
41-
````
42-
43-
The output should look like the following:
44-
45-
```` text
46-
LoadBalancer Ingress: 52.23.184.60
47-
````
48-
49-
You should be able to access The Door Game application by pointing your browser to port 81 of the provided IP address. For example:
37+
You should be able to access The Door Game application by pointing your browser to port 81
38+
of the IP address for your EC2 instance. For example:
5039

5140
```` text
5241
http://52.23.184.60:81

0 commit comments

Comments
 (0)