From 5c2024b87b141c1de0b1d99f3247966b0b6ac303 Mon Sep 17 00:00:00 2001 From: lvuch Date: Fri, 25 Sep 2020 15:39:22 -0700 Subject: [PATCH] reorder for 1274 --- config/types.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/types.js b/config/types.js index ad86551c36..33901e84a1 100644 --- a/config/types.js +++ b/config/types.js @@ -54,10 +54,10 @@ export const WORKLOAD = 'workload'; // The types that are aggregated into a "workload" export const WORKLOAD_TYPES = { DEPLOYMENT: 'apps.deployment', - DAEMON_SET: 'apps.daemonset', - STATEFUL_SET: 'apps.statefulset', CRON_JOB: 'batch.cronjob', + DAEMON_SET: 'apps.daemonset', JOB: 'batch.job', + STATEFUL_SET: 'apps.statefulset', REPLICA_SET: 'apps.replicaset', REPLICATION_CONTROLLER: 'replicationcontroller' };