mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-04 04:08:16 +00:00 
			
		
		
		
	kind is needed to start the pod
fix for the following error: the provided version "v1beta1" and kind "" cannot be mapped to a supported object
This commit is contained in:
		@@ -11,6 +11,7 @@ Trivially, a single container might be a pod.  For example, you can express a si
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
```yaml
 | 
					```yaml
 | 
				
			||||||
apiVersion: v1beta1
 | 
					apiVersion: v1beta1
 | 
				
			||||||
 | 
					kind: Pod
 | 
				
			||||||
id: www
 | 
					id: www
 | 
				
			||||||
desiredState:
 | 
					desiredState:
 | 
				
			||||||
  manifest:
 | 
					  manifest:
 | 
				
			||||||
@@ -31,6 +32,7 @@ Now that's great for a static web server, but what about persistent storage?  We
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
```yaml
 | 
					```yaml
 | 
				
			||||||
apiVersion: v1beta1
 | 
					apiVersion: v1beta1
 | 
				
			||||||
 | 
					kind: Pod
 | 
				
			||||||
id: storage
 | 
					id: storage
 | 
				
			||||||
desiredState:
 | 
					desiredState:
 | 
				
			||||||
  manifest:
 | 
					  manifest:
 | 
				
			||||||
@@ -88,6 +90,7 @@ However, often you want to have two different containers that work together.  An
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
```yaml
 | 
					```yaml
 | 
				
			||||||
apiVersion: v1beta1
 | 
					apiVersion: v1beta1
 | 
				
			||||||
 | 
					kind: Pod
 | 
				
			||||||
id: www
 | 
					id: www
 | 
				
			||||||
desiredState:
 | 
					desiredState:
 | 
				
			||||||
  manifest:
 | 
					  manifest:
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user