Commit e14045d1 authored by Sergio Gimenez's avatar Sergio Gimenez
Browse files

chore: fold kind federation manager overrides into main values

parent 48f1188c
Loading
Loading
Loading
Loading

environments/kind/values.fm.yaml

deleted100644 → 0
+0 −42
Original line number Diff line number Diff line
# ====================================================================
# Kind-specific overrides for the Federation Manager subchart
# ====================================================================
# Used by deploy-on-kind.sh:
#   helm install federation-manager ./oop-platform-chart/charts/federation-manager \
#     -f environments/kind/values.fm.yaml
#
# Note: keys are at root level because this targets the subchart directly,
# not through the umbrella chart (where they would be under federationManager:).
# ====================================================================

federation-manager:
  global:
    namespace: oop

  federationManager:
    config:
      partner_op:
        host: "127.0.0.1"
        server: "/operatorplatform/federation/v1"
        port: "8992"
    service:
      type: NodePort
      nodePort: 30989
    image:
      pullPolicy: IfNotPresent

  mongodb:
    persistence:
      storageClass: manual
      hostPath:
        enabled: true
        path: /mnt/data/mongodb_fm
    image:
      pullPolicy: IfNotPresent

  keycloak:
    service:
      type: NodePort
      nodePort: 30081
    image:
      pullPolicy: IfNotPresent
+29 −0
Original line number Diff line number Diff line
@@ -50,3 +50,32 @@ oeg:
      nodePort: 32263
    image:
      pullPolicy: IfNotPresent

federationManager:
  federationManager:
    config:
      partner_op:
        host: "127.0.0.1"
        server: "/operatorplatform/federation/v1"
        port: "8992"
    service:
      type: NodePort
      nodePort: 30989
    image:
      pullPolicy: IfNotPresent

  mongodb:
    persistence:
      storageClass: manual
      hostPath:
        enabled: true
        path: /mnt/data/mongodb_fm
    image:
      pullPolicy: IfNotPresent

  keycloak:
    service:
      type: NodePort
      nodePort: 30081
    image:
      pullPolicy: IfNotPresent