Documentation
¶
Overview ¶
Copyright 2021.
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.
Copyright 2021.
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 ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type KubeSecretGetter ¶
type KubeSecretGetter struct {
// contains filtered or unexported fields
}
KubeSecretGetter is an implementation of SecretGetter.
func New ¶
func New(c client.Client) *KubeSecretGetter
New creates and returns a KubeSecretGetter that looks up secrets in k8s.
func (KubeSecretGetter) SecretToken ¶
func (k KubeSecretGetter) SecretToken(ctx context.Context, id types.NamespacedName, key string) (string, error)
SecretToken looks for a namespaced secret, and returns the key from it, or an error if not found.
type SecretGetter ¶
type SecretGetter interface {
SecretToken(ctx context.Context, id types.NamespacedName, key string) (string, error)
}
SecretGetter takes a namespaced name and finds a secret with that name, or returns an error.