Skip to content

Commit 76e494f

Browse files
Merge pull request #2460 from DougAnsonAustinTX/cassendra-review
synced c4a vm setup page and images, also minor update to the baseline
2 parents 6cbe541 + 293f145 commit 76e494f

File tree

4 files changed

+29
-1
lines changed

4 files changed

+29
-1
lines changed

content/learning-paths/servers-and-cloud-computing/cassandra-on-gcp/baseline.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,3 +115,5 @@ You should see an output similar to:
115115
```
116116

117117
This baseline test verifies that Cassandra 5.0.5 is installed and running correctly on the VM. It confirms the node status, allows connection via `cqlsh`, and ensures basic operations like creating a keyspace, table, inserting, and querying data work as expected.
118+
119+
Please now press "Ctrl-D" to exit the Cassandra Query Shell.
22.3 KB
Loading
12.5 KB
Loading

content/learning-paths/servers-and-cloud-computing/cassandra-on-gcp/instance.md

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,32 @@ To create a virtual machine based on the C4A instance type:
2525
- Select `c4a-standard-4` for machine type.
2626

2727
![Create a Google Axion C4A Arm virtual machine in the Google Cloud Console with c4a-standard-4 selected alt-text#center](images/gcp-vm.png "Creating a Google Axion C4A Arm virtual machine in Google Cloud Console")
28-
- Under **OS and Storage**, select **Change**, then choose an Arm64-based OS image. For this Learning Path, use **SUSE Linux Enterprise Server**. Pick the preferred version for your Operating System. Ensure you select the **Arm image** variant. Click **Select**.
28+
29+
30+
- Under **OS and Storage**, select **Change**, then choose an Arm64-based OS image. For this Learning Path, use **SUSE Linux Enterprise Server**. Select "Pay As You Go" for the license type. Click **Select**.
2931
- Under **Networking**, enable **Allow HTTP traffic**.
3032
- Click **Create** to launch the instance.
33+
- Once created, you should see a "SSH" option to the right in your list of VM instances. Click on this to launch a SSH shell into your VM instance:
34+
35+
![Invoke a SSH session via your browser alt-text#center](images/gcp-ssh.png "Invoke a SSH session into your running VM instance")
36+
37+
- A window from your browser should come up and you should now see a shell into your VM instance:
38+
39+
![Terminal Shell in your VM instance alt-text#center](images/gcp-shell.png "Terminal shell in your VM instance")
40+
41+
## Explore your instance
42+
43+
### Run uname
44+
45+
Use the [uname](https://en.wikipedia.org/wiki/Uname) utility to verify that you are using an Arm-based server. For example:
46+
47+
```console
48+
uname -m
49+
```
50+
will identify the host machine as `aarch64`.
51+
52+
## Automating Arm Based Infrastructure Deployment
53+
54+
Cloud infrastructure deployment is typically done via Infrastructure as code (IaC) automation tools. There are Cloud Service Provider specific tools like [Google Cloud Deployment Manager](https://cloud.google.com/deployment-manager/docs/).
55+
56+
There are also Cloud Service Provider agnostic tools like [Terraform](https://www.terraform.io/).There is a [deploying Arm VMs on (GCP) using Terraform learning path](/learning-paths/servers-and-cloud-computing/gcp) that should be reviewed next.

0 commit comments

Comments
 (0)