Skip to content

Commit

Permalink
update openapi schema
Browse files Browse the repository at this point in the history
  • Loading branch information
lilioid committed Jun 28, 2022
1 parent 65229e4 commit 3ed4ffa
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion schema.openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ info:
name: Finn Sell <[email protected]>
license:
name: MIT
version: 0.2.0
version: 0.2.11
paths: {}
components:
schemas:
Expand All @@ -16,6 +16,13 @@ components:
type: string
enum:
- ftsell.de/v1beta1
GeneratorBehavior:
description: "Possible behavior which kustomize will use when handling generated resources. Defaults to `create`.\n\nSee the [upstream go definition](https://github.com/kubernetes-sigs/kustomize/blob/master/api/types/generatorargs.go)"
type: string
enum:
- create
- replace
- merge
GitPassSource:
type: object
required:
Expand Down Expand Up @@ -75,6 +82,11 @@ components:
description: Kubernetes object apiVersion of this object
allOf:
- $ref: "#/components/schemas/ApiVersion"
behavior:
description: Which behavior kustomize uses when handling the generated resource
default: create
allOf:
- $ref: "#/components/schemas/GeneratorBehavior"
data:
description: "Data contains the secret data references.\n\nKeys will be copied to the resulting kubernetes secret object while values will be retrieved from pass. This works by using the value of **this** object as the name of the entry in pass.\n\nEach key must consist of alphanumeric characters, '-', '_' or '.'."
type: object
Expand Down

0 comments on commit 3ed4ffa

Please sign in to comment.