...
In the ProvisioningStatus struct, the podAgents variable is defined. This variable will display a list of the names of the pods that are part of the provisioning agent deployment when the status of the deployment is queried.
Sample Provisioning CR YAML
...
files
Code Block | ||
---|---|---|
| ||
apiVersion: bpa.akraino.org/v1alpha1
kind: Provisioning
metadata:
name: provisioning-sample
spec:
master:
mac-address: 00:c6:14:04:61:b2
worker:
mac-address: 00:c6:14:04:61:b2
|
Code Block | ||
---|---|---|
| ||
apiVersion: bpa.akraino.org/v1alpha1 kind: Provisioning metadata: name: provisioning-sample spec: master: cpu: 10 memory: 4Gi mac-address: 00:c5:16:05:61:b2 worker: cpu: 20 memory: 8Gi mac-address: 00:c6:14:04:61:b2 |
...