> ## Documentation Index
> Fetch the complete documentation index at: https://team.k0labs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Read a config map



## OpenAPI

````yaml api-docs/app-team/kubernetes.json get /v1/kubernetes/configmaps/{namespace}/{name}
openapi: 3.1.1
info:
  title: Kubernetes Service API
  version: 1.0.0
  description: >-
    Kubernetes Service API for managing Kubernetes resources. Arc and Atlas APIs
    call this service through Kong Gateway.
servers:
  - url: http://localhost:4065
    description: Local Development
security: []
paths:
  /v1/kubernetes/configmaps/{namespace}/{name}:
    get:
      tags:
        - ConfigMaps
      summary: Read a config map
      parameters:
        - schema:
            type: string
            minLength: 1
            description: Kubernetes namespace
            example: kcm-system
          required: true
          description: Kubernetes namespace
          name: namespace
          in: path
        - schema:
            type: string
            minLength: 1
            description: Resource name
            example: my-resource
          required: true
          description: Resource name
          name: name
          in: path
      responses:
        '200':
          description: ConfigMap data
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - true
                  data:
                    type: object
                    additionalProperties:
                      nullable: true
                    description: Raw Kubernetes resource object
                  meta:
                    type: object
                    properties:
                      requestId:
                        type: string
                      timestamp:
                        type: string
                    required:
                      - requestId
                      - timestamp
                required:
                  - success
                  - data
                  - meta
        '404':
          description: Not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - false
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                      details:
                        type: object
                        additionalProperties:
                          nullable: true
                    required:
                      - code
                      - message
                  meta:
                    type: object
                    properties:
                      requestId:
                        type: string
                      timestamp:
                        type: string
                    required:
                      - requestId
                      - timestamp
                required:
                  - success
                  - error
                  - meta

````