configmap is not working for service and loadBalancerIP

760 Views Asked by At

I'm used following kubernetes API. Configmap is not working with service and loadbalancer.

Here is code -

apiVersion: v1
kind: Service
metadata:
  annotations:
    service.beta.kubernetes.io/azure-load-balancer-resource-group: Resource_group
    valueFrom :
      configMapKeyRef :
        name : app-configmap
        key : Resource_group
  name: appliance-ui
spec:
  loadBalancerIP: Static_public_ip
  valueFrom :
    configMapKeyRef :
      name : app-configmap
      key : Static_public_ip
  type: LoadBalancer
  ports:
  - port: 80
  selector:
    app: appliance-ui

Here is error -

error: error validating "ab.yml": error validating data: [ValidationError(Service.metadata.annotations.valueFrom): invalid type for io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta.annotations: got "map", expected "string", ValidationError(Service.spec): unknown field "valueFrom" in io.k8s.api.core.v1.ServiceSpec]; if you choose to ignore these errors, turn validation off with --validate=false

I have tried with --validate=false. It didn't work. Please let me know whether configmap will work for service and loadBalancerIP field or not.

1

There are 1 best solutions below

0
On

Unfortunately, you cannot configure a certain value for Service manifest through configMapKeyRef. AFAIK ConfigMap should mount to a Pod(container) for referring the values, so it does not allow other resource except Pod. Refer Configure a Pod to Use a ConfigMap or ConfigMap and Pods for more details.