-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathmain.go
123 lines (108 loc) · 3.24 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/*
Copyright 2020 Splunk Inc.
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 main
import (
"context"
"fmt"
"log"
"net/http"
"os"
"os/signal"
"syscall"
"time"
"github.com/gin-gonic/gin"
"github.com/splunk/jupyterhub-istio-proxy/proxy"
)
var sharedAPIToken string
var subDomainHost string
var gateway string
var namespace string
var waitForWarmup bool
var vsNamePrefix string
var clusterDomain string
const (
gatewayEnvKey = "ISTIO_GATEWAY"
proxyAuthTokenEnvKey = "CONFIGPROXY_AUTH_TOKEN"
subDomainHostEnvKey = "SUB_DOMAIN_HOST"
namespaceKey = "K8S_NAMESPACE"
waitForWarmupKey = "WAIT_FOR_WARMUP"
virtualServicePrefixKey = "VIRTUAL_SERVICE_PREFIX"
virtualServicePrefixDefault = "jupyter"
clusterDomainEnvKey = "CLUSTER_DOMAIN"
clusterDomainDefault = "cluster.local"
)
func main() {
log.Println(proxy.VersionInfo())
gin.SetMode(gin.ReleaseMode)
sharedAPIToken = os.Getenv(proxyAuthTokenEnvKey)
err := validateRequired(proxyAuthTokenEnvKey, sharedAPIToken)
if err != nil {
log.Fatalln(err)
}
gateway = os.Getenv(gatewayEnvKey)
err = validateRequired(gatewayEnvKey, gateway)
if err != nil {
log.Fatalln(err)
}
namespace = os.Getenv(namespaceKey)
err = validateRequired(namespaceKey, namespace)
if err != nil {
log.Fatalln(err)
}
subDomainHost = os.Getenv(subDomainHostEnvKey)
err = validateRequired(subDomainHostEnvKey, subDomainHost)
if err != nil {
log.Fatalln(err)
}
waitForWarmup = os.Getenv(waitForWarmupKey) != "false"
var ok bool
if vsNamePrefix, ok = os.LookupEnv(virtualServicePrefixKey); !ok || vsNamePrefix == "" {
vsNamePrefix = virtualServicePrefixDefault
}
if clusterDomain, ok = os.LookupEnv(clusterDomainEnvKey); !ok || clusterDomain == "" {
clusterDomain = clusterDomainDefault
}
var ic proxy.Istioer
ic, err = proxy.NewIstioClient(namespace, gateway, subDomainHost, waitForWarmup, vsNamePrefix, clusterDomain)
if err != nil {
log.Fatalf("failed to create istio client: %s\n", err)
}
r := gin.Default()
proxy.RegisterRoutes(r, ic, sharedAPIToken)
srv := &http.Server{
Addr: ":8000",
Handler: r,
}
go func() {
if err := srv.ListenAndServe(); err != nil && err != http.ErrServerClosed {
log.Fatalf("listen: %s\n", err)
}
}()
quit := make(chan os.Signal, 1)
// Handle signals
signal.Notify(quit, syscall.SIGINT, syscall.SIGTERM)
<-quit
log.Println("Shutting down server")
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
defer cancel()
if err := srv.Shutdown(ctx); err != nil {
log.Fatal("Server Shutdown: ", err)
}
log.Println("Server exiting")
}
func validateRequired(paramName string, paramValue string) error {
if paramValue == "" {
return fmt.Errorf("missing required param %s", paramName)
}
return nil
}