This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Cloud Portal Architecture V3: Hybrid Domain-Driven Architecture | |
| ## Summary | |
| This proposal introduces a comprehensive architectural refactoring of the Cloud Portal application, transitioning from the current Express-based BFF architecture to a modern Hono + React Query hybrid architecture. The new architecture separates concerns into a domain-driven data layer and a scalable UI layer, while replacing the current server infrastructure with a lightweight, type-safe Hono server. | |
| **Status:** Proposal | |
| **Stage:** Beta | |
| **Version:** 3.0.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "kind": "APIResourceList", | |
| "apiVersion": "v1", | |
| "groupVersion": "iam.miloapis.com/v1alpha1", | |
| "resources": [ | |
| { | |
| "name": "machineaccountkeys", | |
| "singularName": "machineaccountkey", | |
| "namespaced": true, | |
| "kind": "MachineAccountKey", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export type ComMiloapisIamV1Alpha1PolicyBinding = { | |
| /** | |
| * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources | |
| */ | |
| apiVersion?: string; | |
| /** | |
| * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds | |
| */ | |
| kind?: string; | |
| /** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Empty |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Given | |
| Given I am on [the] homepage | |
| Given I am on "url" | |
| # When | |
| When I go to [the] homepage | |
| When I go to "url" | |
| When I reload the page |