Skip to content

Commit 6102ccc

Browse files
author
OpenShift Bot
authored
Merge pull request #14112 from rootfs/iscsi-chap
Merged by openshift-bot
2 parents 5977d2d + 4f484e2 commit 6102ccc

24 files changed

+380
-70
lines changed

api/swagger-spec/api-v1.json

+9
Original file line numberDiff line numberDiff line change
@@ -19338,6 +19338,15 @@
1933819338
"type": "string"
1933919339
},
1934019340
"description": "iSCSI target portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)."
19341+
},
19342+
"chapAuthDiscovery": {
19343+
"type": "boolean"
19344+
},
19345+
"chapAuthSession": {
19346+
"type": "boolean"
19347+
},
19348+
"secretRef": {
19349+
"$ref": "v1.LocalObjectReference"
1934119350
}
1934219351
}
1934319352
},

api/swagger-spec/oapi-v1.json

+9
Original file line numberDiff line numberDiff line change
@@ -26007,6 +26007,15 @@
2600726007
"type": "string"
2600826008
},
2600926009
"description": "iSCSI target portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)."
26010+
},
26011+
"chapAuthDiscovery": {
26012+
"type": "boolean"
26013+
},
26014+
"chapAuthSession": {
26015+
"type": "boolean"
26016+
},
26017+
"secretRef": {
26018+
"$ref": "v1.LocalObjectReference"
2601026019
}
2601126020
}
2601226021
},

api/swagger-spec/openshift-openapi-spec.json

+12
Original file line numberDiff line numberDiff line change
@@ -75165,6 +75165,14 @@
7516575165
"lun"
7516675166
],
7516775167
"properties": {
75168+
"chapAuthDiscovery": {
75169+
"description": "whether support iSCSI Discovery CHAP authentication",
75170+
"type": "boolean"
75171+
},
75172+
"chapAuthSession": {
75173+
"description": "whether support iSCSI Session CHAP authentication",
75174+
"type": "boolean"
75175+
},
7516875176
"fsType": {
7516975177
"description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: http://kubernetes.io/docs/user-guide/volumes#iscsi",
7517075178
"type": "string"
@@ -75193,6 +75201,10 @@
7519375201
"description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.",
7519475202
"type": "boolean"
7519575203
},
75204+
"secretRef": {
75205+
"description": "CHAP secret for iSCSI target and initiator authentication",
75206+
"$ref": "#/definitions/v1.LocalObjectReference"
75207+
},
7519675208
"targetPortal": {
7519775209
"description": "iSCSI target portal. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).",
7519875210
"type": "string"

pkg/openapi/zz_generated.openapi.go

+22-1
Original file line numberDiff line numberDiff line change
@@ -13882,11 +13882,32 @@ func GetOpenAPIDefinitions(ref openapi.ReferenceCallback) map[string]openapi.Ope
1388213882
},
1388313883
},
1388413884
},
13885+
"chapAuthDiscovery": {
13886+
SchemaProps: spec.SchemaProps{
13887+
Description: "whether support iSCSI Discovery CHAP authentication",
13888+
Type: []string{"boolean"},
13889+
Format: "",
13890+
},
13891+
},
13892+
"chapAuthSession": {
13893+
SchemaProps: spec.SchemaProps{
13894+
Description: "whether support iSCSI Session CHAP authentication",
13895+
Type: []string{"boolean"},
13896+
Format: "",
13897+
},
13898+
},
13899+
"secretRef": {
13900+
SchemaProps: spec.SchemaProps{
13901+
Description: "CHAP secret for iSCSI target and initiator authentication",
13902+
Ref: ref("k8s.io/kubernetes/pkg/api/v1.LocalObjectReference"),
13903+
},
13904+
},
1388513905
},
1388613906
Required: []string{"targetPortal", "iqn", "lun"},
1388713907
},
1388813908
},
13889-
Dependencies: []string{},
13909+
Dependencies: []string{
13910+
"k8s.io/kubernetes/pkg/api/v1.LocalObjectReference"},
1389013911
},
1389113912
"k8s.io/kubernetes/pkg/api/v1.KeyToPath": {
1389213913
Schema: spec.Schema{

vendor/k8s.io/kubernetes/api/swagger-spec/apps_v1beta1.json

+22-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/k8s.io/kubernetes/api/swagger-spec/batch_v1.json

+22-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/k8s.io/kubernetes/api/swagger-spec/extensions_v1beta1.json

+22-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/k8s.io/kubernetes/api/swagger-spec/settings.k8s.io_v1alpha1.json

+22-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/k8s.io/kubernetes/api/swagger-spec/v1.json

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/k8s.io/kubernetes/pkg/api/pod/util.go

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/k8s.io/kubernetes/pkg/api/pod/util_test.go

+6-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/k8s.io/kubernetes/pkg/api/types.go

+11-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/k8s.io/kubernetes/pkg/api/v1/pod/util.go

+4-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/k8s.io/kubernetes/pkg/api/v1/pod/util_test.go

+6-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/k8s.io/kubernetes/pkg/api/v1/types.go

+9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)