slamdev / config-connector-templater

Kubernetes operator that templates GCP Config Connector resources

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

config-connector-templater

Kubernetes operator that templates GCP Config Connector resources

Example

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

Make a release

TAG=x.x.x && git tag -a ${TAG} -m "make ${TAG} release" && git push --tags

About

Kubernetes operator that templates GCP Config Connector resources

License:Apache License 2.0


Languages

Language:Go 73.1%Language:Makefile 24.8%Language:Dockerfile 2.1%