This the very first step for fission to integrate with Istio, which is an open platform to connect, manage, and secure microservices. With Istio, users are able to monitor functions usage and trace requests latency through dashboards. For more information, please visit http://fission.io/docs/
337 lines
8.6 KiB
Go
337 lines
8.6 KiB
Go
/*
|
|
Copyright 2016 The Fission Authors.
|
|
|
|
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.
|
|
*/
|
|
|
|
package controller
|
|
|
|
import (
|
|
"encoding/json"
|
|
"errors"
|
|
"io"
|
|
"io/ioutil"
|
|
"net/http"
|
|
"net/http/httputil"
|
|
"net/url"
|
|
"sort"
|
|
|
|
"github.com/gorilla/mux"
|
|
log "github.com/sirupsen/logrus"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/labels"
|
|
"k8s.io/apimachinery/pkg/util/intstr"
|
|
"k8s.io/client-go/pkg/api"
|
|
apiv1 "k8s.io/client-go/pkg/api/v1"
|
|
restclient "k8s.io/client-go/rest"
|
|
|
|
"github.com/fission/fission"
|
|
"github.com/fission/fission/crd"
|
|
)
|
|
|
|
func (a *API) getIstioServiceLabels(fnName string) map[string]string {
|
|
return map[string]string{
|
|
"functionName": fnName,
|
|
}
|
|
}
|
|
|
|
func (a *API) FunctionApiList(w http.ResponseWriter, r *http.Request) {
|
|
funcs, err := a.fissionClient.Functions(metav1.NamespaceAll).List(metav1.ListOptions{})
|
|
if err != nil {
|
|
a.respondWithError(w, err)
|
|
return
|
|
}
|
|
|
|
resp, err := json.Marshal(funcs.Items)
|
|
if err != nil {
|
|
a.respondWithError(w, err)
|
|
return
|
|
}
|
|
|
|
a.respondWithSuccess(w, resp)
|
|
}
|
|
|
|
func (a *API) FunctionApiCreate(w http.ResponseWriter, r *http.Request) {
|
|
body, err := ioutil.ReadAll(r.Body)
|
|
if err != nil {
|
|
a.respondWithError(w, err)
|
|
return
|
|
}
|
|
|
|
var f crd.Function
|
|
err = json.Unmarshal(body, &f)
|
|
if err != nil {
|
|
a.respondWithError(w, err)
|
|
return
|
|
}
|
|
|
|
err = validateResourceName(f.Metadata.Name)
|
|
if err != nil {
|
|
a.respondWithError(w, err)
|
|
return
|
|
}
|
|
|
|
fnew, err := a.fissionClient.Functions(f.Metadata.Namespace).Create(&f)
|
|
if err != nil {
|
|
a.respondWithError(w, err)
|
|
return
|
|
}
|
|
|
|
resp, err := json.Marshal(fnew.Metadata)
|
|
if err != nil {
|
|
a.respondWithError(w, err)
|
|
return
|
|
}
|
|
|
|
// Since istio only allows accessing pod through k8s service,
|
|
// for the functions with executor type "poolmgr" we need to
|
|
// create a service for sending requests to pod in pool.
|
|
// Functions with executor type "Newdeploy" is specialized at
|
|
// pod starts. In this case, just ignore such functions.
|
|
fnExecutorType := f.Spec.InvokeStrategy.ExecutionStrategy.ExecutorType
|
|
|
|
if a.useIstio && fnExecutorType == fission.ExecutorTypePoolmgr {
|
|
// create a same name service for function
|
|
// since istio only allows the traffic to service
|
|
|
|
sel := map[string]string{
|
|
"functionName": fnew.Metadata.Name,
|
|
"functionUid": string(fnew.Metadata.UID),
|
|
}
|
|
|
|
// service for accepting user traffic
|
|
svc := apiv1.Service{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Namespace: a.functionNamespace,
|
|
Name: fission.GetFunctionIstioServiceName(f.Metadata.Name, f.Metadata.Namespace),
|
|
Labels: a.getIstioServiceLabels(f.Metadata.Name),
|
|
},
|
|
Spec: apiv1.ServiceSpec{
|
|
Type: apiv1.ServiceTypeClusterIP,
|
|
Ports: []apiv1.ServicePort{
|
|
// Service port name should begin with a recognized prefix, or the traffic will be
|
|
// treated as TCP traffic. (https://istio.io/docs/setup/kubernetes/sidecar-injection.html)
|
|
// Originally the ports' name are similar to "http-fetch" and "http-specialize".
|
|
// But for istio 0.5.1, istio-proxy return unexpected 431 error with such naming.
|
|
// https://github.com/istio/istio/issues/928
|
|
// Workaround: remove prefix
|
|
// TODO: prepend prefix once the bug fixed
|
|
{
|
|
Name: "fetch",
|
|
Protocol: apiv1.ProtocolTCP,
|
|
Port: 8000,
|
|
TargetPort: intstr.FromInt(8000),
|
|
},
|
|
{
|
|
Name: "specialize",
|
|
Protocol: apiv1.ProtocolTCP,
|
|
Port: 8888,
|
|
TargetPort: intstr.FromInt(8888),
|
|
},
|
|
},
|
|
Selector: sel,
|
|
},
|
|
}
|
|
_, err = a.kubernetesClient.CoreV1().Services(a.functionNamespace).Create(&svc)
|
|
if err != nil {
|
|
a.respondWithError(w, err)
|
|
return
|
|
}
|
|
}
|
|
|
|
w.WriteHeader(http.StatusCreated)
|
|
a.respondWithSuccess(w, resp)
|
|
}
|
|
|
|
func (a *API) FunctionApiGet(w http.ResponseWriter, r *http.Request) {
|
|
vars := mux.Vars(r)
|
|
name := vars["function"]
|
|
ns := vars["namespace"]
|
|
if len(ns) == 0 {
|
|
ns = metav1.NamespaceDefault
|
|
}
|
|
|
|
f, err := a.fissionClient.Functions(ns).Get(name)
|
|
if err != nil {
|
|
a.respondWithError(w, err)
|
|
return
|
|
}
|
|
|
|
resp, err := json.Marshal(f)
|
|
if err != nil {
|
|
a.respondWithError(w, err)
|
|
return
|
|
}
|
|
a.respondWithSuccess(w, resp)
|
|
}
|
|
|
|
func (a *API) FunctionApiUpdate(w http.ResponseWriter, r *http.Request) {
|
|
vars := mux.Vars(r)
|
|
name := vars["function"]
|
|
|
|
body, err := ioutil.ReadAll(r.Body)
|
|
if err != nil {
|
|
a.respondWithError(w, err)
|
|
return
|
|
}
|
|
|
|
var f crd.Function
|
|
err = json.Unmarshal(body, &f)
|
|
if err != nil {
|
|
a.respondWithError(w, err)
|
|
return
|
|
}
|
|
|
|
if name != f.Metadata.Name {
|
|
err = fission.MakeError(fission.ErrorInvalidArgument, "Function name doesn't match URL")
|
|
a.respondWithError(w, err)
|
|
return
|
|
}
|
|
|
|
fnew, err := a.fissionClient.Functions(f.Metadata.Namespace).Update(&f)
|
|
if err != nil {
|
|
a.respondWithError(w, err)
|
|
return
|
|
}
|
|
|
|
resp, err := json.Marshal(fnew.Metadata)
|
|
if err != nil {
|
|
a.respondWithError(w, err)
|
|
return
|
|
}
|
|
a.respondWithSuccess(w, resp)
|
|
}
|
|
|
|
func (a *API) FunctionApiDelete(w http.ResponseWriter, r *http.Request) {
|
|
vars := mux.Vars(r)
|
|
name := vars["function"]
|
|
ns := vars["namespace"]
|
|
if len(ns) == 0 {
|
|
ns = metav1.NamespaceDefault
|
|
}
|
|
|
|
err := a.fissionClient.Functions(ns).Delete(name, &metav1.DeleteOptions{})
|
|
if err != nil {
|
|
a.respondWithError(w, err)
|
|
return
|
|
}
|
|
|
|
if a.useIstio {
|
|
// delete all istio services belong to the function
|
|
sel := a.getIstioServiceLabels(name)
|
|
svcList, err := a.kubernetesClient.CoreV1().Services(a.functionNamespace).List(metav1.ListOptions{
|
|
LabelSelector: labels.Set(sel).AsSelector().String(),
|
|
})
|
|
for _, svc := range svcList.Items {
|
|
err = a.kubernetesClient.CoreV1().Services(a.functionNamespace).Delete(svc.ObjectMeta.Name, &metav1.DeleteOptions{})
|
|
// log error and continue
|
|
log.Printf("Failed to delete service %v: %v", svc.ObjectMeta.Name, err)
|
|
continue
|
|
}
|
|
}
|
|
|
|
a.respondWithSuccess(w, []byte(""))
|
|
}
|
|
|
|
// FunctionLogsApiPost establishes a proxy server to log database, and redirect
|
|
// query command send from client to database then proxy back the db response.
|
|
func (a *API) FunctionLogsApiPost(w http.ResponseWriter, r *http.Request) {
|
|
vars := mux.Vars(r)
|
|
// get dbType from url
|
|
dbType := vars["dbType"]
|
|
|
|
// find correspond db http url
|
|
dbCnf := a.getLogDBConfig(dbType)
|
|
|
|
svcUrl, err := url.Parse(dbCnf.httpURL)
|
|
if err != nil {
|
|
log.Printf("Failed to establish proxy server for function logs: %v", err)
|
|
}
|
|
// set up proxy server director
|
|
director := func(req *http.Request) {
|
|
// only replace url Scheme and Host to remote influxDB
|
|
// and leave query string intact
|
|
req.URL.Scheme = svcUrl.Scheme
|
|
req.URL.Host = svcUrl.Host
|
|
req.URL.Path = svcUrl.Path
|
|
// set up http basic auth for database authentication
|
|
req.SetBasicAuth(dbCnf.username, dbCnf.password)
|
|
}
|
|
proxy := &httputil.ReverseProxy{
|
|
Director: director,
|
|
}
|
|
proxy.ServeHTTP(w, r)
|
|
}
|
|
|
|
// FunctionPodLogs : Get logs for a function directly from pod
|
|
func (a *API) FunctionPodLogs(w http.ResponseWriter, r *http.Request) {
|
|
vars := mux.Vars(r)
|
|
fnName := vars["function"]
|
|
ns := vars["namespace"]
|
|
|
|
if len(ns) == 0 {
|
|
ns = "fission-function"
|
|
}
|
|
|
|
f, err := a.fissionClient.Functions(api.NamespaceDefault).Get(fnName)
|
|
if err != nil {
|
|
a.respondWithError(w, err)
|
|
return
|
|
}
|
|
envName := f.Spec.Environment.Name
|
|
|
|
if err != nil {
|
|
a.respondWithError(w, err)
|
|
return
|
|
}
|
|
|
|
// Get function Pods first
|
|
selector := "functionName=" + fnName
|
|
podList, err := a.kubernetesClient.CoreV1().Pods(ns).List(metav1.ListOptions{LabelSelector: selector})
|
|
if err != nil {
|
|
a.respondWithError(w, err)
|
|
return
|
|
}
|
|
|
|
// Get the logs for last Pod executed
|
|
pods := podList.Items
|
|
sort.Slice(pods, func(i, j int) bool {
|
|
itime := pods[i].ObjectMeta.CreationTimestamp.Time
|
|
jtime := pods[j].ObjectMeta.CreationTimestamp.Time
|
|
return itime.After(jtime)
|
|
})
|
|
|
|
podLogOpts := apiv1.PodLogOptions{Container: envName} // Only the env container, not fetcher
|
|
var podLogsReq *restclient.Request
|
|
if len(pods) > 0 {
|
|
podLogsReq = a.kubernetesClient.CoreV1().Pods(ns).GetLogs(pods[0].ObjectMeta.Name, &podLogOpts)
|
|
} else {
|
|
a.respondWithError(w, errors.New("No active pods found"))
|
|
return
|
|
}
|
|
|
|
podLogs, err := podLogsReq.Stream()
|
|
if err != nil {
|
|
a.respondWithError(w, err)
|
|
return
|
|
}
|
|
defer podLogs.Close()
|
|
|
|
_, err = io.Copy(w, podLogs)
|
|
if err != nil {
|
|
a.respondWithError(w, err)
|
|
return
|
|
}
|
|
return
|
|
}
|