...
Validate blueprint
Code Block language bash theme Midnight title Validate Blueprint linenumbers true cfy blueprints validate /blueprints/k8s-dl-handler.yaml
Upload the blueprint to cloudify manager.
Code Block language bash theme Midnight title Validate Blueprint linenumbers true cfy blueprint upload -b datalake /bluerint/k8s-helm.yaml
Verify Plugin versions in target Cloudify instance match to blueprint imports
Code Block language bash theme Midnight title Verify Plugin version linenumbers true cfy plugins list
- Input file modification
Before deployment, the input file should be modified to point to your tiller service and helm repository.
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
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
|
If the version of plugin used are is different, update the blueprint import to match.
Deploy Service
Code Block language bash theme Midnight title Upload and deploy blueprint linenumbers true cfy install -b dl-handler -d dl-handler -i /k8s-dl-handler-inputs.yaml /blueprints/k8s-dl-handler.yaml
...