initial commit
Some checks failed
Build and Publish TechDocs / build-and-publish (push) Failing after 1m14s

Change-Id: Ia7bbd259893786bfd9076bffb8c9e973288defde
This commit is contained in:
Scaffolder
2026-05-12 23:57:18 +00:00
commit 59dca5b273
21 changed files with 1518 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-ms-c6
description: test-ms-c6
annotations:
humanitec.com/orgId: skillful-wild-chicken-2617
humanitec.com/projectId: alex
cjot.io/target-domain: "apps"
cjot.io/system-name: "alex"
backstage.io/techdocs-ref: dir:.
backstage.io/kubernetes-namespace: alex-dev
backstage.io/kubernetes-label-selector: "app=test-ms-c6"
gitea.kyndemo.live/repo-slug: "apps/test-ms-c6"
sonarqube.org/project-key: test-ms-c6
prometheus.io/scrape: "true"
prometheus.io/port: "8080"
prometheus.io/path: "/actuator/prometheus"
grafana/grafana-instance: default
grafana/alert-label-selector: "app=test-ms-c6"
grafana/dashboard-selector: "uid == 'otel-app-observability-v2'"
grafana.com/alert-label-selector: "app=test-ms-c6"
grafana.com/dashboard-url: "https://grafana.kyndemo.live/d/otel-app-observability-v2/opentelemetry-application-observability?orgId=1&var-app=test-ms-c6"
chaos-mesh/enabled: "true"
k6/enabled: "true"
k6/test-configmap: "k6-test-test-ms-c6"
k6/test-namespace: "alex-dev"
k6/target-service: "test-ms-c6"
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/alex
title: Humanitec Console
icon: dashboard
- url: https://grafana.kyndemo.live/d/otel-app-observability-v2/opentelemetry-application-observability?orgId=1&var-app=test-ms-c6
title: Grafana Dashboard
icon: dashboard
- url: https://gitea.kyndemo.live/apps/test-ms-c6
title: Source Repository
icon: github
spec:
type: service
owner: group:default/platform-lead
system: system:default/alex
lifecycle: experimental
providesApis:
- test-ms-c6-api
---
apiVersion: backstage.io/v1alpha1
kind: API
metadata:
name: test-ms-c6-api
description: REST API for test-ms-c6
annotations:
backstage.io/techdocs-ref: dir:.
spec:
type: openapi
lifecycle: experimental
owner: group:default/platform-lead
system: system:default/alex
definition: |
openapi: "3.0.0"
info:
title: test-ms-c6
version: "0.1.0"
description: "test-ms-c6"
servers:
- url: https://test-ms-c6.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 }"