Skip to content

Kubernetes operator that templates GCP Config Connector resources

License

Notifications You must be signed in to change notification settings

slamdev/config-connector-templater

Repository files navigation

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

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published