cert-manager/pkg/controller/issuers/checks.go
Richard Wall a70298180a Run a script to update v1alpha2 usage to v1
Script is available at https://github.com/jetstack/cert-manager/pull/3201

Signed-off-by: Richard Wall <richard.wall@jetstack.io>
2020-08-20 14:26:51 +01:00

96 lines
2.5 KiB
Go

/*
Copyright 2019 The Jetstack cert-manager contributors.
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.
*/
package issuers
import (
"fmt"
corev1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/labels"
"github.com/jetstack/cert-manager/pkg/apis/certmanager/v1"
)
func (c *controller) issuersForSecret(secret *corev1.Secret) ([]*v1.Issuer, error) {
issuers, err := c.issuerLister.List(labels.NewSelector())
if err != nil {
return nil, fmt.Errorf("error listing certificates: %s", err.Error())
}
var affected []*v1.Issuer
for _, iss := range issuers {
// only applicable for Issuer resources
if iss.Namespace != secret.Namespace {
continue
}
switch {
case iss.Spec.ACME != nil:
if iss.Spec.ACME.PrivateKey.Name == secret.Name {
affected = append(affected, iss)
continue
}
if iss.Spec.ACME.ExternalAccountBinding != nil {
if iss.Spec.ACME.ExternalAccountBinding.Key.Name == secret.Name {
affected = append(affected, iss)
continue
}
}
case iss.Spec.CA != nil:
if iss.Spec.CA.SecretName == secret.Name {
affected = append(affected, iss)
continue
}
case iss.Spec.Venafi != nil:
if iss.Spec.Venafi.TPP != nil {
if iss.Spec.Venafi.TPP.CredentialsRef.Name == secret.Name {
affected = append(affected, iss)
continue
}
}
if iss.Spec.Venafi.Cloud != nil {
if iss.Spec.Venafi.Cloud.APITokenSecretRef.Name == secret.Name {
affected = append(affected, iss)
continue
}
}
case iss.Spec.Vault != nil:
if iss.Spec.Vault.Auth.TokenSecretRef != nil {
if iss.Spec.Vault.Auth.TokenSecretRef.Name == secret.Name {
affected = append(affected, iss)
continue
}
}
if iss.Spec.Vault.Auth.AppRole != nil {
if iss.Spec.Vault.Auth.AppRole.SecretRef.Name == secret.Name {
affected = append(affected, iss)
continue
}
}
if iss.Spec.Vault.Auth.Kubernetes != nil {
if iss.Spec.Vault.Auth.Kubernetes.SecretRef.Name == secret.Name {
affected = append(affected, iss)
continue
}
}
}
}
return affected, nil
}