A Kubernetes operator that uses time-to-live to enable time-bound objects.
It uses a single configMap to configure what Kinds of objects to check TTL for and the check interval.
There are no CRDs to install.
At every interval, the operator will get all resources matching a TTL label (kubettlreaper.samir.io/ttl) for each Kind configured to watch, and delete the resources if their TTL has expired (using creation timestamp + TTL as the calculation)
Optionally, you can configure the operator to only house-keep objects with a matching name prefix.
- Configure group/version/kinds (GVKs) under
gvk-list(all valid GVKs are supported) - Configure the check interval in
check-interval - Optionally configure name prefix in
name-prefix - The configMap name must match the arg in the controller Deployment spec, i.e. -
- --configuration-name=kube-ttl-reaper
kubectl apply -f - <<EOF
apiVersion: v1
kind: ConfigMap
metadata:
name: kube-ttl-reaper
namespace: kubettlreaper-system
data:
check-interval: "5m"
name-prefix: "tmp-ttl-"
gvk-list: |
- group: ""
version: "v1"
kind: "Pod"
- group: "apps"
version: "v1"
kind: "Deployment"
- group: "rbac.authorization.k8s.io"
version: "v1"
kind: "RoleBinding"
EOF- Add the label or create the object with the label and time value
kubettlreaper.samir.io/ttl
kubectl apply -f - <<EOF
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: tmp-ttl-pod-reader-binding
namespace: default
labels:
kubettlreaper.samir.io/ttl: 1m # This label is all that is required
subjects:
- kind: ServiceAccount
name: default
namespace: default
roleRef:
kind: Role
name: pod-reader
apiGroup: rbac.authorization.k8s.io
EOFA helm chart is generated using make helm.
cd charts/kube-ttl-reaper
helm upgrade --install -n kubettlreaper-system <release_name> . --create-namespace- You can use the latest public image on DockerHub -
samirtahir91076/kube-ttl-reaper:latest- See tags
- go version v1.22.0+
- docker version 17.03+.
- kubectl version v1.11.3+.
- Access to a Kubernetes v1.11.3+ cluster.
Build and push your image to the location specified by IMG:
make docker-build docker-push IMG=<some-registry>/kubettlreaper:tagNOTE: This image ought to be published in the personal registry you specified. And it is required to have access to pull the image from the working environment. Make sure you have the proper permission to the registry if the above commands don’t work.
Deploy the Manager to the cluster with the image specified by IMG:
make deploy IMG=<some-registry>/kubettlreaper:tagNOTE: If you encounter RBAC errors, you may need to grant yourself cluster-admin privileges or be logged in as admin.
Create instances of your solution You can apply the samples (examples) from the config/sample:
kubectl apply -k config/samples/NOTE: Ensure that the samples has default values to test it out.
Delete the instances (CRs) from the cluster:
kubectl delete -k config/samples/Delete the APIs(CRDs) from the cluster:
make uninstallUnDeploy the controller from the cluster:
make undeployRun the controller in the foreground for testing:
export OPERATOR_NAMESPACE=kubettlreaper-system
make runRun integration tests using env test (without a real cluster):
export OPERATOR_NAMESPACE=kubettlreaper-system
make testGenerate coverage html report:
go tool cover -html=cover.out -o coverage.htmlRun E2E test - creates a Kind cluster to use:
make kind-delete
make test-e2eFollowing are the steps to build the installer and distribute this project to users.
- Build the installer for the image built and published in the registry:
make build-installer IMG=<some-registry>/kubettlreaper:tagNOTE: The makefile target mentioned above generates an 'install.yaml' file in the dist directory. This file contains all the resources built with Kustomize, which are necessary to install this project without its dependencies.
- Using the installer
Users can just run kubectl apply -f to install the project, i.e.:
kubectl apply -f https://raw.githubusercontent.com/<org>/kubettlreaper/<tag or branch>/dist/install.yaml// TODO(user): Add detailed information on how you would like others to contribute to this project
NOTE: Run make help for more information on all potential make targets
More information can be found via the Kubebuilder Documentation
Copyright 2024.
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.