Skip to content

Commit

Permalink
chore: release 4.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
pow-devops2020 committed Apr 22, 2022
1 parent cf38d63 commit 63f1045
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 3 deletions.
55 changes: 55 additions & 0 deletions schema/core.jenkins-x.io/v4beta1/requirements.json
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,10 @@
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/GKEConfig"
},
"issueProvider": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/IssueTracker"
},
"kanikoFlags": {
"type": "string"
},
Expand Down Expand Up @@ -233,6 +237,53 @@
"additionalProperties": false,
"type": "object"
},
"IssueTracker": {
"properties": {
"jira": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/JiraTracker"
}
},
"additionalProperties": false,
"type": "object"
},
"JiraTracker": {
"properties": {
"project": {
"type": "string"
},
"serverUrl": {
"type": "string"
},
"userName": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"MavenRepositoryConfig": {
"properties": {
"releaseUrl": {
"type": "string"
},
"snapshotUrl": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"RepositoryConfig": {
"properties": {
"maven": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/MavenRepositoryConfig"
}
},
"additionalProperties": false,
"type": "object"
},
"Requirements": {
"properties": {
"apiVersion": {
Expand Down Expand Up @@ -282,6 +333,10 @@
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/UserNameEmailConfig"
},
"repositories": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/RepositoryConfig"
},
"repository": {
"type": "string"
},
Expand Down
18 changes: 15 additions & 3 deletions schema/jenkins.io/v1/environment.json
Original file line number Diff line number Diff line change
Expand Up @@ -582,9 +582,6 @@
},
"EphemeralVolumeSource": {
"properties": {
"readOnly": {
"type": "boolean"
},
"volumeClaimTemplate": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/PersistentVolumeClaimTemplate"
Expand Down Expand Up @@ -923,6 +920,9 @@
"backoffLimit": {
"type": "integer"
},
"completionMode": {
"type": "string"
},
"completions": {
"type": "integer"
},
Expand All @@ -936,6 +936,9 @@
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/LabelSelector"
},
"suspend": {
"type": "boolean"
},
"template": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/PodTemplateSpec"
Expand All @@ -952,6 +955,9 @@
"active": {
"type": "integer"
},
"completedIndexes": {
"type": "string"
},
"completionTime": {
"type": [
"string",
Expand Down Expand Up @@ -1383,6 +1389,9 @@
"labelSelector": {
"$ref": "#/definitions/LabelSelector"
},
"namespaceSelector": {
"$ref": "#/definitions/LabelSelector"
},
"namespaces": {
"items": {
"type": "string"
Expand Down Expand Up @@ -1761,6 +1770,9 @@
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/TCPSocketAction"
},
"terminationGracePeriodSeconds": {
"type": "integer"
},
"timeoutSeconds": {
"type": "integer"
}
Expand Down

0 comments on commit 63f1045

Please sign in to comment.