mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-08-06 05:54:28 -04:00
[node operator] Update README and samples
Signed-off-by: Malte Poll <mp@edgeless.systems>
This commit is contained in:
parent
e267102c92
commit
0f6de0aa26
5 changed files with 237 additions and 22 deletions
|
@ -1,6 +1,15 @@
|
|||
apiVersion: update.edgeless.systems/v1alpha1
|
||||
kind: NodeImage
|
||||
metadata:
|
||||
name: nodeimage-sample
|
||||
name: constellation-coreos-azure
|
||||
namespace: kube-system
|
||||
spec:
|
||||
# TODO(user): Add fields here
|
||||
image: "/subscriptions/<subscription-id>/resourceGroups/<resource-group>/providers/Microsoft.Compute/galleries/<gallery-name>/images/<image-definition-name>/versions/<version>"
|
||||
---
|
||||
apiVersion: update.edgeless.systems/v1alpha1
|
||||
kind: NodeImage
|
||||
metadata:
|
||||
name: constellation-coreos-gcp
|
||||
namespace: kube-system
|
||||
spec:
|
||||
image: projects/<project>/global/images/<image-name>
|
||||
|
|
|
@ -1,6 +1,21 @@
|
|||
apiVersion: update.edgeless.systems/v1alpha1
|
||||
kind: PendingNode
|
||||
metadata:
|
||||
name: pendingnode-sample
|
||||
name: pendingnode-azure
|
||||
spec:
|
||||
# TODO(user): Add fields here
|
||||
providerID: "azure:///subscriptions/<subscription-id>/resourceGroups/<resource-group>/providers/Microsoft.Compute/virtualMachineScaleSets/<scale-set-name>/virtualMachines/<instance-id>"
|
||||
groupID: "/subscriptions/<subscription-id>/resourceGroups/<resource-group>/providers/Microsoft.Compute/virtualMachineScaleSets/<scale-set-name>"
|
||||
nodeName: "<kubernetes-node-name>"
|
||||
goal: Join
|
||||
deadline: "2022-07-04T08:33:18+00:00"
|
||||
---
|
||||
apiVersion: update.edgeless.systems/v1alpha1
|
||||
kind: PendingNode
|
||||
metadata:
|
||||
name: pendingnode-gcp
|
||||
spec:
|
||||
providerID: "gce://<project-id>/<zone>/<instance-name>"
|
||||
groupID: "projects/<project-id>/zones/<zone>/instanceGroupManagers/<instance-group-name>"
|
||||
nodeName: "<kubernetes-node-name>"
|
||||
goal: Join
|
||||
deadline: "2022-07-04T08:33:18+00:00"
|
||||
|
|
|
@ -1,6 +1,19 @@
|
|||
apiVersion: update.edgeless.systems/v1alpha1
|
||||
kind: ScalingGroup
|
||||
metadata:
|
||||
name: scalinggroup-sample
|
||||
name: scalinggroup-worker-azure
|
||||
namespace: kube-system
|
||||
spec:
|
||||
# TODO(user): Add fields here
|
||||
nodeImage: "constellation-coreos-azure"
|
||||
groupId: "/subscriptions/<subscription-id>/resourceGroups/<resource-group>/providers/Microsoft.Compute/virtualMachineScaleSets/<scale-set-name>"
|
||||
autoscaling: true
|
||||
---
|
||||
apiVersion: update.edgeless.systems/v1alpha1
|
||||
kind: ScalingGroup
|
||||
metadata:
|
||||
name: scalinggroup-worker-gcp
|
||||
namespace: kube-system
|
||||
spec:
|
||||
nodeImage: "constellation-coreos-gcp"
|
||||
groupId: "projects/<project>/zones/<zone>/instanceGroupManagers/<instance-group-name>"
|
||||
autoscaling: true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue