Kubernetes operator that templates GCP Config Connector resources
Creating a resource like this:
apiVersion: config-connector-templater.slamdev.net/v1alpha1
kind: PubSubTopicTemplate
metadata:
name: notifications
namespace: team1
annotations:
service-name: super-service
spec:
resourceID: "{{ .metadata.namespace }}.{{ index .metadata.annotations "service-name" }}.{{ .metadata.name }}"
operator will create the following resource:
apiVersion: pubsub.cnrm.cloud.google.com/v1beta1
kind: PubSubTopic
metadata:
name: notifications
spec:
resourceID: team1.super-service.notifications
TAG=x.x.x && git tag -a ${TAG} -m "make ${TAG} release" && git push --tags