-
Notifications
You must be signed in to change notification settings - Fork 360
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: prevent nil pointer panic because nonexist attribute
Signed-off-by: Ardika Bagus <me@ardikabs.com>
- Loading branch information
Showing
7 changed files
with
638 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
79 changes: 79 additions & 0 deletions
79
internal/gatewayapi/testdata/envoyproxy-accesslog-file-json-no-format.in.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
envoyproxy: | ||
apiVersion: config.gateway.envoyproxy.io/v1alpha1 | ||
kind: EnvoyProxy | ||
metadata: | ||
namespace: envoy-gateway-system | ||
name: test | ||
spec: | ||
telemetry: | ||
accessLog: | ||
settings: | ||
- format: | ||
type: JSON | ||
sinks: | ||
- type: File | ||
file: | ||
path: /dev/stdout | ||
provider: | ||
type: Kubernetes | ||
kubernetes: | ||
envoyService: | ||
type: LoadBalancer | ||
envoyDeployment: | ||
replicas: 2 | ||
container: | ||
env: | ||
- name: env_a | ||
value: env_a_value | ||
- name: env_b | ||
value: env_b_name | ||
image: "envoyproxy/envoy-dev:latest" | ||
resources: | ||
requests: | ||
cpu: 100m | ||
memory: 512Mi | ||
securityContext: | ||
runAsUser: 2000 | ||
allowPrivilegeEscalation: false | ||
pod: | ||
annotations: | ||
key1: val1 | ||
key2: val2 | ||
affinity: | ||
nodeAffinity: | ||
requiredDuringSchedulingIgnoredDuringExecution: | ||
nodeSelectorTerms: | ||
- matchExpressions: | ||
- key: cloud.google.com/gke-nodepool | ||
operator: In | ||
values: | ||
- router-node | ||
tolerations: | ||
- effect: NoSchedule | ||
key: node-type | ||
operator: Exists | ||
value: "router" | ||
securityContext: | ||
runAsUser: 1000 | ||
runAsGroup: 3000 | ||
fsGroup: 2000 | ||
fsGroupChangePolicy: "OnRootMismatch" | ||
volumes: | ||
- name: certs | ||
secret: | ||
secretName: envoy-cert | ||
gateways: | ||
- apiVersion: gateway.networking.k8s.io/v1beta1 | ||
kind: Gateway | ||
metadata: | ||
namespace: envoy-gateway | ||
name: gateway-1 | ||
spec: | ||
gatewayClassName: envoy-gateway-class | ||
listeners: | ||
- name: http | ||
protocol: HTTP | ||
port: 80 | ||
allowedRoutes: | ||
namespaces: | ||
from: Same |
128 changes: 128 additions & 0 deletions
128
internal/gatewayapi/testdata/envoyproxy-accesslog-file-json-no-format.out.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
gateways: | ||
- apiVersion: gateway.networking.k8s.io/v1beta1 | ||
kind: Gateway | ||
metadata: | ||
creationTimestamp: null | ||
name: gateway-1 | ||
namespace: envoy-gateway | ||
spec: | ||
gatewayClassName: envoy-gateway-class | ||
listeners: | ||
- allowedRoutes: | ||
namespaces: | ||
from: Same | ||
name: http | ||
port: 80 | ||
protocol: HTTP | ||
status: | ||
listeners: | ||
- attachedRoutes: 0 | ||
conditions: | ||
- lastTransitionTime: null | ||
message: Sending translated listener configuration to the data plane | ||
reason: Programmed | ||
status: "True" | ||
type: Programmed | ||
- lastTransitionTime: null | ||
message: Listener has been successfully translated | ||
reason: Accepted | ||
status: "True" | ||
type: Accepted | ||
name: http | ||
supportedKinds: | ||
- group: gateway.networking.k8s.io | ||
kind: HTTPRoute | ||
- group: gateway.networking.k8s.io | ||
kind: GRPCRoute | ||
infraIR: | ||
envoy-gateway/gateway-1: | ||
proxy: | ||
config: | ||
apiVersion: config.gateway.envoyproxy.io/v1alpha1 | ||
kind: EnvoyProxy | ||
metadata: | ||
creationTimestamp: null | ||
name: test | ||
namespace: envoy-gateway-system | ||
spec: | ||
logging: {} | ||
provider: | ||
kubernetes: | ||
envoyDeployment: | ||
container: | ||
env: | ||
- name: env_a | ||
value: env_a_value | ||
- name: env_b | ||
value: env_b_name | ||
image: envoyproxy/envoy-dev:latest | ||
resources: | ||
requests: | ||
cpu: 100m | ||
memory: 512Mi | ||
securityContext: | ||
allowPrivilegeEscalation: false | ||
runAsUser: 2000 | ||
pod: | ||
affinity: | ||
nodeAffinity: | ||
requiredDuringSchedulingIgnoredDuringExecution: | ||
nodeSelectorTerms: | ||
- matchExpressions: | ||
- key: cloud.google.com/gke-nodepool | ||
operator: In | ||
values: | ||
- router-node | ||
annotations: | ||
key1: val1 | ||
key2: val2 | ||
securityContext: | ||
fsGroup: 2000 | ||
fsGroupChangePolicy: OnRootMismatch | ||
runAsGroup: 3000 | ||
runAsUser: 1000 | ||
tolerations: | ||
- effect: NoSchedule | ||
key: node-type | ||
operator: Exists | ||
value: router | ||
volumes: | ||
- name: certs | ||
secret: | ||
secretName: envoy-cert | ||
replicas: 2 | ||
envoyService: | ||
type: LoadBalancer | ||
type: Kubernetes | ||
telemetry: | ||
accessLog: | ||
settings: | ||
- format: | ||
type: JSON | ||
sinks: | ||
- file: | ||
path: /dev/stdout | ||
type: File | ||
status: {} | ||
listeners: | ||
- address: "" | ||
ports: | ||
- containerPort: 10080 | ||
name: http | ||
protocol: HTTP | ||
servicePort: 80 | ||
metadata: | ||
labels: | ||
gateway.envoyproxy.io/owning-gateway-name: gateway-1 | ||
gateway.envoyproxy.io/owning-gateway-namespace: envoy-gateway | ||
name: envoy-gateway/gateway-1 | ||
xdsIR: | ||
envoy-gateway/gateway-1: | ||
accessLog: {} | ||
http: | ||
- address: 0.0.0.0 | ||
hostnames: | ||
- '*' | ||
isHTTP2: false | ||
name: envoy-gateway/gateway-1/http | ||
port: 10080 |
82 changes: 82 additions & 0 deletions
82
internal/gatewayapi/testdata/envoyproxy-accesslog-file-json.in.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
envoyproxy: | ||
apiVersion: config.gateway.envoyproxy.io/v1alpha1 | ||
kind: EnvoyProxy | ||
metadata: | ||
namespace: envoy-gateway-system | ||
name: test | ||
spec: | ||
telemetry: | ||
accessLog: | ||
settings: | ||
- format: | ||
type: JSON | ||
json: | ||
protocol: "%PROTOCOL%" | ||
duration: "%DURATION%" | ||
sinks: | ||
- type: File | ||
file: | ||
path: /dev/stdout | ||
provider: | ||
type: Kubernetes | ||
kubernetes: | ||
envoyService: | ||
type: LoadBalancer | ||
envoyDeployment: | ||
replicas: 2 | ||
container: | ||
env: | ||
- name: env_a | ||
value: env_a_value | ||
- name: env_b | ||
value: env_b_name | ||
image: "envoyproxy/envoy-dev:latest" | ||
resources: | ||
requests: | ||
cpu: 100m | ||
memory: 512Mi | ||
securityContext: | ||
runAsUser: 2000 | ||
allowPrivilegeEscalation: false | ||
pod: | ||
annotations: | ||
key1: val1 | ||
key2: val2 | ||
affinity: | ||
nodeAffinity: | ||
requiredDuringSchedulingIgnoredDuringExecution: | ||
nodeSelectorTerms: | ||
- matchExpressions: | ||
- key: cloud.google.com/gke-nodepool | ||
operator: In | ||
values: | ||
- router-node | ||
tolerations: | ||
- effect: NoSchedule | ||
key: node-type | ||
operator: Exists | ||
value: "router" | ||
securityContext: | ||
runAsUser: 1000 | ||
runAsGroup: 3000 | ||
fsGroup: 2000 | ||
fsGroupChangePolicy: "OnRootMismatch" | ||
volumes: | ||
- name: certs | ||
secret: | ||
secretName: envoy-cert | ||
gateways: | ||
- apiVersion: gateway.networking.k8s.io/v1beta1 | ||
kind: Gateway | ||
metadata: | ||
namespace: envoy-gateway | ||
name: gateway-1 | ||
spec: | ||
gatewayClassName: envoy-gateway-class | ||
listeners: | ||
- name: http | ||
protocol: HTTP | ||
port: 80 | ||
allowedRoutes: | ||
namespaces: | ||
from: Same |
Oops, something went wrong.