Sapan Bhatia | 51a804c | 2017-05-03 17:24:37 +0200 | [diff] [blame] | 1 | option name = "veg"; |
| 2 | option kind = "vEG"; |
| 3 | option verbose_name = "vEG Service"; |
| 4 | |
| 5 | message VEGService (Service){ |
| 6 | optional string url_filter_kind = 1 [choices = "((None, 'None'), ('safebrowsing', 'Safe Browsing'), ('answerx', 'AnswerX'))", max_length = 30, content_type = "stripped", |
| 7 | blank = True, null = True, db_index = False]; |
| 8 | required string dns_servers = 2 [default = "8.8.8.8", max_length = 255, content_type = "stripped", blank = False, null = False, db_index = False]; |
| 9 | optional string node_label = 3 [db_index = False, max_length = 30, null = True, content_type = "stripped", blank = True]; |
| 10 | required string docker_image_name = 4 [default = "docker.io/xosproject/veg", max_length = 255, content_type = "stripped", blank = False, null = False, db_index = False]; |
| 11 | required bool docker_insecure_registry = 5 [default = False, null = False, db_index = False, blank = True]; |
| 12 | } |
| 13 | |
| 14 | |
| 15 | message VEGTenant (TenantWithContainer){ |
| 16 | } |