Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Linting a random file to see if build runs as expected #190

Merged
merged 3 commits into from
Nov 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions content/crds-api-reference/integration-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ spec:
groups:
labels:
role: customer-reader
annotations:
annotations:
openshift.io/node-selector: node-role.kubernetes.io/worker=
namespaces:
labels:
Expand Down Expand Up @@ -116,14 +116,14 @@ spec:
vault:
enabled: true
authMethod: kubernetes #enum: {kubernetes:default, token}
accessInfo:
accessInfo:
accessorPath: oidc/
address: https://vault.apps.prod.abcdefghi.kubeapp.cloud/
roleName: mto
secretRef:
secretRef:
name: ''
namespace: ''
config:
config:
ssoClient: vault
```

Expand Down Expand Up @@ -164,7 +164,7 @@ Following are the different components that can be used to configure multi-tenan

Here's an example of how to generate the secrets required to configure MTO:

**TLS Secret for Ingress:**
**TLS Secret for Ingress:**

Create a TLS secret containing your SSL/TLS certificate and key for secure communication. This secret will be used for the Console, Gateway, and Keycloak ingresses.

Expand Down Expand Up @@ -354,7 +354,7 @@ For example:
`privileged.serviceAccounts:` Contains the list of `ServiceAccounts` ignored by MTO. MTO will not manage the `ServiceAccounts` in this list. Values in this list are regex patterns. For example, to ignore all `ServiceAccounts` starting with the `system:serviceaccount:openshift-` prefix, we can use `^system:serviceaccount:openshift-.*`; and to ignore a specific service account like `system:serviceaccount:builder` service account we can use `^system:serviceaccount:builder$.`

!!! note
`stakater`, `stakater.` and `stakater.*` will have the same effect. To check out the combinations, go to [Regex101](https://regex101.com/), select Golang, and type your expected regex and test string.
`stakater`, `stakater.` and `stakater.*` will have the same effect. To check out the combinations, go to [Regex101](https://regex101.com/), select Golang, and type your expected regex and test string.

##### Users

Expand Down Expand Up @@ -445,14 +445,14 @@ integrations:
vault:
enabled: true
authMethod: kubernetes #enum: {kubernetes:default, Token}
accessInfo:
accessInfo:
accessorPath: oidc/
address: https://vault.apps.prod.abcdefghi.kubeapp.cloud/
roleName: mto
secretRef:
secretRef:
name: ''
namespace: ''
config:
config:
ssoClient: vault
```

Expand Down Expand Up @@ -507,14 +507,14 @@ If `vault` is configured on a cluster, then Vault configuration can be enabled.
vault:
enabled: true
authMethod: kubernetes #enum: {kubernetes:default, token}
accessInfo:
accessInfo:
accessorPath: oidc/
address: https://vault.apps.prod.abcdefghi.kubeapp.cloud/
roleName: mto
secretRef:
name: ''
namespace: ''
config:
config:
ssoClient: vault
```

Expand Down
Loading