Created
July 25, 2023 18:08
-
-
Save lovemycodesnippets/443b3538153dc9b1ad50fd6abccd9b6e to your computer and use it in GitHub Desktop.
Create a Kind cluster (from "The Kubernetes Inner Loop With Cloud Foundry Korifi")
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cat <<EOF | kubectl apply -f - | |
| apiVersion: v1 | |
| kind: Namespace | |
| metadata: | |
| name: $KORIFI_NAMESPACE | |
| labels: | |
| pod-security.kubernetes.io/audit: restricted | |
| pod-security.kubernetes.io/enforce: restricted | |
| EOF |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment