Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions assets/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -5103,6 +5103,39 @@
},
"name": {
"type": "string"
},
"parameters": {
"type": "array",
"items": {
"$ref": "#/definitions/v1alpha1ApplicationSourcePluginParameter"
}
}
}
},
"v1alpha1ApplicationSourcePluginParameter": {
"type": "object",
"properties": {
"array": {
"description": "Array is the value of an array type parameter.",
"type": "array",
"items": {
"type": "string"
}
},
"map": {
"description": "Map is the value of a map type parameter.",
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"name": {
"description": "Name is the name identifying a parameter.",
"type": "string"
},
"string": {
"description": "String_ is the value of a string type parameter.",
"type": "string"
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion hack/generate-proto.sh
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ clean_swagger() {
}

echo "If additional types are added, the number of expected collisions may need to be increased"
EXPECTED_COLLISION_COUNT=62
EXPECTED_COLLISION_COUNT=63
collect_swagger server ${EXPECTED_COLLISION_COUNT}
clean_swagger server
clean_swagger reposerver
Expand Down
499 changes: 499 additions & 0 deletions manifests/core-install.yaml

Large diffs are not rendered by default.

142 changes: 142 additions & 0 deletions manifests/crds/application-crd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,29 @@ spec:
type: array
name:
type: string
parameters:
items:
properties:
array:
description: Array is the value of an array type
parameter.
items:
type: string
type: array
map:
additionalProperties:
type: string
description: Map is the value of a map type parameter.
type: object
name:
description: Name is the name identifying a parameter.
type: string
string:
description: String_ is the value of a string type
parameter.
type: string
type: object
type: array
type: object
repoURL:
description: RepoURL is the URL to the repository (Git or
Expand Down Expand Up @@ -704,6 +727,27 @@ spec:
type: array
name:
type: string
parameters:
items:
properties:
array:
description: Array is the value of an array type parameter.
items:
type: string
type: array
map:
additionalProperties:
type: string
description: Map is the value of a map type parameter.
type: object
name:
description: Name is the name identifying a parameter.
type: string
string:
description: String_ is the value of a string type parameter.
type: string
type: object
type: array
type: object
repoURL:
description: RepoURL is the URL to the repository (Git or Helm)
Expand Down Expand Up @@ -1060,6 +1104,29 @@ spec:
type: array
name:
type: string
parameters:
items:
properties:
array:
description: Array is the value of an array type
parameter.
items:
type: string
type: array
map:
additionalProperties:
type: string
description: Map is the value of a map type parameter.
type: object
name:
description: Name is the name identifying a parameter.
type: string
string:
description: String_ is the value of a string
type parameter.
type: string
type: object
type: array
type: object
repoURL:
description: RepoURL is the URL to the repository (Git or
Expand Down Expand Up @@ -1433,6 +1500,31 @@ spec:
type: array
name:
type: string
parameters:
items:
properties:
array:
description: Array is the value of an array
type parameter.
items:
type: string
type: array
map:
additionalProperties:
type: string
description: Map is the value of a map type
parameter.
type: object
name:
description: Name is the name identifying
a parameter.
type: string
string:
description: String_ is the value of a string
type parameter.
type: string
type: object
type: array
type: object
repoURL:
description: RepoURL is the URL to the repository
Expand Down Expand Up @@ -1777,6 +1869,31 @@ spec:
type: array
name:
type: string
parameters:
items:
properties:
array:
description: Array is the value of an array
type parameter.
items:
type: string
type: array
map:
additionalProperties:
type: string
description: Map is the value of a map type
parameter.
type: object
name:
description: Name is the name identifying a
parameter.
type: string
string:
description: String_ is the value of a string
type parameter.
type: string
type: object
type: array
type: object
repoURL:
description: RepoURL is the URL to the repository (Git
Expand Down Expand Up @@ -2111,6 +2228,31 @@ spec:
type: array
name:
type: string
parameters:
items:
properties:
array:
description: Array is the value of an array
type parameter.
items:
type: string
type: array
map:
additionalProperties:
type: string
description: Map is the value of a map type
parameter.
type: object
name:
description: Name is the name identifying a
parameter.
type: string
string:
description: String_ is the value of a string
type parameter.
type: string
type: object
type: array
type: object
repoURL:
description: RepoURL is the URL to the repository (Git
Expand Down
Loading