Skip to content

Commit

Permalink
Fix PR comments
Browse files Browse the repository at this point in the history
Signed-off-by: Benjamin Hettwer <[email protected]>
  • Loading branch information
benjaminhettwer committed Oct 2, 2024
1 parent f72909b commit 80d7ec2
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 20 deletions.
1 change: 1 addition & 0 deletions NOTICE.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,6 @@ these files remains with the original authors.
### Robert Bosch GmbH

- Becker Sebastian <[email protected]>
- Hettwer Benjamin <[email protected]>
- Raskin Vadim <[email protected]>
- Trieflinger Sven <[email protected]>
8 changes: 4 additions & 4 deletions charts/ephemeral/templates/discovery.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2021-2023 - for information on the respective copyright owner
# Copyright (c) 2021-2024 - for information on the respective copyright owner
# see the NOTICE file and/or the repository https://github.com/carbynestack/ephemeral.
#
# SPDX-License-Identifier: Apache-2.0
Expand Down Expand Up @@ -66,7 +66,7 @@ spec:
ports:
- protocol: TCP
port: 8080
name: grpc-my
name: cs-tcp
targetPort: 8080
---
apiVersion: v1
Expand Down Expand Up @@ -99,7 +99,7 @@ spec:
{{- if .Values.discovery.tls.enabled }}
- port:
number: 31400
name: grpc-my
name: cs-grpc
protocol: HTTPS
tls:
mode: MUTUAL # enables mTLS on the Gateway
Expand All @@ -109,7 +109,7 @@ spec:
{{- else }}
- port:
number: 31400
name: grpc-my
name: cs-grpc
protocol: GRPC
hosts:
- "*"
Expand Down
2 changes: 1 addition & 1 deletion charts/ephemeral/templates/ephemeral.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2021-2023 - for information on the respective copyright owner
# Copyright (c) 2021-2024 - for information on the respective copyright owner
# see the NOTICE file and/or the repository https://github.com/carbynestack/ephemeral.
#
# SPDX-License-Identifier: Apache-2.0
Expand Down
2 changes: 1 addition & 1 deletion charts/ephemeral/templates/network-controller.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2021 - for information on the respective copyright owner
# Copyright (c) 2021-2024 - for information on the respective copyright owner
# see the NOTICE file and/or the repository https://github.com/carbynestack/ephemeral.
#
# SPDX-License-Identifier: Apache-2.0
Expand Down
2 changes: 1 addition & 1 deletion charts/ephemeral/values.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2021-2023 - for information on the respective copyright owner
# Copyright (c) 2021-2024 - for information on the respective copyright owner
# see the NOTICE file and/or the repository https://github.com/carbynestack/ephemeral.
#
# SPDX-License-Identifier: Apache-2.0
Expand Down
2 changes: 1 addition & 1 deletion pkg/ephemeral/io/feeder.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2023 - for information on the respective copyright owner
// Copyright (c) 2021-2024 - for information on the respective copyright owner
// see the NOTICE file and/or the repository https://github.com/carbynestack/ephemeral.
//
// SPDX-License-Identifier: Apache-2.0
Expand Down
2 changes: 1 addition & 1 deletion pkg/ephemeral/network/proxy.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2023 - for information on the respective copyright owner
// Copyright (c) 2021-2024 - for information on the respective copyright owner
// see the NOTICE file and/or the repository https://github.com/carbynestack/ephemeral.
//
// SPDX-License-Identifier: Apache-2.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,6 @@ func (r *ReconcileNetwork) Reconcile(request reconcile.Request) (reconcile.Resul
}

log.Info(fmt.Sprintf("Reconcile with the config:\n%+v", r.config))
if err != nil {
panic(err)
}

// Check if the gateway already exist, create it otherwise.

Expand Down
7 changes: 0 additions & 7 deletions pkg/types/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -154,13 +154,6 @@ type DiscoveryClientTypedConfig struct {
ConnectTimeout time.Duration
}

// K8sSecret represents the structure containing key, cert, and CA cert
type K8sSecret struct {
Key string
Cert string
CACert string
}

// OutputConfig defines how the output of the app execution is treated.
type OutputConfig struct {
Type string `json:"type"`
Expand Down
2 changes: 1 addition & 1 deletion pkg/utils/os.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021 - for information on the respective copyright owner
// Copyright (c) 2021-2024 - for information on the respective copyright owner
// see the NOTICE file and/or the repository https://github.com/carbynestack/ephemeral.
//
// SPDX-License-Identifier: Apache-2.0
Expand Down

0 comments on commit 80d7ec2

Please sign in to comment.