Commit cd21f126 authored by panos's avatar panos
Browse files

fix: change cronjob pod labels

parent 1838c216
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -42,7 +42,7 @@ items:
              app: {{ template "appname" $ }}
              release: {{ $.Release.Name }}
              track: "{{ $.Values.application.track }}"
              tier: "{{ $.Values.application.tier }}"
              tier: cronjob
          spec:
            imagePullSecrets:
              {{ toYaml $.Values.image.secrets | nindent 14 }}
+1 −1
Original line number Diff line number Diff line
@@ -101,7 +101,7 @@ func TestCronjobMeta(t *testing.T) {
				require.Equal(t, map[string]string{
					"app":     tc.ExpectedName,
					"release": tc.ExpectedRelease,
					"tier":    "web",
					"tier":    "cronjob",
					"track":   "stable",
				}, cronjob.Spec.JobTemplate.Spec.Template.Labels)
			}