Qmonus Value Stream独自のCUE言語を用いたInfrastructure as Code (IaC) 実装 Cloud Native Adapterは 「インフラストラクチャ構成」 と 「ワークフロー」 をまとめて統一的なインターフェースで記載が可能 Cloud Native Adapter resources: { kubernetes: { deployment: ... service: ... } gcp: { monitoring: ... } } pipelines: { deploy: { tasks: { applyManifest: ... testApi: ... } } } ワークフロー インフラストラクチャ構成 provider: kubernetes apiVersion: apps/v1 kind: Deployment spec: minReadySeconds: 60 replicas: 1 ... apiVersion: tekton.dev/v1beta1 kind: Pipeline metadata: name: deploy spec: tasks: ... compile 14