We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I am new to Istio and Kubernetes
Is there a way to reference Kubernetes secret for the basic-auth plugin instead of hard-coding values in CRD object?
apiVersion: v1 kind: Secret metadata: name: basic-auth-creds type: Opaque data: user: ok password: test user_password: "ok:test" --- apiVersion: extensions.istio.io/v1alpha1 kind: WasmPlugin metadata: name: basic-auth namespace: istio-system spec: selector: matchLabels: istio: ingressgateway url: oci://ghcr.io/istio-ecosystem/wasm-extensions/basic_auth:1.12.0 phase: AUTHN pluginConfig: basic_auth_rules: - prefix: "/productpage" request_methods: - "GET" - "POST" credentials: - "ok:test" - "YWRtaW4zOmFkbWluMw=="
Could you provide an example how to reference the basic-auth-creds secret in pluginConfig?
basic-auth-creds
pluginConfig
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am new to Istio and Kubernetes
Is there a way to reference Kubernetes secret for the basic-auth plugin instead of hard-coding values in CRD object?
Could you provide an example how to reference the
basic-auth-creds
secret inpluginConfig
?The text was updated successfully, but these errors were encountered: