mirror of
https://github.com/stakater/Reloader.git
synced 2026-02-28 16:30:20 +00:00
13 lines
267 B
Go
13 lines
267 B
Go
package kube
|
|
|
|
import (
|
|
v1 "k8s.io/api/core/v1"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
)
|
|
|
|
// ResourceMap are resources from where changes are going to be detected
|
|
var ResourceMap = map[string]runtime.Object{
|
|
"configMaps": &v1.ConfigMap{},
|
|
"secrets": &v1.Secret{},
|
|
}
|