-
Notifications
You must be signed in to change notification settings - Fork 0
/
WordPressSite-crd.yaml
162 lines (162 loc) · 5.98 KB
/
WordPressSite-crd.yaml
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
name: wordpresssites.wordpress.epfl.ch
spec:
group: wordpress.epfl.ch
names:
kind: WordpressSite
listKind: WordpressSiteList
plural: wordpresssites
singular: wordpresssite
shortNames:
- wp
- wps
- wordpresses
scope: Namespaced
versions:
- name: v1
schema:
openAPIV3Schema:
description: WordpressSite is the Schema for the wordpresssites API
type: object
properties:
apiVersion:
description: 'APIVersion defines the versioned schema of this representation
of an object. Servers should convert recognized schemas to the latest
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
type: string
kind:
description: 'Kind is a string value representing the REST resource this
object represents. Servers may infer this from the endpoint the client
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
type: string
metadata:
type: object
spec:
description: Spec defines the desired state of WordpressSite
type: object
x-kubernetes-preserve-unknown-fields: true
properties:
hostname:
description: Hostname of the desired WordpressSite
type: string
pattern: ^www.epfl.ch$
default: www.epfl.ch
path:
description: Path to the WordpressSite
type: string
pattern: ^/(.*)
visibility:
description: Set the visibility of the WordpressSite (public / internal)
type: string
pattern: ^(public|internal)$
kubernetes:
description: WordpressSite's k8s related properties
type: object
properties:
service:
description: Defines which service WordpressSite will be deployed to (ex-environment)
type: string
wordpress:
description: WordpressSite's own specs
type: object
properties:
title:
description: WordpressSite's title
type: string
pattern: ^[\w\p{L}\p{M}\p{N}\p{P}\p{S}@._\- ]{1,}$
tagline:
description: WordpressSite's tagline
type: string
pattern: ^[\w\p{L}\p{M}\p{N}\p{P}\p{S}@._\- ]{1,}$
theme:
description: WordpressSite's theme
type: string
pattern: ^(wp-theme-2018|wp-theme-light|epfl-master|epfl-blank)$
languages:
description: WordpressSite's languages
type: array
items:
type: string
pattern: ^[a-z]{2}$
plugins:
description: WordpressSite's plugins
type: array
items:
type: string
pattern: ^[\w -_.]{3,}$
debug:
description: Whether or not activate the WP_DEBUG
type: boolean
default: false
required:
- title
- tagline
- theme
- languages
epfl:
description: WordpressSite's EPFL related specs
type: object
properties:
unit_id:
description: WordpressSite's EPFL unit ID
type: integer
pattern: ^\d{5}$
importFromOS3:
description: Import database from existing OpenShift 3 site
type: object
properties:
environment:
description: Site environment (labs, inside, www, subdomains-lite)
type: string
pattern: ^(labs|inside|www|subdomains-lite)$
ansibleHost:
description: Current host used by Ansible
type: string
pattern: ^[a-z_]+$
required:
- unit_id
required:
- hostname
- path
- visibility
- kubernetes
- wordpress
- epfl
history:
description: History describes the organizational reasons why this WordpressSite exists.
type: object
x-kubernetes-preserve-unknown-fields: true
status:
description: Status defines the observed state of WordpressSite
type: object
x-kubernetes-preserve-unknown-fields: true
additionalPrinterColumns:
- name: Path
type: string
description: "URL path of the site"
jsonPath: ".spec.path"
- name: Unit
type: string
description: "WordPress site's unit"
jsonPath: ".spec.epfl.unit_id"
- name: Languages
type: string
description: "Initial languages for the site"
jsonPath: ".spec.wordpress.languages"
- name: Plugins
type: string
description: "Initial plugins for the site"
jsonPath: ".spec.wordpress.plugins"
priority: 1
- name: Tagline
type: string
description: "Initial tagline"
jsonPath: ".spec.wordpress.tagline"
priority: 1
served: true
storage: true
subresources:
status: {}