Skip to content

Commit

Permalink
chore: release 4.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pow-devops2020 committed Sep 8, 2022
1 parent bbb7ca3 commit aa11f70
Show file tree
Hide file tree
Showing 3 changed files with 94 additions and 3 deletions.
58 changes: 58 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 @@ -180,6 +184,9 @@
},
"repository": {
"type": "string"
},
"reusePullRequest": {
"type": "boolean"
}
},
"additionalProperties": false,
Expand Down Expand Up @@ -233,6 +240,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 +336,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
21 changes: 21 additions & 0 deletions schema/jenkins.io/v1/pipeline-activity.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@
"description": {
"type": "string"
},
"message": {
"type": "string"
},
"name": {
"type": "string"
},
Expand Down Expand Up @@ -306,6 +309,9 @@
"lastCommitURL": {
"type": "string"
},
"message": {
"type": "string"
},
"pipeline": {
"type": "string"
},
Expand Down Expand Up @@ -387,6 +393,9 @@
"environment": {
"type": "string"
},
"message": {
"type": "string"
},
"name": {
"type": "string"
},
Expand Down Expand Up @@ -425,6 +434,9 @@
"environment": {
"type": "string"
},
"message": {
"type": "string"
},
"name": {
"type": "string"
},
Expand Down Expand Up @@ -465,6 +477,9 @@
"mergeCommitSHA": {
"type": "string"
},
"message": {
"type": "string"
},
"name": {
"type": "string"
},
Expand Down Expand Up @@ -497,6 +512,9 @@
"description": {
"type": "string"
},
"message": {
"type": "string"
},
"name": {
"type": "string"
},
Expand Down Expand Up @@ -548,6 +566,9 @@
"description": {
"type": "string"
},
"message": {
"type": "string"
},
"name": {
"type": "string"
},
Expand Down

0 comments on commit aa11f70

Please sign in to comment.