Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 7 additions & 13 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -72,19 +72,13 @@ helm install <RELEASE_NAME> \

Create the following `Secret` to hold the Oxide credentials.

[source,yaml]
----
---
apiVersion: v1
kind: Secret
metadata:
name: oxide-cloud-controller-manager
namespace: kube-system
type: Opaque
stringData:
oxide-host: "https://oxide.sys.example.com"
oxide-token: "oxide-token-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
oxide-project: "example"
[source,shell]
----
kubectl create secret generic oxide-cloud-controller-manager \
--namespace kube-system \
--from-literal=oxide-host=https://oxide.sys.example.com \
--from-literal=oxide-token=oxide-token-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX \
--from-literal=oxide-project=example
----

Apply the
Expand Down
Loading