-
Notifications
You must be signed in to change notification settings - Fork 113
/
Copy pathcommands.go
770 lines (665 loc) · 21 KB
/
commands.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
package main
import (
"errors"
"fmt"
"os"
"runtime/debug"
"strconv"
"strings"
"time"
"github.com/spf13/cobra"
"github.com/spf13/pflag"
"go.uber.org/zap"
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
"k8s.io/klog/v2"
ctlr "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/client"
k8sConfig "sigs.k8s.io/controller-runtime/pkg/client/config"
"sigs.k8s.io/controller-runtime/pkg/log"
ctlrZap "sigs.k8s.io/controller-runtime/pkg/log/zap"
"github.com/nginx/nginx-gateway-fabric/internal/framework/file"
"github.com/nginx/nginx-gateway-fabric/internal/mode/static"
"github.com/nginx/nginx-gateway-fabric/internal/mode/static/config"
"github.com/nginx/nginx-gateway-fabric/internal/mode/static/licensing"
ngxConfig "github.com/nginx/nginx-gateway-fabric/internal/mode/static/nginx/config"
)
// These flags are shared by multiple commands.
const (
domain = "gateway.nginx.org"
gatewayClassFlag = "gatewayclass"
gatewayClassNameUsage = `The name of the GatewayClass resource. ` +
`Every NGINX Gateway Fabric must have a unique corresponding GatewayClass resource.`
gatewayCtlrNameFlag = "gateway-ctlr-name"
gatewayCtlrNameUsageFmt = `The name of the Gateway controller. ` +
`The controller name must be of the form: DOMAIN/PATH. The controller's domain is '%s'`
plusFlag = "nginx-plus"
serverTLSSecret = "server-tls"
agentTLSSecret = "agent-tls"
)
func createRootCommand() *cobra.Command {
rootCmd := &cobra.Command{
Use: "gateway",
SilenceUsage: true,
SilenceErrors: true,
RunE: func(cmd *cobra.Command, _ []string) error {
return cmd.Help()
},
}
return rootCmd
}
func createControllerCommand() *cobra.Command {
// flag names
const (
configFlag = "config"
serviceFlag = "service"
agentTLSSecretFlag = "agent-tls-secret"
metricsDisableFlag = "metrics-disable"
metricsSecureFlag = "metrics-secure-serving"
metricsPortFlag = "metrics-port"
healthDisableFlag = "health-disable"
healthPortFlag = "health-port"
leaderElectionDisableFlag = "leader-election-disable"
leaderElectionLockNameFlag = "leader-election-lock-name"
productTelemetryDisableFlag = "product-telemetry-disable"
gwAPIExperimentalFlag = "gateway-api-experimental-features"
nginxDockerSecretFlag = "nginx-docker-secret" //nolint:gosec // not credentials
usageReportSecretFlag = "usage-report-secret"
usageReportEndpointFlag = "usage-report-endpoint"
usageReportResolverFlag = "usage-report-resolver"
usageReportSkipVerifyFlag = "usage-report-skip-verify"
usageReportClientSSLSecretFlag = "usage-report-client-ssl-secret" //nolint:gosec // not credentials
usageReportCASecretFlag = "usage-report-ca-secret" //nolint:gosec // not credentials
snippetsFiltersFlag = "snippets-filters"
nginxSCCFlag = "nginx-scc"
)
// flag values
var (
gatewayCtlrName = stringValidatingValue{
validator: validateGatewayControllerName,
}
gatewayClassName = stringValidatingValue{
validator: validateResourceName,
}
configName = stringValidatingValue{
validator: validateResourceName,
}
serviceName = stringValidatingValue{
validator: validateResourceName,
}
agentTLSSecretName = stringValidatingValue{
validator: validateResourceName,
value: agentTLSSecret,
}
nginxSCCName = stringValidatingValue{
validator: validateResourceName,
}
disableMetrics bool
metricsSecure bool
metricsListenPort = intValidatingValue{
validator: validatePort,
value: 9113,
}
disableHealth bool
healthListenPort = intValidatingValue{
validator: validatePort,
value: 8081,
}
disableLeaderElection bool
leaderElectionLockName = stringValidatingValue{
validator: validateResourceName,
value: "nginx-gateway-leader-election-lock",
}
gwExperimentalFeatures bool
disableProductTelemetry bool
snippetsFilters bool
plus bool
nginxDockerSecrets = stringSliceValidatingValue{
validator: validateResourceName,
}
usageReportSkipVerify bool
usageReportSecretName = stringValidatingValue{
validator: validateResourceName,
value: "nplus-license",
}
usageReportEndpoint = stringValidatingValue{
validator: validateEndpointOptionalPort,
}
usageReportResolver = stringValidatingValue{
validator: validateEndpointOptionalPort,
}
usageReportClientSSLSecretName = stringValidatingValue{
validator: validateResourceName,
}
usageReportCASecretName = stringValidatingValue{
validator: validateResourceName,
}
)
cmd := &cobra.Command{
Use: "controller",
Short: "Run the NGINX Gateway Fabric control plane",
RunE: func(cmd *cobra.Command, _ []string) error {
atom := zap.NewAtomicLevel()
logger := ctlrZap.New(ctlrZap.Level(atom))
klog.SetLogger(logger)
commit, date, dirty := getBuildInfo()
logger.Info(
"Starting the NGINX Gateway Fabric control plane",
"version", version,
"commit", commit,
"date", date,
"dirty", dirty,
)
log.SetLogger(logger)
if err := ensureNoPortCollisions(metricsListenPort.value, healthListenPort.value); err != nil {
return fmt.Errorf("error validating ports: %w", err)
}
imageSource := os.Getenv("BUILD_AGENT")
if imageSource != "gha" && imageSource != "local" {
imageSource = "unknown"
}
period, err := time.ParseDuration(telemetryReportPeriod)
if err != nil {
return fmt.Errorf("error parsing telemetry report period: %w", err)
}
if telemetryEndpoint != "" {
if err := validateEndpoint(telemetryEndpoint); err != nil {
return fmt.Errorf("error validating telemetry endpoint: %w", err)
}
}
telemetryEndpointInsecure, err := strconv.ParseBool(telemetryEndpointInsecure)
if err != nil {
return fmt.Errorf("error parsing telemetry endpoint insecure: %w", err)
}
var usageReportConfig config.UsageReportConfig
if plus && usageReportSecretName.value == "" {
return errors.New("usage-report-secret is required when using NGINX Plus")
}
if plus {
usageReportConfig = config.UsageReportConfig{
SecretName: usageReportSecretName.value,
ClientSSLSecretName: usageReportClientSSLSecretName.value,
CASecretName: usageReportCASecretName.value,
Endpoint: usageReportEndpoint.value,
Resolver: usageReportResolver.value,
SkipVerify: usageReportSkipVerify,
}
}
flagKeys, flagValues := parseFlags(cmd.Flags())
podConfig, err := createGatewayPodConfig(version, serviceName.value)
if err != nil {
return fmt.Errorf("error creating gateway pod config: %w", err)
}
conf := config.Config{
GatewayCtlrName: gatewayCtlrName.value,
ConfigName: configName.String(),
Logger: logger,
AtomicLevel: atom,
GatewayClassName: gatewayClassName.value,
GatewayPodConfig: podConfig,
HealthConfig: config.HealthConfig{
Enabled: !disableHealth,
Port: healthListenPort.value,
},
MetricsConfig: config.MetricsConfig{
Enabled: !disableMetrics,
Port: metricsListenPort.value,
Secure: metricsSecure,
},
LeaderElection: config.LeaderElectionConfig{
Enabled: !disableLeaderElection,
LockName: leaderElectionLockName.String(),
Identity: podConfig.Name,
},
UsageReportConfig: usageReportConfig,
ProductTelemetryConfig: config.ProductTelemetryConfig{
ReportPeriod: period,
Enabled: !disableProductTelemetry,
Endpoint: telemetryEndpoint,
EndpointInsecure: telemetryEndpointInsecure,
},
Plus: plus,
ExperimentalFeatures: gwExperimentalFeatures,
ImageSource: imageSource,
Flags: config.Flags{
Names: flagKeys,
Values: flagValues,
},
SnippetsFilters: snippetsFilters,
NginxDockerSecretNames: nginxDockerSecrets.values,
AgentTLSSecretName: agentTLSSecretName.value,
NGINXSCCName: nginxSCCName.value,
}
if err := static.StartManager(conf); err != nil {
return fmt.Errorf("failed to start control loop: %w", err)
}
return nil
},
}
cmd.Flags().Var(
&gatewayCtlrName,
gatewayCtlrNameFlag,
fmt.Sprintf(gatewayCtlrNameUsageFmt, domain),
)
utilruntime.Must(cmd.MarkFlagRequired(gatewayCtlrNameFlag))
cmd.Flags().Var(
&gatewayClassName,
gatewayClassFlag,
gatewayClassNameUsage,
)
utilruntime.Must(cmd.MarkFlagRequired(gatewayClassFlag))
cmd.Flags().VarP(
&configName,
configFlag,
"c",
`The name of the NginxGateway resource to be used for this controller's dynamic configuration.`+
` Lives in the same Namespace as the controller.`,
)
cmd.Flags().Var(
&serviceName,
serviceFlag,
`The name of the Service that fronts this NGINX Gateway Fabric Pod.`+
` Lives in the same Namespace as the controller.`,
)
cmd.Flags().Var(
&agentTLSSecretName,
agentTLSSecretFlag,
`The name of the base Secret containing TLS CA, certificate, and key for the NGINX Agent to securely `+
`communicate with the NGINX Gateway Fabric control plane. Must exist in the same namespace that the `+
`NGINX Gateway Fabric control plane is running in (default namespace: nginx-gateway).`,
)
cmd.Flags().BoolVar(
&disableMetrics,
metricsDisableFlag,
false,
"Disable exposing metrics in the Prometheus format.",
)
cmd.Flags().Var(
&metricsListenPort,
metricsPortFlag,
"Set the port where the metrics are exposed. Format: [1024 - 65535]",
)
cmd.Flags().BoolVar(
&metricsSecure,
metricsSecureFlag,
false,
"Enable serving metrics via https. By default metrics are served via http."+
" Please note that this endpoint will be secured with a self-signed certificate.",
)
cmd.Flags().BoolVar(
&disableHealth,
healthDisableFlag,
false,
"Disable running the health probe server.",
)
cmd.Flags().Var(
&healthListenPort,
healthPortFlag,
"Set the port where the health probe server is exposed. Format: [1024 - 65535]",
)
cmd.Flags().BoolVar(
&disableLeaderElection,
leaderElectionDisableFlag,
false,
"Disable leader election. Leader election is used to avoid multiple replicas of the NGINX Gateway Fabric"+
" reporting the status of the Gateway API resources. If disabled, "+
"all replicas of NGINX Gateway Fabric will update the statuses of the Gateway API resources.",
)
cmd.Flags().Var(
&leaderElectionLockName,
leaderElectionLockNameFlag,
"The name of the leader election lock. "+
"A Lease object with this name will be created in the same Namespace as the controller.",
)
cmd.Flags().BoolVar(
&disableProductTelemetry,
productTelemetryDisableFlag,
false,
"Disable the collection of product telemetry.",
)
cmd.Flags().BoolVar(
&plus,
plusFlag,
false,
"Use NGINX Plus",
)
cmd.Flags().BoolVar(
&gwExperimentalFeatures,
gwAPIExperimentalFlag,
false,
"Enable the experimental features of Gateway API which are supported by NGINX Gateway Fabric. "+
"Requires the Gateway APIs installed from the experimental channel.",
)
cmd.Flags().Var(
&nginxDockerSecrets,
nginxDockerSecretFlag,
"The name of the NGINX docker registry Secret(s). Must exist in the same namespace "+
"that the NGINX Gateway Fabric control plane is running in (default namespace: nginx-gateway).",
)
cmd.Flags().Var(
&usageReportSecretName,
usageReportSecretFlag,
"The name of the Secret containing the JWT for NGINX Plus usage reporting. Must exist in the same namespace "+
"that the NGINX Gateway Fabric control plane is running in (default namespace: nginx-gateway).",
)
cmd.Flags().Var(
&usageReportEndpoint,
usageReportEndpointFlag,
"The endpoint of the NGINX Plus usage reporting server.",
)
cmd.Flags().Var(
&usageReportResolver,
usageReportResolverFlag,
"The nameserver used to resolve the NGINX Plus usage reporting endpoint. Used with NGINX Instance Manager.",
)
cmd.Flags().BoolVar(
&usageReportSkipVerify,
usageReportSkipVerifyFlag,
false,
"Disable client verification of the NGINX Plus usage reporting server certificate.",
)
cmd.Flags().Var(
&usageReportClientSSLSecretName,
usageReportClientSSLSecretFlag,
"The name of the Secret containing the client certificate and key for authenticating with NGINX Instance Manager. "+
"Must exist in the same namespace that the NGINX Gateway Fabric control plane is running in "+
"(default namespace: nginx-gateway).",
)
cmd.Flags().Var(
&usageReportCASecretName,
usageReportCASecretFlag,
"The name of the Secret containing the NGINX Instance Manager CA certificate. "+
"Must exist in the same namespace that the NGINX Gateway Fabric control plane is running in "+
"(default namespace: nginx-gateway).",
)
cmd.Flags().BoolVar(
&snippetsFilters,
snippetsFiltersFlag,
false,
"Enable SnippetsFilters feature. SnippetsFilters allow inserting NGINX configuration into the "+
"generated NGINX config for HTTPRoute and GRPCRoute resources.",
)
cmd.Flags().Var(
&nginxSCCName,
nginxSCCFlag,
`The name of the SecurityContextConstraints to be used with the NGINX data plane Pods.`+
` Only applicable in OpenShift.`,
)
return cmd
}
func createGenerateCertsCommand() *cobra.Command {
// flag names
const (
serverTLSSecretFlag = "server-tls-secret" //nolint:gosec // not credentials
agentTLSSecretFlag = "agent-tls-secret"
serviceFlag = "service"
clusterDomainFlag = "cluster-domain"
overwriteFlag = "overwrite"
)
// flag values
var (
serverTLSSecretName = stringValidatingValue{
validator: validateResourceName,
value: serverTLSSecret,
}
agentTLSSecretName = stringValidatingValue{
validator: validateResourceName,
value: agentTLSSecret,
}
serviceName = stringValidatingValue{
validator: validateResourceName,
}
clusterDomain = stringValidatingValue{
validator: validateQualifiedName,
value: defaultDomain,
}
overwrite bool
)
cmd := &cobra.Command{
Use: "generate-certs",
Short: "Generate self-signed certificates for securing control plane to data plane communication",
RunE: func(cmd *cobra.Command, _ []string) error {
namespace, err := getValueFromEnv("POD_NAMESPACE")
if err != nil {
return fmt.Errorf("POD_NAMESPACE must be specified in the ENV")
}
certConfig, err := generateCertificates(serviceName.value, namespace, clusterDomain.value)
if err != nil {
return fmt.Errorf("error generating certificates: %w", err)
}
k8sClient, err := client.New(k8sConfig.GetConfigOrDie(), client.Options{})
if err != nil {
return fmt.Errorf("error creating k8s client: %w", err)
}
if err := createSecrets(
cmd.Context(),
k8sClient,
certConfig,
serverTLSSecretName.value,
agentTLSSecretName.value,
namespace,
overwrite,
); err != nil {
return fmt.Errorf("error creating secrets: %w", err)
}
return nil
},
}
cmd.Flags().Var(
&serverTLSSecretName,
serverTLSSecretFlag,
`The name of the Secret containing TLS CA, certificate, and key for the NGINX Gateway Fabric control plane `+
`to securely communicate with the NGINX Agent. Must exist in the same namespace that the `+
`NGINX Gateway Fabric control plane is running in (default namespace: nginx-gateway).`,
)
cmd.Flags().Var(
&agentTLSSecretName,
agentTLSSecretFlag,
`The name of the base Secret containing TLS CA, certificate, and key for the NGINX Agent to securely `+
`communicate with the NGINX Gateway Fabric control plane. Must exist in the same namespace that the `+
`NGINX Gateway Fabric control plane is running in (default namespace: nginx-gateway).`,
)
cmd.Flags().Var(
&serviceName,
serviceFlag,
`The name of the Service that fronts the NGINX Gateway Fabric Pod.`+
` Lives in the same Namespace as the controller.`,
)
cmd.Flags().Var(
&clusterDomain,
clusterDomainFlag,
`The DNS domain of your Kubernetes cluster.`,
)
cmd.Flags().BoolVar(
&overwrite,
overwriteFlag,
false,
"Overwrite existing certificates.",
)
return cmd
}
func createInitializeCommand() *cobra.Command {
// flag names
const srcFlag = "source"
const destFlag = "destination"
// flag values
var srcFiles []string
var destDirs []string
var plus bool
cmd := &cobra.Command{
Use: "initialize",
Short: "Write initial configuration files",
RunE: func(_ *cobra.Command, _ []string) error {
if err := validateCopyArgs(srcFiles, destDirs); err != nil {
return err
}
podUID, err := getValueFromEnv("POD_UID")
if err != nil {
return fmt.Errorf("could not get pod UID: %w", err)
}
clusterCfg := ctlr.GetConfigOrDie()
k8sReader, err := client.New(clusterCfg, client.Options{})
if err != nil {
return fmt.Errorf("unable to initialize k8s client: %w", err)
}
logger := ctlrZap.New()
klog.SetLogger(logger)
logger.Info(
"Starting init container",
"source filenames to copy", srcFiles,
"destination directories", destDirs,
"nginx-plus",
plus,
)
log.SetLogger(logger)
dcc := licensing.NewDeploymentContextCollector(licensing.DeploymentContextCollectorConfig{
K8sClientReader: k8sReader,
PodUID: podUID,
Logger: logger.WithName("deployCtxCollector"),
})
files := make([]fileToCopy, 0, len(srcFiles))
for i, src := range srcFiles {
files = append(files, fileToCopy{
destDirName: destDirs[i],
srcFileName: src,
})
}
return initialize(initializeConfig{
fileManager: file.NewStdLibOSFileManager(),
fileGenerator: ngxConfig.NewGeneratorImpl(plus, nil, logger.WithName("generator")),
logger: logger,
plus: plus,
collector: dcc,
copy: files,
})
},
}
cmd.Flags().StringSliceVar(
&srcFiles,
srcFlag,
[]string{},
"The source files to be copied",
)
cmd.Flags().StringSliceVar(
&destDirs,
destFlag,
[]string{},
"The destination directories for the source files at the same array index to be copied to",
)
cmd.Flags().BoolVar(
&plus,
plusFlag,
false,
"Use NGINX Plus",
)
cmd.MarkFlagsRequiredTogether(srcFlag, destFlag)
return cmd
}
// FIXME(pleshakov): Remove this command once NGF min supported Kubernetes version supports sleep action in
// preStop hook.
// See https://github.com/kubernetes/enhancements/tree/4ec371d92dcd4f56a2ab18c8ba20bb85d8d20efe/keps/sig-node/3960-pod-lifecycle-sleep-action
//
//nolint:lll
func createSleepCommand() *cobra.Command {
// flag names
const durationFlag = "duration"
// flag values
var duration time.Duration
cmd := &cobra.Command{
Use: "sleep",
Short: "Sleep for specified duration and exit",
Run: func(_ *cobra.Command, _ []string) {
// It is expected that this command is run from lifecycle hook.
// Because logs from hooks are not visible in the container logs, we don't log here at all.
time.Sleep(duration)
},
}
cmd.Flags().DurationVar(
&duration,
durationFlag,
30*time.Second,
"Set the duration of sleep. Must be parsable by https://pkg.go.dev/time#ParseDuration",
)
return cmd
}
func parseFlags(flags *pflag.FlagSet) ([]string, []string) {
var flagKeys, flagValues []string
flags.VisitAll(
func(flag *pflag.Flag) {
flagKeys = append(flagKeys, flag.Name)
if flag.Value.Type() == "bool" {
flagValues = append(flagValues, flag.Value.String())
} else {
val := "user-defined"
if flag.Value.String() == flag.DefValue {
val = "default"
}
flagValues = append(flagValues, val)
}
},
)
return flagKeys, flagValues
}
func getBuildInfo() (commitHash string, commitTime string, dirtyBuild string) {
commitHash = "unknown"
commitTime = "unknown"
dirtyBuild = "unknown"
info, ok := debug.ReadBuildInfo()
if !ok {
return
}
for _, kv := range info.Settings {
switch kv.Key {
case "vcs.revision":
commitHash = kv.Value
case "vcs.time":
commitTime = kv.Value
case "vcs.modified":
dirtyBuild = kv.Value
}
}
return
}
func createGatewayPodConfig(version, svcName string) (config.GatewayPodConfig, error) {
podUID, err := getValueFromEnv("POD_UID")
if err != nil {
return config.GatewayPodConfig{}, err
}
ns, err := getValueFromEnv("POD_NAMESPACE")
if err != nil {
return config.GatewayPodConfig{}, err
}
name, err := getValueFromEnv("POD_NAME")
if err != nil {
return config.GatewayPodConfig{}, err
}
instance, err := getValueFromEnv("INSTANCE_NAME")
if err != nil {
return config.GatewayPodConfig{}, err
}
image, err := getValueFromEnv("IMAGE_NAME")
if err != nil {
return config.GatewayPodConfig{}, err
}
// use image tag version if set, otherwise fall back to binary version
ngfVersion := version
if imageParts := strings.Split(image, ":"); len(imageParts) == 2 {
ngfVersion = imageParts[1]
}
c := config.GatewayPodConfig{
ServiceName: svcName,
Namespace: ns,
Name: name,
UID: podUID,
InstanceName: instance,
Version: ngfVersion,
Image: image,
}
return c, nil
}
func getValueFromEnv(key string) (string, error) {
val := os.Getenv(key)
if val == "" {
return "", fmt.Errorf("environment variable %s not set", key)
}
return val, nil
}