Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ spec:
app: postgres
spec:
nodeSelector:
cloud.google.com/machine-family: n4 <1>
node.kubernetes.io/instance-type: n4-standard-4 <1>
containers:
- name: postgres
image: postgres:14-alpine
Expand All @@ -219,7 +219,7 @@ spec:
persistentVolumeClaim:
claimName: my-pvc <2>
----
<1> Specifies the machine family. In this example, it is `n4`.
<1> Specifies the instance type. In this example, it is `n4-standard-4`.
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🤖 [error] AsciiDocDITA.CalloutList: Callouts are not supported in DITA.

<2> Specifies the name of the PVC created in the preceding step. In this example, it is `my-pfc`.

.. Confirm that the deployment was successfully created by running the following command:
Expand Down