Skip to content

Commit

Permalink
Fix invalid reference to annotations metadata on Wireguard agent serv…
Browse files Browse the repository at this point in the history
…ice spec
  • Loading branch information
Matthew-Beckett committed Apr 29, 2023
1 parent 673503f commit c4c4de5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/api/v1alpha1/wireguard_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ type WireguardSpec struct {
// A field that specifies the type of Kubernetes service that should be used for the Wireguard VPN. This could be NodePort or LoadBalancer, depending on the needs of the deployment.
ServiceType corev1.ServiceType `json:"serviceType,omitempty"`
// A map of key value strings for service annotations
ServiceAnnotations metav1.Annotations `json:"serviceAnnotations,omitempty"`
ServiceAnnotations map[string]string `json:"serviceAnnotations,omitempty"`
// A boolean field that specifies whether IP forwarding should be enabled on the Wireguard VPN pod at startup. This can be useful to enable if the peers are having problems with sending traffic to the internet.
EnableIpForwardOnPodInit bool `json:"enableIpForwardOnPodInit,omitempty"`
}
Expand Down

0 comments on commit c4c4de5

Please sign in to comment.