OS ?= $(shell cat /etc/os-release | grep ^ID= | sed -e 's/ID=//' -e 's/\"//g')
ARCH = $(shell uname -m)
ifeq ($(ARCH), x86_64)
    ARCH = amd64
endif

# Go build vars
GOARCH=$(ARCH)
GOOS := linux

APP=configmap-watcher
VERSION=3.7.0

# Metadata
IMAGE_DESCRIPTION=Service that watches config maps specified by deployments/statefulsets/daemonsets and restarts their pods if the configmap changes.
SUMMARY=Watches for changes in configmaps for pods and restarts pods if they change.

