mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-03-05 03:00:47 +00:00
* Avoiding race condition on Capsule installation The TLS Secret controller needs to wait for the CA one in order to retrieve the updated one, otherwise it could use a non-stored CA. * Linting Minor linting fixes * Makefile for Docker Image Providing `make docker-image` to speed-up generation of Docker image
9 lines
150 B
Go
9 lines
150 B
Go
package secret
|
|
|
|
type MissingCaError struct {
|
|
}
|
|
|
|
func (MissingCaError) Error() string {
|
|
return "CA has not been created yet, please generate a new"
|
|
}
|