Commit 82de6b33 authored by Shinya Maeda's avatar Shinya Maeda
Browse files

Merge branch 'change-cronjob-pod-labels' into 'master'

parents 9d809792 cd21f126
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -45,7 +45,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)
			}