From c994953cf7359cd025bd895c09d5052b5b3e6f91 Mon Sep 17 00:00:00 2001 From: Anil Belur Date: Tue, 7 Jan 2020 21:36:05 +1000 Subject: [PATCH] Rm kubernetes template This file must have been removed as a part I97c8d1da3aea978e59987db4f6f6ef6fd8c22dab Signed-off-by: Anil Belur Change-Id: I93b2f7091484c82757fc2052da0d52e3015457c9 --- packer/templates/kubernetes.json | 63 -------------------------------- 1 file changed, 63 deletions(-) delete mode 100644 packer/templates/kubernetes.json diff --git a/packer/templates/kubernetes.json b/packer/templates/kubernetes.json deleted file mode 100644 index 1e972c076..000000000 --- a/packer/templates/kubernetes.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "variables": { - "ansible_roles_path": "roles/coe", - "arch": "x86_64", - "base_image": null, - "cloud_network": null, - "cloud_user_data": null, - "cloud_region": "ca-ymq-1", - "cloud_availability_zone": "ca-ymq-2", - "vm_use_block_storage": "true", - "vm_volume_size": "20", - "vm_image_disk_format": "", - "distro": null, - "flavor": "v2-highcpu-1", - "ssh_user": null, - "ssh_proxy_host": "" - }, - "builders": [ - { - "name": "vexxhost", - "image_name": "ZZCI - {{user `distro`}} - kubernetes - {{user `arch`}} - {{isotime \"20060102-150405.000\"}}", - "instance_name": "{{user `distro`}}-kubernetes-{{uuid}}", - "source_image_name": "{{user `base_image`}}", - "type": "openstack", - "region": "ca-ymq-1", - "availability_zone": "ca-ymq-2", - "networks": [ - "{{user `cloud_network`}}" - ], - "user_data_file": "{{user `cloud_user_data`}}", - "ssh_username": "{{user `ssh_user`}}", - "ssh_proxy_host": "{{user `ssh_proxy_host`}}", - "flavor": "v1-standard-1", - "metadata": { - "ci_managed": "yes" - } - } - ], - "provisioners": [ - { - "type": "shell", - "scripts": [ - "common-packer/provision/install-python.sh" - ], - "execute_command": "chmod +x {{ .Path }}; if [ \"$UID\" == \"0\" ]; then {{ .Vars }} '{{ .Path }}'; else {{ .Vars }} sudo -E '{{ .Path }}'; fi" - }, - { - "type": "shell-local", - "command": "./common-packer/ansible-galaxy.sh {{user `ansible_roles_path`}} provision/roles/coe/requirements.yaml" - }, - { - "type": "ansible", - "playbook_file": "provision/kubernetes.yaml", - "ansible_env_vars": [ - "ANSIBLE_NOCOWS=1", - "ANSIBLE_PIPELINING=True", - "ANSIBLE_ROLES_PATH={{user `ansible_roles_path`}}", - "ANSIBLE_CALLBACK_WHITELIST=profile_tasks", - "ANSIBLE_STDOUT_CALLBACK=debug" - ] - } - ] -} -- 2.36.6