Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added LivenessProbe & Readiness probe #100

Merged
merged 2 commits into from
Apr 3, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 13 additions & 6 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ import (
"github.com/arangodb/kube-arangodb/pkg/operator"
"github.com/arangodb/kube-arangodb/pkg/util/constants"
"github.com/arangodb/kube-arangodb/pkg/util/k8sutil"
"github.com/arangodb/kube-arangodb/pkg/util/probe"
"github.com/arangodb/kube-arangodb/pkg/util/retry"
)

Expand Down Expand Up @@ -80,6 +81,8 @@ var (
enableStorage bool // Run deployment operator
createCRD bool
}
deploymentProbe probe.Probe
storageProbe probe.Probe
)

func init() {
Expand Down Expand Up @@ -135,7 +138,9 @@ func cmdMainRun(cmd *cobra.Command, args []string) {
cliLog.Fatal().Err(err).Msg("Failed to get hostname")
}

//http.HandleFunc(probe.HTTPReadyzEndpoint, probe.ReadyzHandler)
http.HandleFunc("/health", probe.LivenessHandler)
http.HandleFunc("/ready/deployment", deploymentProbe.ReadyHandler)
http.HandleFunc("/ready/storage", storageProbe.ReadyHandler)
http.Handle("/metrics", prometheus.Handler())
listenAddr := net.JoinHostPort(server.host, strconv.Itoa(server.port))
go http.ListenAndServe(listenAddr, nil)
Expand Down Expand Up @@ -186,11 +191,13 @@ func newOperatorConfigAndDeps(id, namespace, name string) (operator.Config, oper
CreateCRD: operatorOptions.createCRD,
}
deps := operator.Dependencies{
LogService: logService,
KubeCli: kubecli,
KubeExtCli: kubeExtCli,
CRCli: crCli,
EventRecorder: eventRecorder,
LogService: logService,
KubeCli: kubecli,
KubeExtCli: kubeExtCli,
CRCli: crCli,
EventRecorder: eventRecorder,
DeploymentProbe: &deploymentProbe,
StorageProbe: &storageProbe,
}

return cfg, deps, nil
Expand Down
17 changes: 17 additions & 0 deletions manifests/templates/deployment/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ metadata:
namespace: {{ .Deployment.Operator.Namespace }}
spec:
replicas: 1
strategy:
type: Recreate
template:
metadata:
labels:
Expand All @@ -26,3 +28,18 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.name
ports:
- name: metrics
containerPort: 8528
livenessProbe:
httpGet:
path: /health
port: 8528
initialDelaySeconds: 5
periodSeconds: 10
readinessProbe:
httpGet:
path: /ready/deployment
port: 8528
initialDelaySeconds: 5
periodSeconds: 10
18 changes: 18 additions & 0 deletions manifests/templates/storage/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ metadata:
namespace: {{ .Storage.Operator.Namespace }}
spec:
replicas: 1
strategy:
type: Recreate
template:
metadata:
labels:
Expand All @@ -35,3 +37,19 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.name
ports:
- name: metrics
containerPort: 8528
livenessProbe:
httpGet:
path: /health
port: 8528
initialDelaySeconds: 5
periodSeconds: 10
readinessProbe:
httpGet:
path: /ready/storage
port: 8528
initialDelaySeconds: 5
periodSeconds: 10

13 changes: 8 additions & 5 deletions pkg/operator/operator.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ import (
"github.com/arangodb/kube-arangodb/pkg/generated/clientset/versioned"
"github.com/arangodb/kube-arangodb/pkg/logging"
"github.com/arangodb/kube-arangodb/pkg/storage"
"github.com/arangodb/kube-arangodb/pkg/util/probe"
)

const (
Expand Down Expand Up @@ -71,11 +72,13 @@ type Config struct {
}

type Dependencies struct {
LogService logging.Service
KubeCli kubernetes.Interface
KubeExtCli apiextensionsclient.Interface
CRCli versioned.Interface
EventRecorder record.EventRecorder
LogService logging.Service
KubeCli kubernetes.Interface
KubeExtCli apiextensionsclient.Interface
CRCli versioned.Interface
EventRecorder record.EventRecorder
DeploymentProbe *probe.Probe
StorageProbe *probe.Probe
}

// NewOperator instantiates a new operator from given config & dependencies.
Expand Down
1 change: 1 addition & 0 deletions pkg/operator/operator_deployment.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ func (o *Operator) runDeployments(stop <-chan struct{}) {
DeleteFunc: o.onDeleteArangoDeployment,
}, cache.Indexers{})

o.Dependencies.DeploymentProbe.SetReady()
informer.Run(stop)
}

Expand Down
1 change: 1 addition & 0 deletions pkg/operator/operator_local_storage.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ func (o *Operator) runLocalStorages(stop <-chan struct{}) {
DeleteFunc: o.onDeleteArangoLocalStorage,
}, cache.Indexers{})

o.Dependencies.StorageProbe.SetReady()
informer.Run(stop)
}

Expand Down
32 changes: 32 additions & 0 deletions pkg/util/probe/health.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
//
// 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 probe

import (
"net/http"
)

// LivenessHandler writes back the HTTP status code 200 to indicate a healthy operator.
func LivenessHandler(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusOK)
}
48 changes: 48 additions & 0 deletions pkg/util/probe/ready.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
//
// 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 probe

import (
"net/http"
"sync/atomic"
)

// Probe wraps a readiness probe handler.
type Probe struct {
ready int32
}

// SetReady marks the probe as ready.
func (p *Probe) SetReady() {
atomic.StoreInt32(&p.ready, 1)
}

// ReadyHandler writes back the HTTP status code 200 if the operator is ready, and 500 otherwise.
func (p *Probe) ReadyHandler(w http.ResponseWriter, r *http.Request) {
isReady := atomic.LoadInt32(&p.ready) != 0
if isReady {
w.WriteHeader(http.StatusOK)
} else {
w.WriteHeader(http.StatusInternalServerError)
}
}