...
Code Block |
---|
language | bash |
---|
theme | Midnight |
---|
title | Validate BlueprintLogin to the bootstrap pod |
---|
linenumbers | true |
---|
|
kubectl exec -it <DCAE bootstrap pod> /bin/bash -n onap |
...
Code Block |
---|
language | bash |
---|
theme | Midnight |
---|
title | Validate BlueprintUpload blueprint to cloudify manager |
---|
linenumbers | true |
---|
|
cfy blueprint upload -b datalake /bluerint/k8s-helm.yaml |
...
Code Block |
---|
language | bash |
---|
theme | Midnight |
---|
title | Verify Plugin version |
---|
linenumbers | true |
---|
|
cfy plugins list |
Customization of Blueprint Input
...
File
Before deployment, the input file should be edited to point to your tiller service and helm repository. The input file should be placed in /blueprints.
Code Block |
---|
language | bash |
---|
theme | Midnight |
---|
title | Upload and deploy blueprintInput file |
---|
linenumbers | true |
---|
|
tiller-server-ip: <YOUR_CLUSTER_IP>
tiller-server-port: <TILLER_EXPOSED_PORT>
namespace: onap
chart-repo-url: <YOUR_HELM_REPO>
stable-repo-url: <YOUR_STABLE_HELM_REPO>
chart-version: 1.0.0
component-name: dcae-datalake
|
...