@intentius/chant-lexicon-gcp 0.1.5 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/integrity.json +2 -2
- package/dist/manifest.json +1 -1
- package/package.json +1 -1
- package/src/codegen/docs.ts +5 -1
- package/src/index.ts +3 -1
package/dist/integrity.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"algorithm": "sha256",
|
|
3
3
|
"artifacts": {
|
|
4
|
-
"manifest.json": "
|
|
4
|
+
"manifest.json": "8939a54211882426c712c23fd6cdf36237dd92741ce3b3d18227f84225e2c50c",
|
|
5
5
|
"meta.json": "2bc3713e9e01e90832d18dedaf4bf544dd4d8fe32f1363f7e95dc711d3d76e9d",
|
|
6
6
|
"types/index.d.ts": "0554f7e883c6216ba735cbe79a8534ccad762bea28cc4d4c4884f8760a2f1dd3",
|
|
7
7
|
"rules/hardcoded-project.ts": "228631d3159e1ffcce2359c66073d4ae59bb0285f378e46e446f416aec50481c",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"skills/chant-gcp-patterns.md": "a7ef31c1eb2f7244d3f73952c300472ef94c1eb09bd7a1003281b89299b6b704",
|
|
38
38
|
"skills/chant-gcp-gke.md": "be277019da9a722c851e47cd2dfb9c9536668948c3535fb20db7697e934c4e2b"
|
|
39
39
|
},
|
|
40
|
-
"composite": "
|
|
40
|
+
"composite": "a66d209a7b1a390307e1603ac89a5552e0bd6b095fe7c49ee968a4cb7640d8d6"
|
|
41
41
|
}
|
package/dist/manifest.json
CHANGED
package/package.json
CHANGED
package/src/codegen/docs.ts
CHANGED
|
@@ -200,7 +200,9 @@ export const reader = new IAMPolicyMember({
|
|
|
200
200
|
slug: "config-connector-concepts",
|
|
201
201
|
title: "Config Connector Concepts",
|
|
202
202
|
description: "Resource structure, resourceRef, project binding, reconciliation lifecycle",
|
|
203
|
-
content: `
|
|
203
|
+
content: `import Diagram from '../../components/Diagram.astro';
|
|
204
|
+
|
|
205
|
+
Every exported resource declaration becomes a Config Connector manifest document in the generated YAML.
|
|
204
206
|
|
|
205
207
|
## Resource structure
|
|
206
208
|
|
|
@@ -257,6 +259,8 @@ This injects the project annotation into every resource. Without it, Config Conn
|
|
|
257
259
|
|
|
258
260
|
Config Connector resources go through a reconciliation lifecycle:
|
|
259
261
|
|
|
262
|
+
<Diagram name="config-connector-lifecycle" alt="Config Connector state machine: YAML applied to kubectl, then Pending → Reconciling → UpToDate, UpdateFailed, or DependencyNotReady with retry paths" caption="Config Connector reconciliation lifecycle" />
|
|
263
|
+
|
|
260
264
|
| Status | Meaning |
|
|
261
265
|
|--------|---------|
|
|
262
266
|
| UpToDate | Resource matches desired state |
|
package/src/index.ts
CHANGED
|
@@ -22,7 +22,7 @@ export * from "./generated/index";
|
|
|
22
22
|
export {
|
|
23
23
|
GkeCluster, CloudRunServiceComposite, CloudSqlInstance, GcsBucket, VpcNetwork,
|
|
24
24
|
PubSubPipeline, CloudFunctionWithTrigger, PrivateService, ManagedCertificate, SecureProject,
|
|
25
|
-
MemorystoreRedis,
|
|
25
|
+
MemorystoreRedis, MultiRegionVpc, GkeCrdbRegion,
|
|
26
26
|
} from "./composites/index";
|
|
27
27
|
export type {
|
|
28
28
|
GkeClusterProps,
|
|
@@ -36,6 +36,8 @@ export type {
|
|
|
36
36
|
ManagedCertificateProps,
|
|
37
37
|
SecureProjectProps,
|
|
38
38
|
MemorystoreRedisProps,
|
|
39
|
+
MultiRegionVpcConfig, MultiRegionVpcRegion,
|
|
40
|
+
GkeCrdbRegionConfig, GkeCrdbRegionNodeConfig,
|
|
39
41
|
} from "./composites/index";
|
|
40
42
|
|
|
41
43
|
// IAM role constants
|