From baeb2813a8b5781c52eafb082ef62ad98fdf8929 Mon Sep 17 00:00:00 2001 From: Aaron Lunsford Date: Wed, 31 Jul 2024 15:27:22 -0400 Subject: [PATCH] add missing quotes --- api/v1alpha1/privateloadzone_types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/v1alpha1/privateloadzone_types.go b/api/v1alpha1/privateloadzone_types.go index d827ba96..10319276 100644 --- a/api/v1alpha1/privateloadzone_types.go +++ b/api/v1alpha1/privateloadzone_types.go @@ -34,7 +34,7 @@ import ( type PrivateLoadZoneSpec struct { Token string `json:"token"` Resources corev1.ResourceRequirements `json:"resources"` - Tolerations []corev1.Toleration `json:tolerations` + Tolerations []corev1.Toleration `json:"tolerations"` ServiceAccountName string `json:"serviceAccountName,omitempty"` NodeSelector map[string]string `json:"nodeSelector,omitempty"` Image string `json:"image,omitempty"`