-
Notifications
You must be signed in to change notification settings - Fork 116
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding kubernetes-provider quickstart #853
base: master
Are you sure you want to change the base?
Conversation
✅ Deploy Preview for crossplane ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
Signed-off-by: Cory Sherman <[email protected]>
Signed-off-by: Cory Sherman <[email protected]>
|
||
## Install the Kubernetes provider | ||
|
||
Install the Azure Network resource provider into the Kubernetes cluster with a Kubernetes configuration |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Install the Azure Network resource provider into the Kubernetes cluster with a Kubernetes configuration | |
Install the Kubernetes provider into the Kubernetes cluster with a Kubernetes configuration |
apiVersion: pkg.crossplane.io/v1 | ||
kind: Provider | ||
metadata: | ||
name: provider-azure-network |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
name: provider-azure-network | |
name: provider-kubernetes |
metadata: | ||
name: provider-kubernetes | ||
EOF | ||
--- |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missing closing code block? or maybe one too much?
name: cluster-admin | ||
apiGroup: rbac.authorization.k8s.io | ||
EOF | ||
--- |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missing close code block here too?
```shell {copy-lines="1",label="getProvider"} | ||
kubectl get providers | ||
NAME INSTALLED HEALTHY PACKAGE AGE | ||
provider-kubernetes True True xpkg.upbound.io/upbound/provider-azure-network:v1.16.0 38s |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
provider-kubernetes True True xpkg.upbound.io/upbound/provider-azure-network:v1.16.0 38s | |
provider-kubernetes True True xpkg.upbound.io/upbound/provider-kubernetes:v1.16.2 38s |
metadata: | ||
name: provider-azure-network | ||
spec: | ||
package: xpkg.upbound.io/upbound/provider-kubernetes:v0.16.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
package: xpkg.upbound.io/upbound/provider-kubernetes:v0.16.0 | |
package: xpkg.upbound.io/upbound/provider-kubernetes:v0.16.2 |
@@ -0,0 +1,243 @@ | |||
--- | |||
title: KubeAdm Quickstart |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
title: KubeAdm Quickstart | |
title: Kubernetes Provider Quickstart |
```yaml | ||
cat <<EOF | kubectl apply -f - | ||
apiVersion: pkg.crossplane.io/v1beta1 | ||
kind: DeploymentRuntimeConfig | ||
metadata: | ||
name: provider-kubernetes | ||
spec: | ||
serviceAccountTemplate: | ||
metadata: | ||
name: provider-kubernetes | ||
EOF | ||
--- |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🤔 looks we are missing a story here. What's going on? should the section Create a ProviderConfig
below be dropped?
No description provided.