mirror of
https://github.com/stakater/Reloader.git
synced 2026-02-27 16:03:50 +00:00
13 lines
264 B
Go
13 lines
264 B
Go
package kube
|
|
|
|
import (
|
|
"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{},
|
|
}
|