initial commit
All checks were successful
Build and Publish TechDocs / build-and-publish (push) Successful in 1m7s

Change-Id: I1a1a4542eadaa960a5dfb4d02d70626904f78dd9
This commit is contained in:
Scaffolder
2026-05-07 19:42:09 +00:00
commit b878ce70e9
16 changed files with 1399 additions and 0 deletions

139
catalog-info.yaml Normal file
View File

@@ -0,0 +1,139 @@
apiVersion: backstage.io/v1alpha1
kind: Component
metadata:
name: test-for-310--004
description: Test component for work on issue 310
annotations:
humanitec.com/orgId: skillful-wild-chicken-2617
humanitec.com/projectId: domain-demo-apps
cjot.io/target-domain: "demo-apps"
backstage.io/techdocs-ref: dir:.
backstage.io/kubernetes-namespace: dev
backstage.io/kubernetes-namespaces: "dev"
backstage.io/kubernetes-label-selector: "app=test-for-310--004"
gitea.kyndemo.live/repo-slug: "demo-platform/test-repo-310--004"
sonarqube.org/project-key: test-for-310--004
prometheus.io/scrape: "true"
prometheus.io/port: "8080"
prometheus.io/path: "/actuator/prometheus"
grafana/grafana-instance: default
grafana/alert-label-selector: "app=test-for-310--004"
grafana/dashboard-selector: "uid == 'otel-app-observability-v2'"
grafana.com/alert-label-selector: "app=test-for-310--004"
grafana.com/dashboard-url: "https://grafana.kyndemo.live/d/otel-app-observability-v2/opentelemetry-application-observability?orgId=1&var-app=test-for-310--004"
chaos-mesh/enabled: "true"
k6/enabled: "true"
k6/test-configmap: "k6-test-test-for-310--004"
k6/test-namespace: "dev"
k6/target-service: "test-for-310--004"
k6/target-port: "8080"
tags:
- microservice
- golden-path
- java-springboot
- stateless
- opentelemetry
- load-testing
- k6
links:
- url: https://console.humanitec.dev/orgs/skillful-wild-chicken-2617/projects/domain-demo-apps
title: Humanitec Console
icon: dashboard
- url: https://grafana.kyndemo.live/d/otel-app-observability-v2/opentelemetry-application-observability?orgId=1&var-app=test-for-310--004
title: Grafana Dashboard
icon: dashboard
- url: https://gitea.kyndemo.live/demo-platform/test-repo-310--004
title: Source Repository
icon: github
spec:
type: service
owner: group:default/platform-lead
system: system:default/demo-apps
lifecycle: experimental
providesApis:
- test-for-310--004-api
---
apiVersion: backstage.io/v1alpha1
kind: API
metadata:
name: test-for-310--004-api
description: REST API for test-for-310--004
annotations:
backstage.io/techdocs-ref: dir:.
spec:
type: openapi
lifecycle: experimental
owner: group:default/platform-lead
system: system:default/demo-apps
definition: |
openapi: "3.0.0"
info:
title: test-for-310--004
version: "0.1.0"
description: "Test component for work on issue 310"
servers:
- url: https://test-for-310--004.kyndemo.live
paths:
/api/items:
get:
summary: List all items
responses:
"200":
description: OK
post:
summary: Create item
responses:
"201":
description: Created
/api/items/{id}:
get:
summary: Get by ID
parameters:
- name: id
in: path
required: true
schema:
type: integer
responses:
"200":
description: OK
"404":
description: Not found
put:
summary: Update item
parameters:
- name: id
in: path
required: true
schema:
type: integer
responses:
"200":
description: OK
delete:
summary: Update item
parameters:
- name: id
in: path
required: true
schema:
type: integer
responses:
"200":
description: Deleted
/actuator/health:
get:
summary: Health check
responses:
"200":
description: "{ status: UP }"