mirror of
https://github.com/arangodb/kube-arangodb.git
synced 2024-12-15 17:51:03 +00:00
220 lines
5.7 KiB
Go
220 lines
5.7 KiB
Go
//
|
|
// DISCLAIMER
|
|
//
|
|
// Copyright 2018 ArangoDB GmbH, Cologne, Germany
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
// Copyright holder is ArangoDB GmbH, Cologne, Germany
|
|
//
|
|
// Author Ewout Prangsma
|
|
//
|
|
|
|
package deployment
|
|
|
|
import (
|
|
"k8s.io/api/core/v1"
|
|
"k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1"
|
|
"k8s.io/client-go/tools/cache"
|
|
|
|
"github.com/arangodb/kube-arangodb/pkg/util/k8sutil"
|
|
)
|
|
|
|
// listenForPodEvents keep listening for changes in pod until the given channel is closed.
|
|
func (d *Deployment) listenForPodEvents(stopCh <-chan struct{}) {
|
|
getPod := func(obj interface{}) (*v1.Pod, bool) {
|
|
pod, ok := obj.(*v1.Pod)
|
|
if !ok {
|
|
tombstone, ok := obj.(cache.DeletedFinalStateUnknown)
|
|
if !ok {
|
|
return nil, false
|
|
}
|
|
pod, ok = tombstone.Obj.(*v1.Pod)
|
|
return pod, ok
|
|
}
|
|
return pod, true
|
|
}
|
|
|
|
rw := k8sutil.NewResourceWatcher(
|
|
d.deps.Log,
|
|
d.deps.KubeCli.CoreV1().RESTClient(),
|
|
"pods",
|
|
d.apiObject.GetNamespace(),
|
|
&v1.Pod{},
|
|
cache.ResourceEventHandlerFuncs{
|
|
AddFunc: func(obj interface{}) {
|
|
if p, ok := getPod(obj); ok && d.isOwnerOf(p) {
|
|
d.triggerInspection()
|
|
}
|
|
},
|
|
UpdateFunc: func(oldObj, newObj interface{}) {
|
|
if p, ok := getPod(newObj); ok && d.isOwnerOf(p) {
|
|
d.triggerInspection()
|
|
}
|
|
},
|
|
DeleteFunc: func(obj interface{}) {
|
|
if p, ok := getPod(obj); ok && d.isOwnerOf(p) {
|
|
d.triggerInspection()
|
|
}
|
|
},
|
|
})
|
|
|
|
rw.Run(stopCh)
|
|
}
|
|
|
|
// listenForPVCEvents keep listening for changes in PVC's until the given channel is closed.
|
|
func (d *Deployment) listenForPVCEvents(stopCh <-chan struct{}) {
|
|
getPVC := func(obj interface{}) (*v1.PersistentVolumeClaim, bool) {
|
|
pvc, ok := obj.(*v1.PersistentVolumeClaim)
|
|
if !ok {
|
|
tombstone, ok := obj.(cache.DeletedFinalStateUnknown)
|
|
if !ok {
|
|
return nil, false
|
|
}
|
|
pvc, ok = tombstone.Obj.(*v1.PersistentVolumeClaim)
|
|
return pvc, ok
|
|
}
|
|
return pvc, true
|
|
}
|
|
|
|
rw := k8sutil.NewResourceWatcher(
|
|
d.deps.Log,
|
|
d.deps.KubeCli.CoreV1().RESTClient(),
|
|
"persistentvolumeclaims",
|
|
d.apiObject.GetNamespace(),
|
|
&v1.PersistentVolumeClaim{},
|
|
cache.ResourceEventHandlerFuncs{
|
|
AddFunc: func(obj interface{}) {
|
|
if p, ok := getPVC(obj); ok && d.isOwnerOf(p) {
|
|
d.triggerInspection()
|
|
}
|
|
},
|
|
UpdateFunc: func(oldObj, newObj interface{}) {
|
|
if p, ok := getPVC(newObj); ok && d.isOwnerOf(p) {
|
|
d.triggerInspection()
|
|
}
|
|
},
|
|
DeleteFunc: func(obj interface{}) {
|
|
if p, ok := getPVC(obj); ok && d.isOwnerOf(p) {
|
|
d.triggerInspection()
|
|
}
|
|
},
|
|
})
|
|
|
|
rw.Run(stopCh)
|
|
}
|
|
|
|
// listenForSecretEvents keep listening for changes in Secrets's until the given channel is closed.
|
|
func (d *Deployment) listenForSecretEvents(stopCh <-chan struct{}) {
|
|
getSecret := func(obj interface{}) (*v1.Secret, bool) {
|
|
secret, ok := obj.(*v1.Secret)
|
|
if !ok {
|
|
tombstone, ok := obj.(cache.DeletedFinalStateUnknown)
|
|
if !ok {
|
|
return nil, false
|
|
}
|
|
secret, ok = tombstone.Obj.(*v1.Secret)
|
|
return secret, ok
|
|
}
|
|
return secret, true
|
|
}
|
|
|
|
rw := k8sutil.NewResourceWatcher(
|
|
d.deps.Log,
|
|
d.deps.KubeCli.CoreV1().RESTClient(),
|
|
"secrets",
|
|
d.apiObject.GetNamespace(),
|
|
&v1.Secret{},
|
|
cache.ResourceEventHandlerFuncs{
|
|
// Note: For secrets we look at all of them because they do not have to be owned by this deployment.
|
|
AddFunc: func(obj interface{}) {
|
|
if _, ok := getSecret(obj); ok {
|
|
d.triggerInspection()
|
|
}
|
|
},
|
|
UpdateFunc: func(oldObj, newObj interface{}) {
|
|
if _, ok := getSecret(newObj); ok {
|
|
d.triggerInspection()
|
|
}
|
|
},
|
|
DeleteFunc: func(obj interface{}) {
|
|
if _, ok := getSecret(obj); ok {
|
|
d.triggerInspection()
|
|
}
|
|
},
|
|
})
|
|
|
|
rw.Run(stopCh)
|
|
}
|
|
|
|
// listenForServiceEvents keep listening for changes in Service's until the given channel is closed.
|
|
func (d *Deployment) listenForServiceEvents(stopCh <-chan struct{}) {
|
|
getService := func(obj interface{}) (*v1.Service, bool) {
|
|
service, ok := obj.(*v1.Service)
|
|
if !ok {
|
|
tombstone, ok := obj.(cache.DeletedFinalStateUnknown)
|
|
if !ok {
|
|
return nil, false
|
|
}
|
|
service, ok = tombstone.Obj.(*v1.Service)
|
|
return service, ok
|
|
}
|
|
return service, true
|
|
}
|
|
|
|
rw := k8sutil.NewResourceWatcher(
|
|
d.deps.Log,
|
|
d.deps.KubeCli.CoreV1().RESTClient(),
|
|
"services",
|
|
d.apiObject.GetNamespace(),
|
|
&v1.Service{},
|
|
cache.ResourceEventHandlerFuncs{
|
|
AddFunc: func(obj interface{}) {
|
|
if s, ok := getService(obj); ok && d.isOwnerOf(s) {
|
|
d.triggerInspection()
|
|
}
|
|
},
|
|
UpdateFunc: func(oldObj, newObj interface{}) {
|
|
if s, ok := getService(newObj); ok && d.isOwnerOf(s) {
|
|
d.triggerInspection()
|
|
}
|
|
},
|
|
DeleteFunc: func(obj interface{}) {
|
|
if s, ok := getService(obj); ok && d.isOwnerOf(s) {
|
|
d.triggerInspection()
|
|
}
|
|
},
|
|
})
|
|
|
|
rw.Run(stopCh)
|
|
}
|
|
|
|
// listenForCRDEvents keep listening for changes in CRDs until the given channel is closed.
|
|
func (d *Deployment) listenForCRDEvents(stopCh <-chan struct{}) {
|
|
rw := k8sutil.NewResourceWatcher(
|
|
d.deps.Log,
|
|
d.deps.KubeExtCli.ApiextensionsV1beta1().RESTClient(),
|
|
"customresourcedefinitions",
|
|
"",
|
|
&v1beta1.CustomResourceDefinition{},
|
|
cache.ResourceEventHandlerFuncs{
|
|
AddFunc: func(obj interface{}) {
|
|
d.triggerCRDInspection()
|
|
},
|
|
DeleteFunc: func(obj interface{}) {
|
|
d.triggerCRDInspection()
|
|
},
|
|
})
|
|
|
|
rw.Run(stopCh)
|
|
}
|