Merge pull request #669 from grouville/docs_fix107

docs: update 107, fully tested and working (apart gke and eks)
This commit is contained in:
Sam Alba 2021-06-17 14:11:40 +02:00 committed by GitHub
commit 32da73c84c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -164,13 +164,12 @@ values={[
package kube
import (
"dagger.io/dagger"
"dagger.io/kubernetes"
)
// input: ~/.kube/config file used for deployment
// set with `dagger input secret kubeconfig -f ~/.kube/config`
kubeconfig: dagger.#Secret @dagger(input)
// set with `dagger input text kubeconfig -f ~/.kube/config`
kubeconfig: string @dagger(input)
// deploy uses the `dagger.io/kubernetes` package to apply a manifest to a
// Kubernetes cluster.
@ -444,9 +443,9 @@ nginx: {
metadata: labels: app: "nginx"
spec: containers: [{
"name": "nginx"
"image": image
"image": "nginx:1.14.2"
ports: [{
containerPort: port
containerPort: "80"
}]
}]
}
@ -529,6 +528,8 @@ package kube
`manifest.cue` can be rewritten as follows:
```cue title="todoapp/kube/manifest.cue"
package kube
import (
"encoding/yaml"
)