We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e22b17 commit 92f1e4dCopy full SHA for 92f1e4d
deploy/yaml/gateway.yaml
@@ -74,6 +74,8 @@ spec:
74
containerPort: 8080
75
- name: httpget
76
containerPort: 8081
77
+ - name: ctrl-proxy
78
+ containerPort: 8082
79
volumeMounts:
80
- name: config-gateway
81
mountPath: /vanus/config
vsctl/command/grpc.go
@@ -17,13 +17,14 @@ package command
17
import (
18
"context"
19
"fmt"
20
+ "strconv"
21
+ "strings"
22
+ "time"
23
+
24
"github.com/fatih/color"
25
"github.com/spf13/cobra"
26
"google.golang.org/grpc"
27
"google.golang.org/grpc/credentials/insecure"
- "strconv"
- "strings"
- "time"
28
)
29
30
func mustGatewayProxyGRPCConn(ctx context.Context, cmd *cobra.Command) *grpc.ClientConn {
0 commit comments