mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-26 21:17:23 +00:00
Merge pull request #96006 from serathius/datapolicy-volume
Add datapolicy tags to pkg/volume/
This commit is contained in:
commit
512b7b75a8
@ -189,7 +189,7 @@ type cephfs struct {
|
|||||||
mon []string
|
mon []string
|
||||||
path string
|
path string
|
||||||
id string
|
id string
|
||||||
secret string
|
secret string `datapolicy:"token"`
|
||||||
secretFile string
|
secretFile string
|
||||||
readonly bool
|
readonly bool
|
||||||
mounter mount.Interface
|
mounter mount.Interface
|
||||||
|
@ -461,7 +461,7 @@ type provisionerConfig struct {
|
|||||||
userKey string
|
userKey string
|
||||||
secretNamespace string
|
secretNamespace string
|
||||||
secretName string
|
secretName string
|
||||||
secretValue string
|
secretValue string `datapolicy:"token"`
|
||||||
clusterID string
|
clusterID string
|
||||||
gidMin int
|
gidMin int
|
||||||
gidMax int
|
gidMax int
|
||||||
|
@ -283,7 +283,7 @@ type iscsiDisk struct {
|
|||||||
Iface string
|
Iface string
|
||||||
chapDiscovery bool
|
chapDiscovery bool
|
||||||
chapSession bool
|
chapSession bool
|
||||||
secret map[string]string
|
secret map[string]string `datapolicy:"token"`
|
||||||
InitiatorName string
|
InitiatorName string
|
||||||
plugin *iscsiPlugin
|
plugin *iscsiPlugin
|
||||||
// Utility interface that provides API calls to the provider to attach/detach disks.
|
// Utility interface that provides API calls to the provider to attach/detach disks.
|
||||||
|
@ -49,7 +49,7 @@ type quobytePlugin struct {
|
|||||||
// Quobyte API server and holds all information
|
// Quobyte API server and holds all information
|
||||||
type quobyteAPIConfig struct {
|
type quobyteAPIConfig struct {
|
||||||
quobyteUser string
|
quobyteUser string
|
||||||
quobytePassword string
|
quobytePassword string `datapolicy:"password"`
|
||||||
quobyteAPIServer string
|
quobyteAPIServer string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -803,9 +803,9 @@ type rbdMounter struct {
|
|||||||
Mon []string
|
Mon []string
|
||||||
ID string
|
ID string
|
||||||
Keyring string
|
Keyring string
|
||||||
Secret string
|
Secret string `datapolicy:"token"`
|
||||||
fsType string
|
fsType string
|
||||||
adminSecret string
|
adminSecret string `datapolicy:"token"`
|
||||||
adminID string
|
adminID string
|
||||||
mountOptions []string
|
mountOptions []string
|
||||||
imageFormat string
|
imageFormat string
|
||||||
|
@ -61,7 +61,7 @@ type sioClient struct {
|
|||||||
client *sio.Client
|
client *sio.Client
|
||||||
gateway string
|
gateway string
|
||||||
username string
|
username string
|
||||||
password string
|
password string `datapolicy:"password"`
|
||||||
insecure bool
|
insecure bool
|
||||||
certsEnabled bool
|
certsEnabled bool
|
||||||
system *siotypes.System
|
system *siotypes.System
|
||||||
|
Loading…
Reference in New Issue
Block a user