Difference between revisions of "Kubernetes metadata"

From wikieduonline
Jump to navigation Jump to search
Tags: Mobile web edit, Mobile edit
Tags: Mobile web edit, Mobile edit
Line 36: Line 36:
 
{{kubernetes manifest official example}}
 
{{kubernetes manifest official example}}
  
== See also ==
+
== Related ==
 
* <code>[[kind: Pod]]</code>
 
* <code>[[kind: Pod]]</code>
 
* [[template.metadata]]
 
* [[template.metadata]]
 +
* [[creationTimestamp]]
  
 
== See also ==
 
== See also ==

Revision as of 11:31, 31 March 2023


apiVersion: batch/v1
kind: CronJob
metadata:
  name: hello
spec:
  schedule: "*/1 * * * *"
.../...
kind: PersistentVolumeClaim
metadata:
    name: YourVolumeName
.../...
.../...
metadata:
 labels:
.../...
apiVersion: v1
kind: ConfigMap
metadata:
  ...
data:
  ...
immutable: true


metadata:
  annotations:
    kubernetes.io/psp: eks.privileged


resource "kubernetes_manifest" "test-configmap" {
 manifest = {
   "apiVersion" = "v1"
   "kind"       = "ConfigMap"
   "metadata" = {
     "name"      = "test-config"
     "namespace" = "default"
   }
   "data" = {
     "foo" = "bar"
   }
 }
}

Related

See also

Advertising: