Deploy > DataPipeline > AnalyticsCore #107
-
System Configuration Details:
Jenkins Logs: Started by user Admin Deployer
[Pipeline] ansiColor [Pipeline] sh
[Pipeline] // ansiColor
[Pipeline] echo [Pipeline] // ansiColor
[Pipeline] stage
[WARNING]: * Failed to parse /var/lib/jenkins/workspace/Deploy/dev/DataPipelin [WARNING]: * Failed to parse /var/lib/jenkins/workspace/Deploy/dev/DataPipelin [WARNING]: Unable to parse /var/lib/jenkins/workspace/Deploy/dev/DataPipeline/A [WARNING]: No inventory was parsed, only implicit localhost is available [WARNING]: provided hosts list is empty, only localhost is available. Note that PLAY [spark] ******************************************************************* TASK [Gathering Facts] ********************************************************* TASK [data-products-deploy : Ensure azure blob storage container exists] ******* TASK [data-products-deploy : Copy Framework Library] *************************** TASK [data-products-deploy : Copy Framework Library to azure blob] ************* TASK [data-products-deploy : Copy Scruid Library] ****************************** TASK [data-products-deploy : Copy Scruid Library to azure blob] **************** TASK [data-products-deploy : Copy configuration file] ************************** MSG: AnsibleUndefinedVariable: 'uci_encryption_key_base64' is undefined PLAY RECAP ********************************************************************* [Pipeline] } [Pipeline] // ansiColor [Pipeline] // ansiColor [Pipeline] stage
[Pipeline] // ansiColor [Pipeline] stage
[Pipeline] // ansiColor |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Looks like this variable is missing in the private repo template.
You can generate a base64 string using below command on a linux vm. |
Beta Was this translation helpful? Give feedback.
-
@keshavprasadms : This was due to the blob being there on the azure telemetry-data-store container. After manually deleting both the files, it ran fine. You might want to look at the az copy command here. Thanks. Marking this as answered |
Beta Was this translation helpful? Give feedback.
Looks like this variable is missing in the private repo template.
Please add a variable as below in both
Core/secrets.yml
andDataPipeline/secrets.yml
. Please use same value in both the secret files.You can generate a base64 string using below command on a linux vm.
echo "randomstring" | base64