GoogleCloudPlatform/continuous-deployment-on-kubernetes

gcloud container builds is deprecated

ajay-bangar opened this issue · 1 comments

Need to update Jenkinsfile for Cloud SDK updates.

Current gcloud CLI command to Build and push an image with Container Builder :
sh "PYTHONUNBUFFERED=1 gcloud container builds submit -t ${imageTag} .

Need to update as:
sh "PYTHONUNBUFFERED=1 gcloud builds submit -t ${imageTag} .

Same modifications introduced in this PR.