...
1apiVersion: device-registrar.edge.ncr.com/v1alpha1
2kind: ExternalApplication
3metadata:
4 name: connected-associates
5 namespace: device-registrar-clients
6spec:
7 ID: "123e4567-e89b-12d3-a456-426614174000"
8 clientTemplate:
9 apiVersion: iam.edge-infra.dev/v1alpha1
10 kind: Client
11 metadata:
12 name: connected-associates-client
13 labels:
14 app: example
15 annotations:
16 description: "Example client for demonstration purposes"
17 spec:
18 audience:
19 - "example-audience"
20 clientName: "Connected Associates"
21 grantTypes:
22 - "authorization_code"
23 printBarcodeTypes:
24 - "QR"
25 printBarcodeUri: "https://example.com/print-barcode"
26 redirectUris:
27 - "https://example.com/callback"
28 responseModes:
29 - "query"
30 responseTypes:
31 - "code"
32 roles:
33 - "user"
34 scope: "openid profile email"
35 secretName: "example-client-secret"
36 description: "Connected associates mobile application definition"
View as plain text