panniyuyu opened a new issue #6584:
URL: https://github.com/apache/skywalking/issues/6584
### Question
I found that only one configmap resource can be read, When i use
configuration-k8s-configmap in server-configuration module.
In this reference:
org.apache.skywalking.oap.server.configuration.configmap.ConfigurationConfigmapInformer#doStartConfigMapInformer
and this part:
SharedIndexInformer<V1ConfigMap> configMapSharedIndexInformer =
factory.sharedIndexInformerFor(
params -> coreV1Api.listNamespacedConfigMapCall(
settings.getNamespace(), null, null, null, null,
settings.getLabelSelector()
, 1, params.resourceVersion, 300, params.watch, null
),
V1ConfigMap.class, V1ConfigMapList.class
);
The parameter limit is fixed at 1. When I modify the parameter limit to null
or 2, and i get a empty configmap.
I think that different types of configurations are often divided into
multiple configmaps to save.
What should i do?Looking forward your answer.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]