# Example only. Copy into a private overlay and replace every placeholder. # This file is intentionally excluded from all committed Kustomizations. # Assertions signed by this keyset must use all three automation-specific values: # aud=qinglong3-automation-management, typ=ql3-automation-management+jwt, and # ql3_purpose=automation-management. Plugin Package and Worker assertions are # rejected even when they use the same issuer and signing key. apiVersion: v1 kind: Secret metadata: name: ql3-automation-management-identity namespace: qinglong3-system type: Opaque stringData: keyset.json: | { "schemaVersion": 1, "generation": 1, "issuer": "https://identity.example.test/", "audience": "qinglong3-automation-management", "keys": [ { "alg": "EdDSA", "crv": "Ed25519", "kid": "REPLACE_WITH_KEY_ID", "kty": "OKP", "use": "sig", "x": "REPLACE_WITH_ED25519_PUBLIC_JWK_X" } ], "revokedKids": [], "assuranceMappings": [ { "acr": "urn:example:mfa", "assurance": "multi_factor", "requiredAmr": ["pwd", "otp"] }, { "acr": "urn:example:hardware", "assurance": "hardware", "requiredAmr": ["hwk"] } ], "constraints": { "maxAssertionBytes": 8192, "maxLifetimeMs": 300000, "maxAuthenticationAgeMs": 300000, "clockSkewMs": 5000 } } --- apiVersion: v1 kind: Secret metadata: name: ql3-automation-management-tls namespace: qinglong3-system type: kubernetes.io/tls stringData: tls.crt: REPLACE_WITH_SERVER_CERTIFICATE_CHAIN tls.key: REPLACE_WITH_SERVER_PRIVATE_KEY ca.crt: REPLACE_WITH_1_TO_16_CLIENT_CERTIFICATE_AUTHORITIES client.crl: REPLACE_WITH_1_TO_16_CLIENT_CERTIFICATE_REVOCATION_LISTS --- # Non-CloudNativePG deployments only. The reviewed CloudNativePG overlay uses # the operator-managed ql3-postgres-automation-manager-auth and ql3-postgres-ca # Secrets instead of this resource. apiVersion: v1 kind: Secret metadata: name: ql3-cluster-automation-management-database namespace: qinglong3-system type: Opaque stringData: postgres-automation-manager-url: REPLACE_WITH_AUTOMATION_MANAGER_DSN postgres-tls-servername: REPLACE_WITH_POSTGRES_DNS_NAME postgres-ca.crt: REPLACE_WITH_POSTGRES_CA_CERTIFICATE