mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-08-19 12:36:39 +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
12 lines
179 B
Makefile
12 lines
179 B
Makefile
.PHONY: k8s
|
|
k8s:
|
|
operator-sdk generate k8s
|
|
|
|
.PHONY: crds
|
|
crds:
|
|
operator-sdk generate crds
|
|
|
|
.PHONY: docker-image
|
|
docker-image:
|
|
operator-sdk build quay.io/clastix/capsule:latest
|