Skip to content

Commit

Permalink
feat: kustomize integration (#637)
Browse files Browse the repository at this point in the history
Signed-off-by: Derek Wang <[email protected]>
  • Loading branch information
whynowy authored Mar 27, 2023
1 parent 5062aac commit 2f112fb
Show file tree
Hide file tree
Showing 21 changed files with 1,801 additions and 353 deletions.
6 changes: 6 additions & 0 deletions api/json-schema/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -17553,6 +17553,12 @@
},
"type": "array"
},
"envFrom": {
"items": {
"$ref": "#/definitions/io.k8s.api.core.v1.EnvFromSource"
},
"type": "array"
},
"imagePullPolicy": {
"type": "string"
},
Expand Down
6 changes: 6 additions & 0 deletions api/openapi-spec/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -17558,6 +17558,12 @@
"$ref": "#/definitions/io.k8s.api.core.v1.EnvVar"
}
},
"envFrom": {
"type": "array",
"items": {
"$ref": "#/definitions/io.k8s.api.core.v1.EnvFromSource"
}
},
"imagePullPolicy": {
"type": "string"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -464,6 +464,27 @@ spec:
- name
type: object
type: array
envFrom:
items:
properties:
configMapRef:
properties:
name:
type: string
optional:
type: boolean
type: object
prefix:
type: string
secretRef:
properties:
name:
type: string
optional:
type: boolean
type: object
type: object
type: array
imagePullPolicy:
type: string
resources:
Expand Down Expand Up @@ -651,6 +672,27 @@ spec:
- name
type: object
type: array
envFrom:
items:
properties:
configMapRef:
properties:
name:
type: string
optional:
type: boolean
type: object
prefix:
type: string
secretRef:
properties:
name:
type: string
optional:
type: boolean
type: object
type: object
type: array
imagePullPolicy:
type: string
resources:
Expand Down Expand Up @@ -818,6 +860,27 @@ spec:
- name
type: object
type: array
envFrom:
items:
properties:
configMapRef:
properties:
name:
type: string
optional:
type: boolean
type: object
prefix:
type: string
secretRef:
properties:
name:
type: string
optional:
type: boolean
type: object
type: object
type: array
imagePullPolicy:
type: string
resources:
Expand Down Expand Up @@ -1484,6 +1547,27 @@ spec:
- name
type: object
type: array
envFrom:
items:
properties:
configMapRef:
properties:
name:
type: string
optional:
type: boolean
type: object
prefix:
type: string
secretRef:
properties:
name:
type: string
optional:
type: boolean
type: object
type: object
type: array
imagePullPolicy:
type: string
resources:
Expand Down Expand Up @@ -1640,6 +1724,27 @@ spec:
- name
type: object
type: array
envFrom:
items:
properties:
configMapRef:
properties:
name:
type: string
optional:
type: boolean
type: object
prefix:
type: string
secretRef:
properties:
name:
type: string
optional:
type: boolean
type: object
type: object
type: array
imagePullPolicy:
type: string
resources:
Expand Down Expand Up @@ -1807,6 +1912,27 @@ spec:
- name
type: object
type: array
envFrom:
items:
properties:
configMapRef:
properties:
name:
type: string
optional:
type: boolean
type: object
prefix:
type: string
secretRef:
properties:
name:
type: string
optional:
type: boolean
type: object
type: object
type: array
imagePullPolicy:
type: string
resources:
Expand Down Expand Up @@ -2022,6 +2148,27 @@ spec:
- name
type: object
type: array
envFrom:
items:
properties:
configMapRef:
properties:
name:
type: string
optional:
type: boolean
type: object
prefix:
type: string
secretRef:
properties:
name:
type: string
optional:
type: boolean
type: object
type: object
type: array
imagePullPolicy:
type: string
resources:
Expand Down
105 changes: 105 additions & 0 deletions config/base/crds/full/numaflow.numaproj.io_pipelines.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -554,6 +554,27 @@ spec:
- name
type: object
type: array
envFrom:
items:
properties:
configMapRef:
properties:
name:
type: string
optional:
type: boolean
type: object
prefix:
type: string
secretRef:
properties:
name:
type: string
optional:
type: boolean
type: object
type: object
type: array
imagePullPolicy:
type: string
resources:
Expand Down Expand Up @@ -728,6 +749,27 @@ spec:
- name
type: object
type: array
envFrom:
items:
properties:
configMapRef:
properties:
name:
type: string
optional:
type: boolean
type: object
prefix:
type: string
secretRef:
properties:
name:
type: string
optional:
type: boolean
type: object
type: object
type: array
imagePullPolicy:
type: string
resources:
Expand Down Expand Up @@ -1342,6 +1384,27 @@ spec:
- name
type: object
type: array
envFrom:
items:
properties:
configMapRef:
properties:
name:
type: string
optional:
type: boolean
type: object
prefix:
type: string
secretRef:
properties:
name:
type: string
optional:
type: boolean
type: object
type: object
type: array
imagePullPolicy:
type: string
resources:
Expand Down Expand Up @@ -1984,6 +2047,27 @@ spec:
- name
type: object
type: array
envFrom:
items:
properties:
configMapRef:
properties:
name:
type: string
optional:
type: boolean
type: object
prefix:
type: string
secretRef:
properties:
name:
type: string
optional:
type: boolean
type: object
type: object
type: array
imagePullPolicy:
type: string
resources:
Expand Down Expand Up @@ -2158,6 +2242,27 @@ spec:
- name
type: object
type: array
envFrom:
items:
properties:
configMapRef:
properties:
name:
type: string
optional:
type: boolean
type: object
prefix:
type: string
secretRef:
properties:
name:
type: string
optional:
type: boolean
type: object
type: object
type: array
imagePullPolicy:
type: string
resources:
Expand Down
Loading

0 comments on commit 2f112fb

Please sign in to comment.