[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-google-cloud-gke-networking-edge":3,"mdc--5ptp6h-key":34,"related-repo-google-cloud-gke-networking-edge":1793,"related-org-google-cloud-gke-networking-edge":1893},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":24,"repoUrl":25,"updatedAt":26,"license":27,"forks":28,"topics":29,"repo":30,"sourceUrl":32,"mdContent":33},"gke-networking-edge","configure GKE edge networking and security","Workflows for configuring edge networking, ingress, and security on GKE.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"google-cloud","Google Cloud","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fgoogle-cloud.png","GoogleCloudPlatform",[13,17,20,23],{"name":14,"slug":15,"type":16},"Security","security","tag",{"name":18,"slug":19,"type":16},"Networking","networking",{"name":21,"slug":22,"type":16},"Kubernetes","kubernetes",{"name":9,"slug":8,"type":16},161,"https:\u002F\u002Fgithub.com\u002FGoogleCloudPlatform\u002Fgke-mcp","2026-07-12T07:39:58.32333",null,78,[],{"repoUrl":25,"stars":24,"forks":28,"topics":31,"description":27},[],"https:\u002F\u002Fgithub.com\u002FGoogleCloudPlatform\u002Fgke-mcp\u002Ftree\u002FHEAD\u002Fskills\u002Fgke-networking-edge","---\nname: gke-networking-edge\ndescription: Workflows for configuring edge networking, ingress, and security on GKE.\n---\n\n# GKE Networking Edge Skill\n\nThis skill provides workflows for exposing applications running on GKE securely to the internet or internal networks.\n\n## Workflows\n\n### 1. Configure Gateway API (Recommended)\n\nThe Gateway API is the modern way to manage routing in Kubernetes.\n\n**Prerequisites**: Gateway API must be enabled on the cluster (enabled by default in GKE 1.24+).\n\n**Example Gateway Manifest:**\n\n```yaml\napiVersion: gateway.networking.k8s.io\u002Fv1\nkind: Gateway\nmetadata:\n  name: my-gateway\n  namespace: my-namespace\nspec:\n  gatewayClassName: gke-l7-global-external-managed # GKE managed external L7 load balancer\n  listeners:\n    - name: http\n      protocol: HTTP\n      port: 80\n```\n\n**Example HTTPRoute Manifest:**\n\n```yaml\napiVersion: gateway.networking.k8s.io\u002Fv1\nkind: HTTPRoute\nmetadata:\n  name: my-route\n  namespace: my-namespace\nspec:\n  parentRefs:\n    - name: my-gateway\n  rules:\n    - matches:\n        - path:\n            type: PathPrefix\n            value: \u002F\n      backendRefs:\n        - name: my-service\n          port: 80\n```\n\n### 2. Configure Standard GKE Ingress\n\nUse standard Ingress for simpler use cases or legacy setups.\n\n**Example Ingress Manifest:**\n\n```yaml\napiVersion: networking.k8s.io\u002Fv1\nkind: Ingress\nmetadata:\n  name: my-ingress\n  namespace: my-namespace\n  annotations:\n    kubernetes.io\u002Fingress.class: \"gce\"\nspec:\n  rules:\n    - http:\n        paths:\n          - path: \u002F\n            pathType: Prefix\n            backend:\n              service:\n                name: my-service\n                port:\n                  number: 80\n```\n\n### 3. Secure with Cloud Armor\n\nCloud Armor provides WAF and DDoS protection.\n\n**Enable Cloud Armor via BackendConfig:**\n\n1. Create a Security Policy in Cloud Armor (usually via gcloud or Terraform).\n2. Reference it in a `BackendConfig` in GKE.\n\n**Example BackendConfig:**\n\n```yaml\napiVersion: cloud.google.com\u002Fv1\nkind: BackendConfig\nmetadata:\n  name: my-backend-config\n  namespace: my-namespace\nspec:\n  securityPolicy:\n    name: my-cloud-armor-policy\n```\n\n3. Associate `BackendConfig` with your `Service` via annotations.\n\n### 4. Configure Google-Managed SSL Certificates\n\nAutomatically provision and renew SSL certificates.\n\n**Example ManagedCertificate (Legacy Ingress):**\n\n```yaml\napiVersion: networking.gke.io\u002Fv1\nkind: ManagedCertificate\nmetadata:\n  name: my-certificate\nspec:\n  domains:\n    - example.com\n```\n\nReference it in Ingress annotations: `networking.gke.io\u002Fmanaged-certificates: my-certificate`.\n\n**Gateway API Approach:**\nUse the `gateway.networking.k8s.io` API with certificate management integration.\n\n### 5. Enable Container-Native Load Balancing (Recommended)\n\nContainer-native load balancing allows load balancers to target Kubernetes Pods directly, rather than targeting nodes. This improves latency and distribution.\n\n**Prerequisites**: Cluster must be VPC-native.\n\n**How it works**:\n\n- For GKE Ingress and Gateway API, container-native load balancing is enabled by default via Network Endpoint Groups (NEGs).\n- To verify or explicitly enable it for a Service, use the `cloud.google.com\u002Fneg` annotation.\n\n**Example Service Manifest:**\n\n```yaml\napiVersion: v1\nkind: Service\nmetadata:\n  name: my-service\n  annotations:\n    cloud.google.com\u002Fneg: '{\"ingress\": true}' # Enabled for Ingress\nspec:\n  ports:\n    - protocol: TCP\n      port: 80\n      targetPort: 8080\n  selector:\n    app: my-app\n  type: ClusterIP\n```\n\n### 6. Configure Private Service Connect (PSC)\n\nPrivate Service Connect allows you to expose services in one VPC to consumers in another VPC securely, without VPC peering.\n\n**Steps:**\n\n1. Create an internal load balancer for your service.\n2. Create a `ServiceAttachment` referencing the load balancer.\n\n**Example ServiceAttachment Manifest:**\n\n```yaml\napiVersion: networking.gke.io\u002Fv1\nkind: ServiceAttachment\nmetadata:\n  name: my-psc-attachment\n  namespace: my-namespace\nspec:\n  connectionPreference: ACCEPT_AUTOMATIC\n  natSubnets:\n    - my-psc-nat-subnet # Subnet dedicated for PSC NAT\n  targetService:\n    name: my-service\n    namespace: my-namespace\n```\n\nShare the `ServiceAttachment` URI with consumers to create a PSC endpoint in their VPC.\n\n## Best Practices\n\n1. **Prefer Gateway API**: It offers more flexibility and role separation than Ingress.\n2. **Enable Cloud Armor**: Always protect public-facing endpoints with Cloud Armor.\n3. **Use Managed Certificates**: Avoid managing certificate renewals manually.\n4. **Use Container-Native Load Balancing**: Always use NEGs for HTTP(S) load balancing to reduce latency and improve traffic distribution.\n",{"data":35,"body":36},{"name":4,"description":6},{"type":37,"children":38},"root",[39,48,54,61,68,73,84,92,306,314,568,574,579,587,864,870,875,883,906,914,1035,1058,1064,1069,1077,1178,1191,1209,1215,1220,1229,1238,1260,1268,1498,1504,1509,1517,1538,1546,1726,1738,1744,1787],{"type":40,"tag":41,"props":42,"children":44},"element","h1",{"id":43},"gke-networking-edge-skill",[45],{"type":46,"value":47},"text","GKE Networking Edge Skill",{"type":40,"tag":49,"props":50,"children":51},"p",{},[52],{"type":46,"value":53},"This skill provides workflows for exposing applications running on GKE securely to the internet or internal networks.",{"type":40,"tag":55,"props":56,"children":58},"h2",{"id":57},"workflows",[59],{"type":46,"value":60},"Workflows",{"type":40,"tag":62,"props":63,"children":65},"h3",{"id":64},"_1-configure-gateway-api-recommended",[66],{"type":46,"value":67},"1. Configure Gateway API (Recommended)",{"type":40,"tag":49,"props":69,"children":70},{},[71],{"type":46,"value":72},"The Gateway API is the modern way to manage routing in Kubernetes.",{"type":40,"tag":49,"props":74,"children":75},{},[76,82],{"type":40,"tag":77,"props":78,"children":79},"strong",{},[80],{"type":46,"value":81},"Prerequisites",{"type":46,"value":83},": Gateway API must be enabled on the cluster (enabled by default in GKE 1.24+).",{"type":40,"tag":49,"props":85,"children":86},{},[87],{"type":40,"tag":77,"props":88,"children":89},{},[90],{"type":46,"value":91},"Example Gateway Manifest:",{"type":40,"tag":93,"props":94,"children":99},"pre",{"className":95,"code":96,"language":97,"meta":98,"style":98},"language-yaml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","apiVersion: gateway.networking.k8s.io\u002Fv1\nkind: Gateway\nmetadata:\n  name: my-gateway\n  namespace: my-namespace\nspec:\n  gatewayClassName: gke-l7-global-external-managed # GKE managed external L7 load balancer\n  listeners:\n    - name: http\n      protocol: HTTP\n      port: 80\n","yaml","",[100],{"type":40,"tag":101,"props":102,"children":103},"code",{"__ignoreMap":98},[104,128,146,160,178,196,209,233,246,269,287],{"type":40,"tag":105,"props":106,"children":109},"span",{"class":107,"line":108},"line",1,[110,116,122],{"type":40,"tag":105,"props":111,"children":113},{"style":112},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[114],{"type":46,"value":115},"apiVersion",{"type":40,"tag":105,"props":117,"children":119},{"style":118},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[120],{"type":46,"value":121},":",{"type":40,"tag":105,"props":123,"children":125},{"style":124},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[126],{"type":46,"value":127}," gateway.networking.k8s.io\u002Fv1\n",{"type":40,"tag":105,"props":129,"children":131},{"class":107,"line":130},2,[132,137,141],{"type":40,"tag":105,"props":133,"children":134},{"style":112},[135],{"type":46,"value":136},"kind",{"type":40,"tag":105,"props":138,"children":139},{"style":118},[140],{"type":46,"value":121},{"type":40,"tag":105,"props":142,"children":143},{"style":124},[144],{"type":46,"value":145}," Gateway\n",{"type":40,"tag":105,"props":147,"children":149},{"class":107,"line":148},3,[150,155],{"type":40,"tag":105,"props":151,"children":152},{"style":112},[153],{"type":46,"value":154},"metadata",{"type":40,"tag":105,"props":156,"children":157},{"style":118},[158],{"type":46,"value":159},":\n",{"type":40,"tag":105,"props":161,"children":163},{"class":107,"line":162},4,[164,169,173],{"type":40,"tag":105,"props":165,"children":166},{"style":112},[167],{"type":46,"value":168},"  name",{"type":40,"tag":105,"props":170,"children":171},{"style":118},[172],{"type":46,"value":121},{"type":40,"tag":105,"props":174,"children":175},{"style":124},[176],{"type":46,"value":177}," my-gateway\n",{"type":40,"tag":105,"props":179,"children":181},{"class":107,"line":180},5,[182,187,191],{"type":40,"tag":105,"props":183,"children":184},{"style":112},[185],{"type":46,"value":186},"  namespace",{"type":40,"tag":105,"props":188,"children":189},{"style":118},[190],{"type":46,"value":121},{"type":40,"tag":105,"props":192,"children":193},{"style":124},[194],{"type":46,"value":195}," my-namespace\n",{"type":40,"tag":105,"props":197,"children":199},{"class":107,"line":198},6,[200,205],{"type":40,"tag":105,"props":201,"children":202},{"style":112},[203],{"type":46,"value":204},"spec",{"type":40,"tag":105,"props":206,"children":207},{"style":118},[208],{"type":46,"value":159},{"type":40,"tag":105,"props":210,"children":212},{"class":107,"line":211},7,[213,218,222,227],{"type":40,"tag":105,"props":214,"children":215},{"style":112},[216],{"type":46,"value":217},"  gatewayClassName",{"type":40,"tag":105,"props":219,"children":220},{"style":118},[221],{"type":46,"value":121},{"type":40,"tag":105,"props":223,"children":224},{"style":124},[225],{"type":46,"value":226}," gke-l7-global-external-managed",{"type":40,"tag":105,"props":228,"children":230},{"style":229},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[231],{"type":46,"value":232}," # GKE managed external L7 load balancer\n",{"type":40,"tag":105,"props":234,"children":236},{"class":107,"line":235},8,[237,242],{"type":40,"tag":105,"props":238,"children":239},{"style":112},[240],{"type":46,"value":241},"  listeners",{"type":40,"tag":105,"props":243,"children":244},{"style":118},[245],{"type":46,"value":159},{"type":40,"tag":105,"props":247,"children":249},{"class":107,"line":248},9,[250,255,260,264],{"type":40,"tag":105,"props":251,"children":252},{"style":118},[253],{"type":46,"value":254},"    -",{"type":40,"tag":105,"props":256,"children":257},{"style":112},[258],{"type":46,"value":259}," name",{"type":40,"tag":105,"props":261,"children":262},{"style":118},[263],{"type":46,"value":121},{"type":40,"tag":105,"props":265,"children":266},{"style":124},[267],{"type":46,"value":268}," http\n",{"type":40,"tag":105,"props":270,"children":272},{"class":107,"line":271},10,[273,278,282],{"type":40,"tag":105,"props":274,"children":275},{"style":112},[276],{"type":46,"value":277},"      protocol",{"type":40,"tag":105,"props":279,"children":280},{"style":118},[281],{"type":46,"value":121},{"type":40,"tag":105,"props":283,"children":284},{"style":124},[285],{"type":46,"value":286}," HTTP\n",{"type":40,"tag":105,"props":288,"children":290},{"class":107,"line":289},11,[291,296,300],{"type":40,"tag":105,"props":292,"children":293},{"style":112},[294],{"type":46,"value":295},"      port",{"type":40,"tag":105,"props":297,"children":298},{"style":118},[299],{"type":46,"value":121},{"type":40,"tag":105,"props":301,"children":303},{"style":302},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[304],{"type":46,"value":305}," 80\n",{"type":40,"tag":49,"props":307,"children":308},{},[309],{"type":40,"tag":77,"props":310,"children":311},{},[312],{"type":46,"value":313},"Example HTTPRoute Manifest:",{"type":40,"tag":93,"props":315,"children":317},{"className":95,"code":316,"language":97,"meta":98,"style":98},"apiVersion: gateway.networking.k8s.io\u002Fv1\nkind: HTTPRoute\nmetadata:\n  name: my-route\n  namespace: my-namespace\nspec:\n  parentRefs:\n    - name: my-gateway\n  rules:\n    - matches:\n        - path:\n            type: PathPrefix\n            value: \u002F\n      backendRefs:\n        - name: my-service\n          port: 80\n",[318],{"type":40,"tag":101,"props":319,"children":320},{"__ignoreMap":98},[321,336,352,363,379,394,405,417,436,448,464,481,499,517,530,551],{"type":40,"tag":105,"props":322,"children":323},{"class":107,"line":108},[324,328,332],{"type":40,"tag":105,"props":325,"children":326},{"style":112},[327],{"type":46,"value":115},{"type":40,"tag":105,"props":329,"children":330},{"style":118},[331],{"type":46,"value":121},{"type":40,"tag":105,"props":333,"children":334},{"style":124},[335],{"type":46,"value":127},{"type":40,"tag":105,"props":337,"children":338},{"class":107,"line":130},[339,343,347],{"type":40,"tag":105,"props":340,"children":341},{"style":112},[342],{"type":46,"value":136},{"type":40,"tag":105,"props":344,"children":345},{"style":118},[346],{"type":46,"value":121},{"type":40,"tag":105,"props":348,"children":349},{"style":124},[350],{"type":46,"value":351}," HTTPRoute\n",{"type":40,"tag":105,"props":353,"children":354},{"class":107,"line":148},[355,359],{"type":40,"tag":105,"props":356,"children":357},{"style":112},[358],{"type":46,"value":154},{"type":40,"tag":105,"props":360,"children":361},{"style":118},[362],{"type":46,"value":159},{"type":40,"tag":105,"props":364,"children":365},{"class":107,"line":162},[366,370,374],{"type":40,"tag":105,"props":367,"children":368},{"style":112},[369],{"type":46,"value":168},{"type":40,"tag":105,"props":371,"children":372},{"style":118},[373],{"type":46,"value":121},{"type":40,"tag":105,"props":375,"children":376},{"style":124},[377],{"type":46,"value":378}," my-route\n",{"type":40,"tag":105,"props":380,"children":381},{"class":107,"line":180},[382,386,390],{"type":40,"tag":105,"props":383,"children":384},{"style":112},[385],{"type":46,"value":186},{"type":40,"tag":105,"props":387,"children":388},{"style":118},[389],{"type":46,"value":121},{"type":40,"tag":105,"props":391,"children":392},{"style":124},[393],{"type":46,"value":195},{"type":40,"tag":105,"props":395,"children":396},{"class":107,"line":198},[397,401],{"type":40,"tag":105,"props":398,"children":399},{"style":112},[400],{"type":46,"value":204},{"type":40,"tag":105,"props":402,"children":403},{"style":118},[404],{"type":46,"value":159},{"type":40,"tag":105,"props":406,"children":407},{"class":107,"line":211},[408,413],{"type":40,"tag":105,"props":409,"children":410},{"style":112},[411],{"type":46,"value":412},"  parentRefs",{"type":40,"tag":105,"props":414,"children":415},{"style":118},[416],{"type":46,"value":159},{"type":40,"tag":105,"props":418,"children":419},{"class":107,"line":235},[420,424,428,432],{"type":40,"tag":105,"props":421,"children":422},{"style":118},[423],{"type":46,"value":254},{"type":40,"tag":105,"props":425,"children":426},{"style":112},[427],{"type":46,"value":259},{"type":40,"tag":105,"props":429,"children":430},{"style":118},[431],{"type":46,"value":121},{"type":40,"tag":105,"props":433,"children":434},{"style":124},[435],{"type":46,"value":177},{"type":40,"tag":105,"props":437,"children":438},{"class":107,"line":248},[439,444],{"type":40,"tag":105,"props":440,"children":441},{"style":112},[442],{"type":46,"value":443},"  rules",{"type":40,"tag":105,"props":445,"children":446},{"style":118},[447],{"type":46,"value":159},{"type":40,"tag":105,"props":449,"children":450},{"class":107,"line":271},[451,455,460],{"type":40,"tag":105,"props":452,"children":453},{"style":118},[454],{"type":46,"value":254},{"type":40,"tag":105,"props":456,"children":457},{"style":112},[458],{"type":46,"value":459}," matches",{"type":40,"tag":105,"props":461,"children":462},{"style":118},[463],{"type":46,"value":159},{"type":40,"tag":105,"props":465,"children":466},{"class":107,"line":289},[467,472,477],{"type":40,"tag":105,"props":468,"children":469},{"style":118},[470],{"type":46,"value":471},"        -",{"type":40,"tag":105,"props":473,"children":474},{"style":112},[475],{"type":46,"value":476}," path",{"type":40,"tag":105,"props":478,"children":479},{"style":118},[480],{"type":46,"value":159},{"type":40,"tag":105,"props":482,"children":484},{"class":107,"line":483},12,[485,490,494],{"type":40,"tag":105,"props":486,"children":487},{"style":112},[488],{"type":46,"value":489},"            type",{"type":40,"tag":105,"props":491,"children":492},{"style":118},[493],{"type":46,"value":121},{"type":40,"tag":105,"props":495,"children":496},{"style":124},[497],{"type":46,"value":498}," PathPrefix\n",{"type":40,"tag":105,"props":500,"children":502},{"class":107,"line":501},13,[503,508,512],{"type":40,"tag":105,"props":504,"children":505},{"style":112},[506],{"type":46,"value":507},"            value",{"type":40,"tag":105,"props":509,"children":510},{"style":118},[511],{"type":46,"value":121},{"type":40,"tag":105,"props":513,"children":514},{"style":124},[515],{"type":46,"value":516}," \u002F\n",{"type":40,"tag":105,"props":518,"children":520},{"class":107,"line":519},14,[521,526],{"type":40,"tag":105,"props":522,"children":523},{"style":112},[524],{"type":46,"value":525},"      backendRefs",{"type":40,"tag":105,"props":527,"children":528},{"style":118},[529],{"type":46,"value":159},{"type":40,"tag":105,"props":531,"children":533},{"class":107,"line":532},15,[534,538,542,546],{"type":40,"tag":105,"props":535,"children":536},{"style":118},[537],{"type":46,"value":471},{"type":40,"tag":105,"props":539,"children":540},{"style":112},[541],{"type":46,"value":259},{"type":40,"tag":105,"props":543,"children":544},{"style":118},[545],{"type":46,"value":121},{"type":40,"tag":105,"props":547,"children":548},{"style":124},[549],{"type":46,"value":550}," my-service\n",{"type":40,"tag":105,"props":552,"children":554},{"class":107,"line":553},16,[555,560,564],{"type":40,"tag":105,"props":556,"children":557},{"style":112},[558],{"type":46,"value":559},"          port",{"type":40,"tag":105,"props":561,"children":562},{"style":118},[563],{"type":46,"value":121},{"type":40,"tag":105,"props":565,"children":566},{"style":302},[567],{"type":46,"value":305},{"type":40,"tag":62,"props":569,"children":571},{"id":570},"_2-configure-standard-gke-ingress",[572],{"type":46,"value":573},"2. Configure Standard GKE Ingress",{"type":40,"tag":49,"props":575,"children":576},{},[577],{"type":46,"value":578},"Use standard Ingress for simpler use cases or legacy setups.",{"type":40,"tag":49,"props":580,"children":581},{},[582],{"type":40,"tag":77,"props":583,"children":584},{},[585],{"type":46,"value":586},"Example Ingress Manifest:",{"type":40,"tag":93,"props":588,"children":590},{"className":95,"code":589,"language":97,"meta":98,"style":98},"apiVersion: networking.k8s.io\u002Fv1\nkind: Ingress\nmetadata:\n  name: my-ingress\n  namespace: my-namespace\n  annotations:\n    kubernetes.io\u002Fingress.class: \"gce\"\nspec:\n  rules:\n    - http:\n        paths:\n          - path: \u002F\n            pathType: Prefix\n            backend:\n              service:\n                name: my-service\n                port:\n                  number: 80\n",[591],{"type":40,"tag":101,"props":592,"children":593},{"__ignoreMap":98},[594,610,626,637,653,668,680,707,718,729,745,757,777,794,806,818,834,847],{"type":40,"tag":105,"props":595,"children":596},{"class":107,"line":108},[597,601,605],{"type":40,"tag":105,"props":598,"children":599},{"style":112},[600],{"type":46,"value":115},{"type":40,"tag":105,"props":602,"children":603},{"style":118},[604],{"type":46,"value":121},{"type":40,"tag":105,"props":606,"children":607},{"style":124},[608],{"type":46,"value":609}," networking.k8s.io\u002Fv1\n",{"type":40,"tag":105,"props":611,"children":612},{"class":107,"line":130},[613,617,621],{"type":40,"tag":105,"props":614,"children":615},{"style":112},[616],{"type":46,"value":136},{"type":40,"tag":105,"props":618,"children":619},{"style":118},[620],{"type":46,"value":121},{"type":40,"tag":105,"props":622,"children":623},{"style":124},[624],{"type":46,"value":625}," Ingress\n",{"type":40,"tag":105,"props":627,"children":628},{"class":107,"line":148},[629,633],{"type":40,"tag":105,"props":630,"children":631},{"style":112},[632],{"type":46,"value":154},{"type":40,"tag":105,"props":634,"children":635},{"style":118},[636],{"type":46,"value":159},{"type":40,"tag":105,"props":638,"children":639},{"class":107,"line":162},[640,644,648],{"type":40,"tag":105,"props":641,"children":642},{"style":112},[643],{"type":46,"value":168},{"type":40,"tag":105,"props":645,"children":646},{"style":118},[647],{"type":46,"value":121},{"type":40,"tag":105,"props":649,"children":650},{"style":124},[651],{"type":46,"value":652}," my-ingress\n",{"type":40,"tag":105,"props":654,"children":655},{"class":107,"line":180},[656,660,664],{"type":40,"tag":105,"props":657,"children":658},{"style":112},[659],{"type":46,"value":186},{"type":40,"tag":105,"props":661,"children":662},{"style":118},[663],{"type":46,"value":121},{"type":40,"tag":105,"props":665,"children":666},{"style":124},[667],{"type":46,"value":195},{"type":40,"tag":105,"props":669,"children":670},{"class":107,"line":198},[671,676],{"type":40,"tag":105,"props":672,"children":673},{"style":112},[674],{"type":46,"value":675},"  annotations",{"type":40,"tag":105,"props":677,"children":678},{"style":118},[679],{"type":46,"value":159},{"type":40,"tag":105,"props":681,"children":682},{"class":107,"line":211},[683,688,692,697,702],{"type":40,"tag":105,"props":684,"children":685},{"style":112},[686],{"type":46,"value":687},"    kubernetes.io\u002Fingress.class",{"type":40,"tag":105,"props":689,"children":690},{"style":118},[691],{"type":46,"value":121},{"type":40,"tag":105,"props":693,"children":694},{"style":118},[695],{"type":46,"value":696}," \"",{"type":40,"tag":105,"props":698,"children":699},{"style":124},[700],{"type":46,"value":701},"gce",{"type":40,"tag":105,"props":703,"children":704},{"style":118},[705],{"type":46,"value":706},"\"\n",{"type":40,"tag":105,"props":708,"children":709},{"class":107,"line":235},[710,714],{"type":40,"tag":105,"props":711,"children":712},{"style":112},[713],{"type":46,"value":204},{"type":40,"tag":105,"props":715,"children":716},{"style":118},[717],{"type":46,"value":159},{"type":40,"tag":105,"props":719,"children":720},{"class":107,"line":248},[721,725],{"type":40,"tag":105,"props":722,"children":723},{"style":112},[724],{"type":46,"value":443},{"type":40,"tag":105,"props":726,"children":727},{"style":118},[728],{"type":46,"value":159},{"type":40,"tag":105,"props":730,"children":731},{"class":107,"line":271},[732,736,741],{"type":40,"tag":105,"props":733,"children":734},{"style":118},[735],{"type":46,"value":254},{"type":40,"tag":105,"props":737,"children":738},{"style":112},[739],{"type":46,"value":740}," http",{"type":40,"tag":105,"props":742,"children":743},{"style":118},[744],{"type":46,"value":159},{"type":40,"tag":105,"props":746,"children":747},{"class":107,"line":289},[748,753],{"type":40,"tag":105,"props":749,"children":750},{"style":112},[751],{"type":46,"value":752},"        paths",{"type":40,"tag":105,"props":754,"children":755},{"style":118},[756],{"type":46,"value":159},{"type":40,"tag":105,"props":758,"children":759},{"class":107,"line":483},[760,765,769,773],{"type":40,"tag":105,"props":761,"children":762},{"style":118},[763],{"type":46,"value":764},"          -",{"type":40,"tag":105,"props":766,"children":767},{"style":112},[768],{"type":46,"value":476},{"type":40,"tag":105,"props":770,"children":771},{"style":118},[772],{"type":46,"value":121},{"type":40,"tag":105,"props":774,"children":775},{"style":124},[776],{"type":46,"value":516},{"type":40,"tag":105,"props":778,"children":779},{"class":107,"line":501},[780,785,789],{"type":40,"tag":105,"props":781,"children":782},{"style":112},[783],{"type":46,"value":784},"            pathType",{"type":40,"tag":105,"props":786,"children":787},{"style":118},[788],{"type":46,"value":121},{"type":40,"tag":105,"props":790,"children":791},{"style":124},[792],{"type":46,"value":793}," Prefix\n",{"type":40,"tag":105,"props":795,"children":796},{"class":107,"line":519},[797,802],{"type":40,"tag":105,"props":798,"children":799},{"style":112},[800],{"type":46,"value":801},"            backend",{"type":40,"tag":105,"props":803,"children":804},{"style":118},[805],{"type":46,"value":159},{"type":40,"tag":105,"props":807,"children":808},{"class":107,"line":532},[809,814],{"type":40,"tag":105,"props":810,"children":811},{"style":112},[812],{"type":46,"value":813},"              service",{"type":40,"tag":105,"props":815,"children":816},{"style":118},[817],{"type":46,"value":159},{"type":40,"tag":105,"props":819,"children":820},{"class":107,"line":553},[821,826,830],{"type":40,"tag":105,"props":822,"children":823},{"style":112},[824],{"type":46,"value":825},"                name",{"type":40,"tag":105,"props":827,"children":828},{"style":118},[829],{"type":46,"value":121},{"type":40,"tag":105,"props":831,"children":832},{"style":124},[833],{"type":46,"value":550},{"type":40,"tag":105,"props":835,"children":837},{"class":107,"line":836},17,[838,843],{"type":40,"tag":105,"props":839,"children":840},{"style":112},[841],{"type":46,"value":842},"                port",{"type":40,"tag":105,"props":844,"children":845},{"style":118},[846],{"type":46,"value":159},{"type":40,"tag":105,"props":848,"children":850},{"class":107,"line":849},18,[851,856,860],{"type":40,"tag":105,"props":852,"children":853},{"style":112},[854],{"type":46,"value":855},"                  number",{"type":40,"tag":105,"props":857,"children":858},{"style":118},[859],{"type":46,"value":121},{"type":40,"tag":105,"props":861,"children":862},{"style":302},[863],{"type":46,"value":305},{"type":40,"tag":62,"props":865,"children":867},{"id":866},"_3-secure-with-cloud-armor",[868],{"type":46,"value":869},"3. Secure with Cloud Armor",{"type":40,"tag":49,"props":871,"children":872},{},[873],{"type":46,"value":874},"Cloud Armor provides WAF and DDoS protection.",{"type":40,"tag":49,"props":876,"children":877},{},[878],{"type":40,"tag":77,"props":879,"children":880},{},[881],{"type":46,"value":882},"Enable Cloud Armor via BackendConfig:",{"type":40,"tag":884,"props":885,"children":886},"ol",{},[887,893],{"type":40,"tag":888,"props":889,"children":890},"li",{},[891],{"type":46,"value":892},"Create a Security Policy in Cloud Armor (usually via gcloud or Terraform).",{"type":40,"tag":888,"props":894,"children":895},{},[896,898,904],{"type":46,"value":897},"Reference it in a ",{"type":40,"tag":101,"props":899,"children":901},{"className":900},[],[902],{"type":46,"value":903},"BackendConfig",{"type":46,"value":905}," in GKE.",{"type":40,"tag":49,"props":907,"children":908},{},[909],{"type":40,"tag":77,"props":910,"children":911},{},[912],{"type":46,"value":913},"Example BackendConfig:",{"type":40,"tag":93,"props":915,"children":917},{"className":95,"code":916,"language":97,"meta":98,"style":98},"apiVersion: cloud.google.com\u002Fv1\nkind: BackendConfig\nmetadata:\n  name: my-backend-config\n  namespace: my-namespace\nspec:\n  securityPolicy:\n    name: my-cloud-armor-policy\n",[918],{"type":40,"tag":101,"props":919,"children":920},{"__ignoreMap":98},[921,937,953,964,980,995,1006,1018],{"type":40,"tag":105,"props":922,"children":923},{"class":107,"line":108},[924,928,932],{"type":40,"tag":105,"props":925,"children":926},{"style":112},[927],{"type":46,"value":115},{"type":40,"tag":105,"props":929,"children":930},{"style":118},[931],{"type":46,"value":121},{"type":40,"tag":105,"props":933,"children":934},{"style":124},[935],{"type":46,"value":936}," cloud.google.com\u002Fv1\n",{"type":40,"tag":105,"props":938,"children":939},{"class":107,"line":130},[940,944,948],{"type":40,"tag":105,"props":941,"children":942},{"style":112},[943],{"type":46,"value":136},{"type":40,"tag":105,"props":945,"children":946},{"style":118},[947],{"type":46,"value":121},{"type":40,"tag":105,"props":949,"children":950},{"style":124},[951],{"type":46,"value":952}," BackendConfig\n",{"type":40,"tag":105,"props":954,"children":955},{"class":107,"line":148},[956,960],{"type":40,"tag":105,"props":957,"children":958},{"style":112},[959],{"type":46,"value":154},{"type":40,"tag":105,"props":961,"children":962},{"style":118},[963],{"type":46,"value":159},{"type":40,"tag":105,"props":965,"children":966},{"class":107,"line":162},[967,971,975],{"type":40,"tag":105,"props":968,"children":969},{"style":112},[970],{"type":46,"value":168},{"type":40,"tag":105,"props":972,"children":973},{"style":118},[974],{"type":46,"value":121},{"type":40,"tag":105,"props":976,"children":977},{"style":124},[978],{"type":46,"value":979}," my-backend-config\n",{"type":40,"tag":105,"props":981,"children":982},{"class":107,"line":180},[983,987,991],{"type":40,"tag":105,"props":984,"children":985},{"style":112},[986],{"type":46,"value":186},{"type":40,"tag":105,"props":988,"children":989},{"style":118},[990],{"type":46,"value":121},{"type":40,"tag":105,"props":992,"children":993},{"style":124},[994],{"type":46,"value":195},{"type":40,"tag":105,"props":996,"children":997},{"class":107,"line":198},[998,1002],{"type":40,"tag":105,"props":999,"children":1000},{"style":112},[1001],{"type":46,"value":204},{"type":40,"tag":105,"props":1003,"children":1004},{"style":118},[1005],{"type":46,"value":159},{"type":40,"tag":105,"props":1007,"children":1008},{"class":107,"line":211},[1009,1014],{"type":40,"tag":105,"props":1010,"children":1011},{"style":112},[1012],{"type":46,"value":1013},"  securityPolicy",{"type":40,"tag":105,"props":1015,"children":1016},{"style":118},[1017],{"type":46,"value":159},{"type":40,"tag":105,"props":1019,"children":1020},{"class":107,"line":235},[1021,1026,1030],{"type":40,"tag":105,"props":1022,"children":1023},{"style":112},[1024],{"type":46,"value":1025},"    name",{"type":40,"tag":105,"props":1027,"children":1028},{"style":118},[1029],{"type":46,"value":121},{"type":40,"tag":105,"props":1031,"children":1032},{"style":124},[1033],{"type":46,"value":1034}," my-cloud-armor-policy\n",{"type":40,"tag":884,"props":1036,"children":1037},{"start":148},[1038],{"type":40,"tag":888,"props":1039,"children":1040},{},[1041,1043,1048,1050,1056],{"type":46,"value":1042},"Associate ",{"type":40,"tag":101,"props":1044,"children":1046},{"className":1045},[],[1047],{"type":46,"value":903},{"type":46,"value":1049}," with your ",{"type":40,"tag":101,"props":1051,"children":1053},{"className":1052},[],[1054],{"type":46,"value":1055},"Service",{"type":46,"value":1057}," via annotations.",{"type":40,"tag":62,"props":1059,"children":1061},{"id":1060},"_4-configure-google-managed-ssl-certificates",[1062],{"type":46,"value":1063},"4. Configure Google-Managed SSL Certificates",{"type":40,"tag":49,"props":1065,"children":1066},{},[1067],{"type":46,"value":1068},"Automatically provision and renew SSL certificates.",{"type":40,"tag":49,"props":1070,"children":1071},{},[1072],{"type":40,"tag":77,"props":1073,"children":1074},{},[1075],{"type":46,"value":1076},"Example ManagedCertificate (Legacy Ingress):",{"type":40,"tag":93,"props":1078,"children":1080},{"className":95,"code":1079,"language":97,"meta":98,"style":98},"apiVersion: networking.gke.io\u002Fv1\nkind: ManagedCertificate\nmetadata:\n  name: my-certificate\nspec:\n  domains:\n    - example.com\n",[1081],{"type":40,"tag":101,"props":1082,"children":1083},{"__ignoreMap":98},[1084,1100,1116,1127,1143,1154,1166],{"type":40,"tag":105,"props":1085,"children":1086},{"class":107,"line":108},[1087,1091,1095],{"type":40,"tag":105,"props":1088,"children":1089},{"style":112},[1090],{"type":46,"value":115},{"type":40,"tag":105,"props":1092,"children":1093},{"style":118},[1094],{"type":46,"value":121},{"type":40,"tag":105,"props":1096,"children":1097},{"style":124},[1098],{"type":46,"value":1099}," networking.gke.io\u002Fv1\n",{"type":40,"tag":105,"props":1101,"children":1102},{"class":107,"line":130},[1103,1107,1111],{"type":40,"tag":105,"props":1104,"children":1105},{"style":112},[1106],{"type":46,"value":136},{"type":40,"tag":105,"props":1108,"children":1109},{"style":118},[1110],{"type":46,"value":121},{"type":40,"tag":105,"props":1112,"children":1113},{"style":124},[1114],{"type":46,"value":1115}," ManagedCertificate\n",{"type":40,"tag":105,"props":1117,"children":1118},{"class":107,"line":148},[1119,1123],{"type":40,"tag":105,"props":1120,"children":1121},{"style":112},[1122],{"type":46,"value":154},{"type":40,"tag":105,"props":1124,"children":1125},{"style":118},[1126],{"type":46,"value":159},{"type":40,"tag":105,"props":1128,"children":1129},{"class":107,"line":162},[1130,1134,1138],{"type":40,"tag":105,"props":1131,"children":1132},{"style":112},[1133],{"type":46,"value":168},{"type":40,"tag":105,"props":1135,"children":1136},{"style":118},[1137],{"type":46,"value":121},{"type":40,"tag":105,"props":1139,"children":1140},{"style":124},[1141],{"type":46,"value":1142}," my-certificate\n",{"type":40,"tag":105,"props":1144,"children":1145},{"class":107,"line":180},[1146,1150],{"type":40,"tag":105,"props":1147,"children":1148},{"style":112},[1149],{"type":46,"value":204},{"type":40,"tag":105,"props":1151,"children":1152},{"style":118},[1153],{"type":46,"value":159},{"type":40,"tag":105,"props":1155,"children":1156},{"class":107,"line":198},[1157,1162],{"type":40,"tag":105,"props":1158,"children":1159},{"style":112},[1160],{"type":46,"value":1161},"  domains",{"type":40,"tag":105,"props":1163,"children":1164},{"style":118},[1165],{"type":46,"value":159},{"type":40,"tag":105,"props":1167,"children":1168},{"class":107,"line":211},[1169,1173],{"type":40,"tag":105,"props":1170,"children":1171},{"style":118},[1172],{"type":46,"value":254},{"type":40,"tag":105,"props":1174,"children":1175},{"style":124},[1176],{"type":46,"value":1177}," example.com\n",{"type":40,"tag":49,"props":1179,"children":1180},{},[1181,1183,1189],{"type":46,"value":1182},"Reference it in Ingress annotations: ",{"type":40,"tag":101,"props":1184,"children":1186},{"className":1185},[],[1187],{"type":46,"value":1188},"networking.gke.io\u002Fmanaged-certificates: my-certificate",{"type":46,"value":1190},".",{"type":40,"tag":49,"props":1192,"children":1193},{},[1194,1199,1201,1207],{"type":40,"tag":77,"props":1195,"children":1196},{},[1197],{"type":46,"value":1198},"Gateway API Approach:",{"type":46,"value":1200},"\nUse the ",{"type":40,"tag":101,"props":1202,"children":1204},{"className":1203},[],[1205],{"type":46,"value":1206},"gateway.networking.k8s.io",{"type":46,"value":1208}," API with certificate management integration.",{"type":40,"tag":62,"props":1210,"children":1212},{"id":1211},"_5-enable-container-native-load-balancing-recommended",[1213],{"type":46,"value":1214},"5. Enable Container-Native Load Balancing (Recommended)",{"type":40,"tag":49,"props":1216,"children":1217},{},[1218],{"type":46,"value":1219},"Container-native load balancing allows load balancers to target Kubernetes Pods directly, rather than targeting nodes. This improves latency and distribution.",{"type":40,"tag":49,"props":1221,"children":1222},{},[1223,1227],{"type":40,"tag":77,"props":1224,"children":1225},{},[1226],{"type":46,"value":81},{"type":46,"value":1228},": Cluster must be VPC-native.",{"type":40,"tag":49,"props":1230,"children":1231},{},[1232,1237],{"type":40,"tag":77,"props":1233,"children":1234},{},[1235],{"type":46,"value":1236},"How it works",{"type":46,"value":121},{"type":40,"tag":1239,"props":1240,"children":1241},"ul",{},[1242,1247],{"type":40,"tag":888,"props":1243,"children":1244},{},[1245],{"type":46,"value":1246},"For GKE Ingress and Gateway API, container-native load balancing is enabled by default via Network Endpoint Groups (NEGs).",{"type":40,"tag":888,"props":1248,"children":1249},{},[1250,1252,1258],{"type":46,"value":1251},"To verify or explicitly enable it for a Service, use the ",{"type":40,"tag":101,"props":1253,"children":1255},{"className":1254},[],[1256],{"type":46,"value":1257},"cloud.google.com\u002Fneg",{"type":46,"value":1259}," annotation.",{"type":40,"tag":49,"props":1261,"children":1262},{},[1263],{"type":40,"tag":77,"props":1264,"children":1265},{},[1266],{"type":46,"value":1267},"Example Service Manifest:",{"type":40,"tag":93,"props":1269,"children":1271},{"className":95,"code":1270,"language":97,"meta":98,"style":98},"apiVersion: v1\nkind: Service\nmetadata:\n  name: my-service\n  annotations:\n    cloud.google.com\u002Fneg: '{\"ingress\": true}' # Enabled for Ingress\nspec:\n  ports:\n    - protocol: TCP\n      port: 80\n      targetPort: 8080\n  selector:\n    app: my-app\n  type: ClusterIP\n",[1272],{"type":40,"tag":101,"props":1273,"children":1274},{"__ignoreMap":98},[1275,1291,1307,1318,1333,1344,1376,1387,1399,1420,1435,1452,1464,1481],{"type":40,"tag":105,"props":1276,"children":1277},{"class":107,"line":108},[1278,1282,1286],{"type":40,"tag":105,"props":1279,"children":1280},{"style":112},[1281],{"type":46,"value":115},{"type":40,"tag":105,"props":1283,"children":1284},{"style":118},[1285],{"type":46,"value":121},{"type":40,"tag":105,"props":1287,"children":1288},{"style":124},[1289],{"type":46,"value":1290}," v1\n",{"type":40,"tag":105,"props":1292,"children":1293},{"class":107,"line":130},[1294,1298,1302],{"type":40,"tag":105,"props":1295,"children":1296},{"style":112},[1297],{"type":46,"value":136},{"type":40,"tag":105,"props":1299,"children":1300},{"style":118},[1301],{"type":46,"value":121},{"type":40,"tag":105,"props":1303,"children":1304},{"style":124},[1305],{"type":46,"value":1306}," Service\n",{"type":40,"tag":105,"props":1308,"children":1309},{"class":107,"line":148},[1310,1314],{"type":40,"tag":105,"props":1311,"children":1312},{"style":112},[1313],{"type":46,"value":154},{"type":40,"tag":105,"props":1315,"children":1316},{"style":118},[1317],{"type":46,"value":159},{"type":40,"tag":105,"props":1319,"children":1320},{"class":107,"line":162},[1321,1325,1329],{"type":40,"tag":105,"props":1322,"children":1323},{"style":112},[1324],{"type":46,"value":168},{"type":40,"tag":105,"props":1326,"children":1327},{"style":118},[1328],{"type":46,"value":121},{"type":40,"tag":105,"props":1330,"children":1331},{"style":124},[1332],{"type":46,"value":550},{"type":40,"tag":105,"props":1334,"children":1335},{"class":107,"line":180},[1336,1340],{"type":40,"tag":105,"props":1337,"children":1338},{"style":112},[1339],{"type":46,"value":675},{"type":40,"tag":105,"props":1341,"children":1342},{"style":118},[1343],{"type":46,"value":159},{"type":40,"tag":105,"props":1345,"children":1346},{"class":107,"line":198},[1347,1352,1356,1361,1366,1371],{"type":40,"tag":105,"props":1348,"children":1349},{"style":112},[1350],{"type":46,"value":1351},"    cloud.google.com\u002Fneg",{"type":40,"tag":105,"props":1353,"children":1354},{"style":118},[1355],{"type":46,"value":121},{"type":40,"tag":105,"props":1357,"children":1358},{"style":118},[1359],{"type":46,"value":1360}," '",{"type":40,"tag":105,"props":1362,"children":1363},{"style":124},[1364],{"type":46,"value":1365},"{\"ingress\": true}",{"type":40,"tag":105,"props":1367,"children":1368},{"style":118},[1369],{"type":46,"value":1370},"'",{"type":40,"tag":105,"props":1372,"children":1373},{"style":229},[1374],{"type":46,"value":1375}," # Enabled for Ingress\n",{"type":40,"tag":105,"props":1377,"children":1378},{"class":107,"line":211},[1379,1383],{"type":40,"tag":105,"props":1380,"children":1381},{"style":112},[1382],{"type":46,"value":204},{"type":40,"tag":105,"props":1384,"children":1385},{"style":118},[1386],{"type":46,"value":159},{"type":40,"tag":105,"props":1388,"children":1389},{"class":107,"line":235},[1390,1395],{"type":40,"tag":105,"props":1391,"children":1392},{"style":112},[1393],{"type":46,"value":1394},"  ports",{"type":40,"tag":105,"props":1396,"children":1397},{"style":118},[1398],{"type":46,"value":159},{"type":40,"tag":105,"props":1400,"children":1401},{"class":107,"line":248},[1402,1406,1411,1415],{"type":40,"tag":105,"props":1403,"children":1404},{"style":118},[1405],{"type":46,"value":254},{"type":40,"tag":105,"props":1407,"children":1408},{"style":112},[1409],{"type":46,"value":1410}," protocol",{"type":40,"tag":105,"props":1412,"children":1413},{"style":118},[1414],{"type":46,"value":121},{"type":40,"tag":105,"props":1416,"children":1417},{"style":124},[1418],{"type":46,"value":1419}," TCP\n",{"type":40,"tag":105,"props":1421,"children":1422},{"class":107,"line":271},[1423,1427,1431],{"type":40,"tag":105,"props":1424,"children":1425},{"style":112},[1426],{"type":46,"value":295},{"type":40,"tag":105,"props":1428,"children":1429},{"style":118},[1430],{"type":46,"value":121},{"type":40,"tag":105,"props":1432,"children":1433},{"style":302},[1434],{"type":46,"value":305},{"type":40,"tag":105,"props":1436,"children":1437},{"class":107,"line":289},[1438,1443,1447],{"type":40,"tag":105,"props":1439,"children":1440},{"style":112},[1441],{"type":46,"value":1442},"      targetPort",{"type":40,"tag":105,"props":1444,"children":1445},{"style":118},[1446],{"type":46,"value":121},{"type":40,"tag":105,"props":1448,"children":1449},{"style":302},[1450],{"type":46,"value":1451}," 8080\n",{"type":40,"tag":105,"props":1453,"children":1454},{"class":107,"line":483},[1455,1460],{"type":40,"tag":105,"props":1456,"children":1457},{"style":112},[1458],{"type":46,"value":1459},"  selector",{"type":40,"tag":105,"props":1461,"children":1462},{"style":118},[1463],{"type":46,"value":159},{"type":40,"tag":105,"props":1465,"children":1466},{"class":107,"line":501},[1467,1472,1476],{"type":40,"tag":105,"props":1468,"children":1469},{"style":112},[1470],{"type":46,"value":1471},"    app",{"type":40,"tag":105,"props":1473,"children":1474},{"style":118},[1475],{"type":46,"value":121},{"type":40,"tag":105,"props":1477,"children":1478},{"style":124},[1479],{"type":46,"value":1480}," my-app\n",{"type":40,"tag":105,"props":1482,"children":1483},{"class":107,"line":519},[1484,1489,1493],{"type":40,"tag":105,"props":1485,"children":1486},{"style":112},[1487],{"type":46,"value":1488},"  type",{"type":40,"tag":105,"props":1490,"children":1491},{"style":118},[1492],{"type":46,"value":121},{"type":40,"tag":105,"props":1494,"children":1495},{"style":124},[1496],{"type":46,"value":1497}," ClusterIP\n",{"type":40,"tag":62,"props":1499,"children":1501},{"id":1500},"_6-configure-private-service-connect-psc",[1502],{"type":46,"value":1503},"6. Configure Private Service Connect (PSC)",{"type":40,"tag":49,"props":1505,"children":1506},{},[1507],{"type":46,"value":1508},"Private Service Connect allows you to expose services in one VPC to consumers in another VPC securely, without VPC peering.",{"type":40,"tag":49,"props":1510,"children":1511},{},[1512],{"type":40,"tag":77,"props":1513,"children":1514},{},[1515],{"type":46,"value":1516},"Steps:",{"type":40,"tag":884,"props":1518,"children":1519},{},[1520,1525],{"type":40,"tag":888,"props":1521,"children":1522},{},[1523],{"type":46,"value":1524},"Create an internal load balancer for your service.",{"type":40,"tag":888,"props":1526,"children":1527},{},[1528,1530,1536],{"type":46,"value":1529},"Create a ",{"type":40,"tag":101,"props":1531,"children":1533},{"className":1532},[],[1534],{"type":46,"value":1535},"ServiceAttachment",{"type":46,"value":1537}," referencing the load balancer.",{"type":40,"tag":49,"props":1539,"children":1540},{},[1541],{"type":40,"tag":77,"props":1542,"children":1543},{},[1544],{"type":46,"value":1545},"Example ServiceAttachment Manifest:",{"type":40,"tag":93,"props":1547,"children":1549},{"className":95,"code":1548,"language":97,"meta":98,"style":98},"apiVersion: networking.gke.io\u002Fv1\nkind: ServiceAttachment\nmetadata:\n  name: my-psc-attachment\n  namespace: my-namespace\nspec:\n  connectionPreference: ACCEPT_AUTOMATIC\n  natSubnets:\n    - my-psc-nat-subnet # Subnet dedicated for PSC NAT\n  targetService:\n    name: my-service\n    namespace: my-namespace\n",[1550],{"type":40,"tag":101,"props":1551,"children":1552},{"__ignoreMap":98},[1553,1568,1584,1595,1611,1626,1637,1654,1666,1683,1695,1710],{"type":40,"tag":105,"props":1554,"children":1555},{"class":107,"line":108},[1556,1560,1564],{"type":40,"tag":105,"props":1557,"children":1558},{"style":112},[1559],{"type":46,"value":115},{"type":40,"tag":105,"props":1561,"children":1562},{"style":118},[1563],{"type":46,"value":121},{"type":40,"tag":105,"props":1565,"children":1566},{"style":124},[1567],{"type":46,"value":1099},{"type":40,"tag":105,"props":1569,"children":1570},{"class":107,"line":130},[1571,1575,1579],{"type":40,"tag":105,"props":1572,"children":1573},{"style":112},[1574],{"type":46,"value":136},{"type":40,"tag":105,"props":1576,"children":1577},{"style":118},[1578],{"type":46,"value":121},{"type":40,"tag":105,"props":1580,"children":1581},{"style":124},[1582],{"type":46,"value":1583}," ServiceAttachment\n",{"type":40,"tag":105,"props":1585,"children":1586},{"class":107,"line":148},[1587,1591],{"type":40,"tag":105,"props":1588,"children":1589},{"style":112},[1590],{"type":46,"value":154},{"type":40,"tag":105,"props":1592,"children":1593},{"style":118},[1594],{"type":46,"value":159},{"type":40,"tag":105,"props":1596,"children":1597},{"class":107,"line":162},[1598,1602,1606],{"type":40,"tag":105,"props":1599,"children":1600},{"style":112},[1601],{"type":46,"value":168},{"type":40,"tag":105,"props":1603,"children":1604},{"style":118},[1605],{"type":46,"value":121},{"type":40,"tag":105,"props":1607,"children":1608},{"style":124},[1609],{"type":46,"value":1610}," my-psc-attachment\n",{"type":40,"tag":105,"props":1612,"children":1613},{"class":107,"line":180},[1614,1618,1622],{"type":40,"tag":105,"props":1615,"children":1616},{"style":112},[1617],{"type":46,"value":186},{"type":40,"tag":105,"props":1619,"children":1620},{"style":118},[1621],{"type":46,"value":121},{"type":40,"tag":105,"props":1623,"children":1624},{"style":124},[1625],{"type":46,"value":195},{"type":40,"tag":105,"props":1627,"children":1628},{"class":107,"line":198},[1629,1633],{"type":40,"tag":105,"props":1630,"children":1631},{"style":112},[1632],{"type":46,"value":204},{"type":40,"tag":105,"props":1634,"children":1635},{"style":118},[1636],{"type":46,"value":159},{"type":40,"tag":105,"props":1638,"children":1639},{"class":107,"line":211},[1640,1645,1649],{"type":40,"tag":105,"props":1641,"children":1642},{"style":112},[1643],{"type":46,"value":1644},"  connectionPreference",{"type":40,"tag":105,"props":1646,"children":1647},{"style":118},[1648],{"type":46,"value":121},{"type":40,"tag":105,"props":1650,"children":1651},{"style":124},[1652],{"type":46,"value":1653}," ACCEPT_AUTOMATIC\n",{"type":40,"tag":105,"props":1655,"children":1656},{"class":107,"line":235},[1657,1662],{"type":40,"tag":105,"props":1658,"children":1659},{"style":112},[1660],{"type":46,"value":1661},"  natSubnets",{"type":40,"tag":105,"props":1663,"children":1664},{"style":118},[1665],{"type":46,"value":159},{"type":40,"tag":105,"props":1667,"children":1668},{"class":107,"line":248},[1669,1673,1678],{"type":40,"tag":105,"props":1670,"children":1671},{"style":118},[1672],{"type":46,"value":254},{"type":40,"tag":105,"props":1674,"children":1675},{"style":124},[1676],{"type":46,"value":1677}," my-psc-nat-subnet",{"type":40,"tag":105,"props":1679,"children":1680},{"style":229},[1681],{"type":46,"value":1682}," # Subnet dedicated for PSC NAT\n",{"type":40,"tag":105,"props":1684,"children":1685},{"class":107,"line":271},[1686,1691],{"type":40,"tag":105,"props":1687,"children":1688},{"style":112},[1689],{"type":46,"value":1690},"  targetService",{"type":40,"tag":105,"props":1692,"children":1693},{"style":118},[1694],{"type":46,"value":159},{"type":40,"tag":105,"props":1696,"children":1697},{"class":107,"line":289},[1698,1702,1706],{"type":40,"tag":105,"props":1699,"children":1700},{"style":112},[1701],{"type":46,"value":1025},{"type":40,"tag":105,"props":1703,"children":1704},{"style":118},[1705],{"type":46,"value":121},{"type":40,"tag":105,"props":1707,"children":1708},{"style":124},[1709],{"type":46,"value":550},{"type":40,"tag":105,"props":1711,"children":1712},{"class":107,"line":483},[1713,1718,1722],{"type":40,"tag":105,"props":1714,"children":1715},{"style":112},[1716],{"type":46,"value":1717},"    namespace",{"type":40,"tag":105,"props":1719,"children":1720},{"style":118},[1721],{"type":46,"value":121},{"type":40,"tag":105,"props":1723,"children":1724},{"style":124},[1725],{"type":46,"value":195},{"type":40,"tag":49,"props":1727,"children":1728},{},[1729,1731,1736],{"type":46,"value":1730},"Share the ",{"type":40,"tag":101,"props":1732,"children":1734},{"className":1733},[],[1735],{"type":46,"value":1535},{"type":46,"value":1737}," URI with consumers to create a PSC endpoint in their VPC.",{"type":40,"tag":55,"props":1739,"children":1741},{"id":1740},"best-practices",[1742],{"type":46,"value":1743},"Best Practices",{"type":40,"tag":884,"props":1745,"children":1746},{},[1747,1757,1767,1777],{"type":40,"tag":888,"props":1748,"children":1749},{},[1750,1755],{"type":40,"tag":77,"props":1751,"children":1752},{},[1753],{"type":46,"value":1754},"Prefer Gateway API",{"type":46,"value":1756},": It offers more flexibility and role separation than Ingress.",{"type":40,"tag":888,"props":1758,"children":1759},{},[1760,1765],{"type":40,"tag":77,"props":1761,"children":1762},{},[1763],{"type":46,"value":1764},"Enable Cloud Armor",{"type":46,"value":1766},": Always protect public-facing endpoints with Cloud Armor.",{"type":40,"tag":888,"props":1768,"children":1769},{},[1770,1775],{"type":40,"tag":77,"props":1771,"children":1772},{},[1773],{"type":46,"value":1774},"Use Managed Certificates",{"type":46,"value":1776},": Avoid managing certificate renewals manually.",{"type":40,"tag":888,"props":1778,"children":1779},{},[1780,1785],{"type":40,"tag":77,"props":1781,"children":1782},{},[1783],{"type":46,"value":1784},"Use Container-Native Load Balancing",{"type":46,"value":1786},": Always use NEGs for HTTP(S) load balancing to reduce latency and improve traffic distribution.",{"type":40,"tag":1788,"props":1789,"children":1790},"style",{},[1791],{"type":46,"value":1792},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1794,"total":1892},[1795,1807,1822,1835,1852,1863,1879],{"slug":1796,"name":1796,"fn":1797,"description":1798,"org":1799,"tags":1800,"stars":24,"repoUrl":25,"updatedAt":1806},"custom-golden-image-discovery","discover golden base images for GKE nodes","Expert at discovering golden base images for GKE custom nodes using technical specs or context clues.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1801,1804,1805],{"name":1802,"slug":1803,"type":16},"Deployment","deployment",{"name":9,"slug":8,"type":16},{"name":21,"slug":22,"type":16},"2026-07-12T07:39:30.888879",{"slug":1808,"name":1808,"fn":1809,"description":1810,"org":1811,"tags":1812,"stars":24,"repoUrl":25,"updatedAt":1821},"gke-ai-troubleshooting-handle-disruption-gpu-tpu","diagnose GPU and TPU workload disruptions","Diagnose and predict node disruption during Compute Engine host maintenance for GPU and TPU workloads.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1813,1816,1817,1818],{"name":1814,"slug":1815,"type":16},"Debugging","debugging",{"name":9,"slug":8,"type":16},{"name":21,"slug":22,"type":16},{"name":1819,"slug":1820,"type":16},"Performance","performance","2026-07-28T05:34:18.149515",{"slug":1823,"name":1823,"fn":1824,"description":1825,"org":1826,"tags":1827,"stars":24,"repoUrl":25,"updatedAt":1834},"gke-ai-troubleshooting-jobset-interruption","diagnose GKE JobSet interruptions","Systematically diagnose GKE JobSet interruptions, restarts, and preemptions for AI\u002FML training workloads. Identifies preemption events, maintenance interruptions, bad host VMs, unhealthy pods, and coordinator worker failures.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1828,1829,1830,1831],{"name":1814,"slug":1815,"type":16},{"name":9,"slug":8,"type":16},{"name":21,"slug":22,"type":16},{"name":1832,"slug":1833,"type":16},"Observability","observability","2026-07-12T07:40:04.511878",{"slug":1836,"name":1836,"fn":1837,"description":1838,"org":1839,"tags":1840,"stars":24,"repoUrl":25,"updatedAt":1851},"gke-ai-troubleshooting-skill-creation-guide","create GKE troubleshooting skill bundles","Expert instructions for building high-quality GKE troubleshooting skills. Codifies Step 0 context rules, zero-hallucination signatures, and explicit LQL\u002FPromQL query requirements.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1841,1844,1847,1848],{"name":1842,"slug":1843,"type":16},"Documentation","documentation",{"name":1845,"slug":1846,"type":16},"Engineering","engineering",{"name":9,"slug":8,"type":16},{"name":1849,"slug":1850,"type":16},"Technical Writing","technical-writing","2026-07-12T07:39:50.73484",{"slug":1853,"name":1853,"fn":1854,"description":1855,"org":1856,"tags":1857,"stars":24,"repoUrl":25,"updatedAt":1862},"gke-ai-troubleshooting-tpu-connection-failure-vbar-oom","diagnose GKE TPU connection failures","Diagnose and prevent `vbar_control_agent` segfaults and OOMs caused by race conditions during TPU device resets and frequent metrics collection (e.g. every 3s). Use when TPU slice initialization fails or `vbar_control_agent` crashes on TPU v6e nodes.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1858,1859,1860,1861],{"name":1814,"slug":1815,"type":16},{"name":9,"slug":8,"type":16},{"name":21,"slug":22,"type":16},{"name":1819,"slug":1820,"type":16},"2026-07-12T07:39:49.482979",{"slug":1864,"name":1864,"fn":1865,"description":1866,"org":1867,"tags":1868,"stars":24,"repoUrl":25,"updatedAt":1878},"gke-app-onboarding","containerize and deploy apps to GKE","Workflows for containerizing and deploying applications to GKE for the first time.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1869,1872,1873,1874,1875],{"name":1870,"slug":1871,"type":16},"Containers","containers",{"name":1802,"slug":1803,"type":16},{"name":9,"slug":8,"type":16},{"name":21,"slug":22,"type":16},{"name":1876,"slug":1877,"type":16},"Onboarding","onboarding","2026-07-12T07:39:41.935837",{"slug":1880,"name":1880,"fn":1881,"description":1882,"org":1883,"tags":1884,"stars":24,"repoUrl":25,"updatedAt":1891},"gke-backup-dr","configure GKE backup and disaster recovery","Workflows for configuring Backup for GKE and disaster recovery.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1885,1886,1887,1888],{"name":1802,"slug":1803,"type":16},{"name":9,"slug":8,"type":16},{"name":21,"slug":22,"type":16},{"name":1889,"slug":1890,"type":16},"Operations","operations","2026-07-12T07:39:34.806995",25,{"items":1894,"total":2075},[1895,1911,1927,1947,1961,1970,1984,2001,2018,2031,2047,2057],{"slug":1896,"name":1896,"fn":1897,"description":1898,"org":1899,"tags":1900,"stars":1908,"repoUrl":1909,"updatedAt":1910},"kb-search","search and extract local knowledge base documents","Allows listing, searching and extracting information from local knowledge base documents for information about tables\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1901,1902,1905],{"name":1842,"slug":1843,"type":16},{"name":1903,"slug":1904,"type":16},"Knowledge Base","knowledge-base",{"name":1906,"slug":1907,"type":16},"Search","search",6749,"https:\u002F\u002Fgithub.com\u002FGoogleCloudPlatform\u002Fknowledge-catalog","2026-07-12T07:38:52.157375",{"slug":1912,"name":1913,"fn":1914,"description":1915,"org":1916,"tags":1917,"stars":1908,"repoUrl":1909,"updatedAt":1926},"knowledgecatalogdiscoveryagent","knowledge_catalog_discovery_agent","search and rank Knowledge Catalog data entries","Analyzes user queries, extracts relevant predicates, and utilizes Knowledge Catalog Search to find and rank the most relevant data entries. Engages with the user throughout the process.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1918,1921,1922,1925],{"name":1919,"slug":1920,"type":16},"Data Analysis","data-analysis",{"name":9,"slug":8,"type":16},{"name":1923,"slug":1924,"type":16},"Knowledge Management","knowledge-management",{"name":1906,"slug":1907,"type":16},"2026-07-12T07:38:22.196851",{"slug":1928,"name":1928,"fn":1929,"description":1930,"org":1931,"tags":1932,"stars":1944,"repoUrl":1945,"updatedAt":1946},"contributing","contribute to Cloud Foundation Fabric","End-to-end workflow for contributing to Cloud Foundation Fabric: triaging GitHub issues, proactive feature development, validating with tests and Policy Troubleshooter, and submitting sanitized Pull Requests. Use when addressing a Fabric GitHub issue, developing a module or FAST stage change, or preparing a branch for a pull request.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1933,1936,1937,1940,1941],{"name":1934,"slug":1935,"type":16},"Automation","automation",{"name":1845,"slug":1846,"type":16},{"name":1938,"slug":1939,"type":16},"GitHub","github",{"name":9,"slug":8,"type":16},{"name":1942,"slug":1943,"type":16},"Pull Requests","pull-requests",2062,"https:\u002F\u002Fgithub.com\u002FGoogleCloudPlatform\u002Fcloud-foundation-fabric","2026-07-31T06:23:36.935005",{"slug":1948,"name":1948,"fn":1949,"description":1950,"org":1951,"tags":1952,"stars":1944,"repoUrl":1945,"updatedAt":1960},"fabric-builder","generate Terraform code for Google Cloud","Generates idiomatic Cloud Foundation Fabric (CFF) Terraform code using CFF modules. Use when users ask to create GCP resources, use Fabric modules, or generate Terraform code for Google Cloud.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1953,1954,1957],{"name":9,"slug":8,"type":16},{"name":1955,"slug":1956,"type":16},"Infrastructure as Code","infrastructure-as-code",{"name":1958,"slug":1959,"type":16},"Terraform","terraform","2026-07-12T07:38:23.514555",{"slug":1962,"name":1962,"fn":1963,"description":1964,"org":1965,"tags":1966,"stars":1944,"repoUrl":1945,"updatedAt":1969},"fast-0-org-setup-prereqs","prepare prerequisites for FAST 0-org-setup","Guides the user step-by-step through the prerequisites for the FAST 0-org-setup stage, supporting both Standard GCP and Google Cloud Dedicated (GCD) environments. Use when a user asks to prepare or run prerequisites for 0-org-setup or bootstrap the FAST landing zone.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1967,1968],{"name":9,"slug":8,"type":16},{"name":1889,"slug":1890,"type":16},"2026-07-12T07:38:28.127148",{"slug":1971,"name":1971,"fn":1972,"description":1973,"org":1974,"tags":1975,"stars":1981,"repoUrl":1982,"updatedAt":1983},"agent-aware-cli","design agent-aware command-line interfaces","Guide for designing and implementing command-line interfaces (CLIs) that are equally usable by human developers and automated coding agents. Use when the user wants to build a CLI, apply CLI best practices, or use Go with Cobra and Viper.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1976,1979,1980],{"name":1977,"slug":1978,"type":16},"CLI","cli",{"name":1845,"slug":1846,"type":16},{"name":9,"slug":8,"type":16},1150,"https:\u002F\u002Fgithub.com\u002FGoogleCloudPlatform\u002Fvertex-ai-creative-studio","2026-07-12T07:39:08.41406",{"slug":1985,"name":1985,"fn":1986,"description":1987,"org":1988,"tags":1989,"stars":1981,"repoUrl":1982,"updatedAt":2000},"build-mcp-genmedia","build and configure GenAI MCP servers","Builds the mcp-genmedia Go MCP servers (nanobanana, veo, lyria, gemini-multimodal, chirp3-hd, avtool) from source and wires them into settings.json. Use this skill whenever the MCP tools are missing or broken — typically at the start of a new session, after a container restart, or when \u002Ftmp has been wiped. The prebuilt binaries in \u002Fworkspace\u002F.local\u002Fbin\u002F have no exec bit and live on a noexec mount; this skill compiles fresh executables into \u002Ftmp\u002Fbin\u002F where execution is allowed.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1990,1993,1994,1997],{"name":1991,"slug":1992,"type":16},"API Development","api-development",{"name":9,"slug":8,"type":16},{"name":1995,"slug":1996,"type":16},"LLM","llm",{"name":1998,"slug":1999,"type":16},"MCP","mcp","2026-07-12T07:39:10.911302",{"slug":2002,"name":2002,"fn":2003,"description":2004,"org":2005,"tags":2006,"stars":1981,"repoUrl":1982,"updatedAt":2017},"genmedia-audio-engineer","synthesize and mix audio content","Expert in audio synthesis, music generation, and mixing. Use when creating podcasts, background scores, or multi-track audio layering using mcp-chirp3-go, mcp-lyria-go, mcp-gemini-go, mcp-nanobanana-go, and mcp-avtool-go.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2007,2010,2013,2014],{"name":2008,"slug":2009,"type":16},"Audio","audio",{"name":2011,"slug":2012,"type":16},"Creative","creative",{"name":9,"slug":8,"type":16},{"name":2015,"slug":2016,"type":16},"Vertex AI","vertex-ai","2026-07-12T07:39:16.623879",{"slug":2019,"name":2019,"fn":2020,"description":2021,"org":2022,"tags":2023,"stars":1981,"repoUrl":1982,"updatedAt":2030},"genmedia-image-artist","generate and edit AI images","Expert in AI image generation and editing. Use when the user needs high-quality textures, character-consistent visuals, or image-to-image editing using mcp-nanobanana-go.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2024,2025,2026,2029],{"name":2011,"slug":2012,"type":16},{"name":9,"slug":8,"type":16},{"name":2027,"slug":2028,"type":16},"Image Generation","image-generation",{"name":2015,"slug":2016,"type":16},"2026-07-12T07:39:15.372822",{"slug":2032,"name":2032,"fn":2033,"description":2034,"org":2035,"tags":2036,"stars":1981,"repoUrl":1982,"updatedAt":2046},"genmedia-producer","produce multi-step media content","Expert media production assistant. Use when requested to help with storyboarding, podcast creation, audio assembly, or complex multi-step media workflows using the GenMedia MCP servers (Veo, Lyria, Gemini TTS, NanoBanana).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2037,2038,2039,2040,2043],{"name":2008,"slug":2009,"type":16},{"name":2011,"slug":2012,"type":16},{"name":9,"slug":8,"type":16},{"name":2041,"slug":2042,"type":16},"Media","media",{"name":2044,"slug":2045,"type":16},"Video","video","2026-07-12T07:39:09.672849",{"slug":2048,"name":2048,"fn":2049,"description":2050,"org":2051,"tags":2052,"stars":1981,"repoUrl":1982,"updatedAt":2056},"genmedia-video-editor","edit and compose video content","Expert in video composition, editing, and format conversion. Use when the user wants to generate high-quality video, overlay images on video, concatenate clips, create GIFs, or sync audio to video using mcp-avtool-go and mcp-veo-go.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2053,2054,2055],{"name":2011,"slug":2012,"type":16},{"name":9,"slug":8,"type":16},{"name":2044,"slug":2045,"type":16},"2026-07-12T07:39:13.749081",{"slug":2058,"name":2058,"fn":2059,"description":2060,"org":2061,"tags":2062,"stars":1981,"repoUrl":1982,"updatedAt":2074},"genmedia-voice-director","generate expressive text-to-speech with Gemini","Expert in casting, directing, and generating expressive text-to-speech using Gemini TTS. Use this when the user needs virtual voice actor personas, expressive speech generation, or multiple variations of a voiceover (like \"take 3 on the bounce\").",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2063,2064,2065,2068,2071],{"name":2008,"slug":2009,"type":16},{"name":2011,"slug":2012,"type":16},{"name":2066,"slug":2067,"type":16},"Gemini","gemini",{"name":2069,"slug":2070,"type":16},"Speech","speech",{"name":2072,"slug":2073,"type":16},"Text-to-Speech","text-to-speech","2026-07-12T07:39:17.86673",80]