Commit 8e3657c7 authored by Dimitrios Gogos's avatar Dimitrios Gogos
Browse files

Merge branch 'fix/add_networkadapters_env_variables' into 'main'

add networkadapter env variables in srm

See merge request !3
parents d8087307 4eac5640
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -10,6 +10,3 @@ keywords:
  - controller
maintainers:
  - name: DevOps Team
 No newline at end of file
home: https://github.com/sunriseopenoperatorplatform/oeg
sources:
  - https://github.com/sunriseopenoperatorplatform/oeg
+1 −0
Original line number Diff line number Diff line
@@ -88,6 +88,7 @@ The following environment variables can be configured for the OEG Controller:
- `FEDERATION_MANAGER_HOST`: Federation manager service URL
- `PARTNER_API_ROOT`: Partner API root URL
- `TOKEN_ENDPOINT`: OAuth token endpoint URL
- `AVAIL_ZONE_NOTIF_LINK`: Available zones URL for status updates

## Storage Configuration

+2 −0
Original line number Diff line number Diff line
@@ -48,6 +48,8 @@ spec:
              value: {{ .Values.oegcontroller.env.partnerApiRoot | quote }}
            - name: TOKEN_ENDPOINT
              value: {{ .Values.oegcontroller.env.tokenEndpoint | quote }}
            - name: AVAIL_ZONE_NOTIF_LINK
              value: {{ default "" .Values.oegcontroller.env.availZoneNotifLink | quote }}
          {{- with .Values.oegcontroller.resources }}
          resources:
            {{- toYaml . | nindent 12 }}
+5 −4
Original line number Diff line number Diff line
@@ -43,8 +43,8 @@ oegcontroller:
  replicaCount: 1
  
  image:
    repository: ghcr.io/sunriseopenoperatorplatform/oeg/oeg
    tag: 1.0.1
    repository: labs.etsi.org:5050/oop/code/open-exposure-gateway
    tag: 1.0.0
    pullPolicy: Always
  
  service:
@@ -65,9 +65,10 @@ oegcontroller:
  env:
    mongoUri: "mongodb://oegmongo:27017"
    srmHost: "http://srm:8080/srm/1.0.0"
    federationManagerHost: "http://federation-manager.federation-manager.svc.cluster.local:8989/operatorplatform/federation/v1"
    federationManagerHost: "http://federation-manager.oop.svc.cluster.local:8989/operatorplatform/federation/v1"
    partnerApiRoot: "http://10.8.0.1:31002"
    tokenEndpoint: "http://federation-manager.federation-manager.svc.cluster.local:8080/realms/federation/protocol/openid-connect/token"
    tokenEndpoint: "http://federation-manager.oop.svc.cluster.local:8080/realms/federation/protocol/openid-connect/token"
    availZoneNotifLink: ""

# Ingress configuration
ingress:
+1 −2
Original line number Diff line number Diff line
@@ -10,4 +10,3 @@ keywords:
  - sunrise
maintainers:
  - name: DevOps Team
 No newline at end of file
home: https://github.com/sunriseopenoperatorplatform/srm
Loading