Hi people.
I have these KongCredentials, resources with their respective KongConsumers and the basic-auth and acl KongPlugins
My question is: Can I apply it kubernetes secrets to KongCredentials resource?
What kind of secrets? generic may be?
apiVersion: configuration.konghq.com/v1
kind: KongPlugin
metadata:
name: swaggerapi-basic-auth
namespace: default
labels:
global: "false"
disabled: false
config:
hide_credentials: true
plugin: basic-auth
---
apiVersion: configuration.konghq.com/v1
kind: KongPlugin
metadata:
name: swaggerapi-acl
namespace: default
labels:
global: "false"
disabled: false
config:
hide_groups_header: true
whitelist: ["dev", "azure"]
plugin: acl
---
# User standard
apiVersion: configuration.konghq.com/v1
kind: KongConsumer
metadata:
name: zcrm365consumer
namespace: default
username: user
---
apiVersion: configuration.konghq.com/v1
kind: KongCredential
group: dev
metadata:
name: credential-zcrm365-acl
namespace: default
consumerRef: zcrm365consumer
type: acl
config:
group: "dev"
---
apiVersion: configuration.konghq.com/v1
kind: KongCredential
metadata:
name: credential-zcrm365
namespace: default
consumerRef: zcrm365consumer
type: basic-auth
config:
username: user
password: passwd
---