cert-manager/pkg/issuer/vault/prepare.go
Vincent Desjardins b35343786e Vault issuer support
vault remove duration
2018-05-02 00:45:55 +00:00

15 lines
392 B
Go

package vault
import (
"context"
"github.com/jetstack/cert-manager/pkg/apis/certmanager/v1alpha1"
)
// Prepare does nothing for the Vault issuer. In future, this may validate
// the certificate request against the issuer, or set fields in the Status
// block to be consumed in Issue and Renew
func (c *Vault) Prepare(ctx context.Context, crt *v1alpha1.Certificate) error {
return nil
}