From 1a37f52320915472656699cc2d4a37369938ff3d Mon Sep 17 00:00:00 2001 From: AKSHAT ANAND Date: Thu, 6 Nov 2025 15:33:16 +0000 Subject: [PATCH] Remove duplicate app_component_health copy.yml file Fixes #1110 The file 'app_component_health copy.yml' was an accidental duplicate of 'app_component_health.yml' with identical content. This commit removes the duplicate to clean up the repository structure. --- .../apps/models/app_component_health copy.yml | 29 ------------------- 1 file changed, 29 deletions(-) delete mode 100644 specification/resources/apps/models/app_component_health copy.yml diff --git a/specification/resources/apps/models/app_component_health copy.yml b/specification/resources/apps/models/app_component_health copy.yml deleted file mode 100644 index 1160b67be..000000000 --- a/specification/resources/apps/models/app_component_health copy.yml +++ /dev/null @@ -1,29 +0,0 @@ -type: object -properties: - name: - type: string - example: sample_app - cpu_usage_percent: - type: number - format: double - example: 30 - memory_usage_percent: - type: number - format: double - example: 25 - replicas_desired: - type: integer - format: int64 - example: 1 - replicas_ready: - type: integer - format: int64 - example: 1 - state: - type: string - enum: - - UNKNOWN - - HEALTHY - - UNHEALTHY - default: UNKNOWN - example: HEALTHY