-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpc_ova.yml
50 lines (41 loc) · 1.19 KB
/
pc_ova.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
pc_ip: valid-pc-ip
# Specify a user with permission to make API calls.
pc_credential: pc_user # credential reference from "vaults" in global.yml file
#Create
ovas:
# OVAs that needs to be uploaded to the PC clusters
- url: http://url-to-download-ova-from # url where the ova file is located
name: ova-name # name of the ova to be uploaded to the PC clusters
cluster_name_list: [cluster-1, cluster-2] # cluster names to upload ovas. We can upload to multiple clusters
#Delete
#TODO Delete using UUID
ovas:
- name: ova-name
######################################## SCHEMA DOCUMENTATION ########################################
### ---CREATE SCHEMA --- ###
# ovas:
# type: list
# schema:
# type: dict
# schema:
# url:
# type: string
# required: true
# name:
# type: string
# required: true
# cluster_name_list:
# type: list
# required: true
#
### ---DELETE SCHEMA --- ###
# ovas:
# type: list
# schema:
# type: dict
# schema:
# name:
# type: string
# required: true
#
####################################################################################################