Commit bae61cde authored by Alejandro Sanchez's avatar Alejandro Sanchez
Browse files

feat: fixed oka's implement

parent 085d8181
Loading
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
---
apiVersion: source.toolkit.fluxcd.io/v1beta2
kind: HelmRepository
metadata:
  name: gituh-helm
  namespace: oai-core
spec:
  interval: 10m0s
  url: https://alesan121.github.io/free5gc-helm-repo/
+19 −0
Original line number Diff line number Diff line
---
apiVersion: helm.toolkit.fluxcd.io/v2beta1
kind: HelmRelease
metadata:
  name: oai-5g-core
  namespace: oai-core
spec:
  releaseName: oai-5g-core
  chart:
    spec:
      chart: oai-5g-core
      version: "2.2.0"
      sourceRef:
        kind: HelmRepository
        name: gituh-helm
  interval: 10m0s
  install:
    remediation:
      retries: 3
+14 −0
Original line number Diff line number Diff line
---
apiVersion: kustomize.toolkit.fluxcd.io/v1
kind: Kustomization
metadata:
  name: oai-5g-core-ks
  namespace: flux-system
spec:
  interval: 10m0s
  path: ./oai-5g-core/manifests
  prune: true
  sourceRef:
    kind: GitRepository
    name: flux-system # Pin estándar de lectura en Flux. Verifica si tu OSM usa otro alias para tu repo.
  targetNamespace: oai-core
+9 −0
Original line number Diff line number Diff line
---
apiVersion: source.toolkit.fluxcd.io/v1beta2
kind: HelmRepository
metadata:
  name: gituh-helm
  namespace: ueransim
spec:
  interval: 10m0s
  url: https://alesan121.github.io/free5gc-helm-repo/
+23 −0
Original line number Diff line number Diff line
---
apiVersion: helm.toolkit.fluxcd.io/v2beta1
kind: HelmRelease
metadata:
  name: ueransim
  namespace: ueransim
spec:
  releaseName: ueransim
  chart:
    spec:
      chart: free5gc-ueransim
      version: "2.0.17"
      sourceRef:
        kind: HelmRepository
        name: gituh-helm
  interval: 10m0s
  install:
    remediation:
      retries: 3
  values:
    config:
      amf:
        ip: "oai-amf.oai-core.svc.cluster.local"
Loading