reorder for 1274

This commit is contained in:
lvuch 2020-09-25 15:39:22 -07:00
parent da42cc5dda
commit 5c2024b87b
1 changed files with 2 additions and 2 deletions

View File

@ -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'
};