Documentation ¶
Overview ¶
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Index ¶
- func NewGrpcConnection(ctx context.Context, apiEndpoint string, apiEndpointID string, ...) (*grpc.ClientConn, error)
- type AdaptInputFunc
- type IamToken
- type NewIamTokenFunc
- type NewSecretGetterFunc
- type PerRPCCredentials
- type SecretGetter
- type SecretsClientInput
- type YandexCloudProvider
- func (p *YandexCloudProvider) CleanUpIamTokenMap()
- func (p *YandexCloudProvider) IsIamTokenCached(authorizedKey *iamkey.Key) bool
- func (p *YandexCloudProvider) NewClient(ctx context.Context, store esv1beta1.GenericStore, kube kclient.Client, ...) (esv1beta1.SecretsClient, error)
- func (p *YandexCloudProvider) ValidateStore(store esv1beta1.GenericStore) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type AdaptInputFunc ¶
type AdaptInputFunc func(store esv1beta1.GenericStore) (*SecretsClientInput, error)
type NewIamTokenFunc ¶
type NewSecretGetterFunc ¶
type PerRPCCredentials ¶
type PerRPCCredentials struct {
IamToken string
}
func (PerRPCCredentials) GetRequestMetadata ¶
func (PerRPCCredentials) RequireTransportSecurity ¶
func (PerRPCCredentials) RequireTransportSecurity() bool
type SecretGetter ¶
type SecretGetter interface { GetSecret(ctx context.Context, iamToken, resourceID, versionID, property string) ([]byte, error) GetSecretMap(ctx context.Context, iamToken, resourceID, versionID string) (map[string][]byte, error) }
Adapts the secrets received from a remote Yandex.Cloud service for the format expected by v1beta1.SecretsClient.
type SecretsClientInput ¶
type SecretsClientInput struct { APIEndpoint string AuthorizedKey esmeta.SecretKeySelector CACertificate *esmeta.SecretKeySelector }
type YandexCloudProvider ¶
type YandexCloudProvider struct {
// contains filtered or unexported fields
}
Implementation of v1beta1.Provider.
func InitYandexCloudProvider ¶
func InitYandexCloudProvider( logger logr.Logger, clock clock2.Clock, adaptInputFunc AdaptInputFunc, newSecretGetterFunc NewSecretGetterFunc, newIamTokenFunc NewIamTokenFunc, iamTokenCleanupDelay time.Duration, ) *YandexCloudProvider
func (*YandexCloudProvider) CleanUpIamTokenMap ¶
func (p *YandexCloudProvider) CleanUpIamTokenMap()
func (*YandexCloudProvider) IsIamTokenCached ¶
func (p *YandexCloudProvider) IsIamTokenCached(authorizedKey *iamkey.Key) bool
Used for testing.
func (*YandexCloudProvider) NewClient ¶
func (p *YandexCloudProvider) NewClient(ctx context.Context, store esv1beta1.GenericStore, kube kclient.Client, namespace string) (esv1beta1.SecretsClient, error)
NewClient constructs a Yandex.Cloud Provider.
func (*YandexCloudProvider) ValidateStore ¶
func (p *YandexCloudProvider) ValidateStore(store esv1beta1.GenericStore) error