Skip to content
This repository was archived by the owner on Jan 31, 2025. It is now read-only.

Commit

Permalink
BC-7234 - test
Browse files Browse the repository at this point in the history
  • Loading branch information
mamutmk5 authored Jun 21, 2024
1 parent e32d486 commit b9d6320
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/de/svs/doido/mongo/ConfigmapApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public ConfigmapApi(KubernetesClient kubernetesClient) {
@GET
@Path("/{namespace}/{configmapName}")
@Produces(MediaType.APPLICATION_JSON)
public Configmap ConfigmapApi(String nameespace, String configmapName) {
return kubernetesClient.pods().inNamespace(namespace).list().getItems();
public Configmap configmaps(String namespace, String configmapName) {
return cfg.readConfigmap(namespace,configmapName);
}
}

0 comments on commit b9d6320

Please sign in to comment.