Created
December 21, 2018 06:00
-
-
Save ravishtiwari/74e6166364b08cb01e4066c2d35b47f3 to your computer and use it in GitHub Desktop.
K8s Namespace
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
apiVersion: v1 | |
kind: Namespace | |
metadata: | |
name: www | |
labels: | |
app.kubernetes.io/name: www | |
app.kubernetes.io/part-of: www | |
--- | |
kind: ConfigMap | |
apiVersion: v1 | |
metadata: | |
name: www-configuration | |
namespace: www | |
labels: | |
app.kubernetes.io/name: www | |
app.kubernetes.io/part-of: www | |
--- | |
kind: ConfigMap | |
apiVersion: v1 | |
metadata: | |
name: tcp-services | |
namespace: www | |
labels: | |
app.kubernetes.io/name: www | |
app.kubernetes.io/part-of: www | |
--- | |
kind: ConfigMap | |
apiVersion: v1 | |
metadata: | |
name: udp-services | |
namespace: www | |
labels: | |
app.kubernetes.io/name: www | |
app.kubernetes.io/part-of: www | |
--- | |
apiVersion: v1 | |
kind: ServiceAccount | |
metadata: | |
name: www-serviceaccount | |
namespace: www | |
labels: | |
app.kubernetes.io/name: www | |
app.kubernetes.io/part-of: www | |
--- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment