Commit fac27205 authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

ECOC F5GA Telemetry Demo:

- Corrected docker image repositories
- Corrected
parent 34d9bb6b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -60,7 +60,7 @@ spec:
      restartPolicy: Always
      containers:
      - name: cockroachdb
        image: localhost:5000/cockroachdb/cockroach:latest-v22.2
        image: 10.254.6.194:5000/cockroachdb/cockroach:latest-v22.2
        imagePullPolicy: IfNotPresent
        args:
        - start-single-node
+1 −1
Original line number Diff line number Diff line
@@ -60,7 +60,7 @@ spec:
      restartPolicy: Always
      containers:
      - name: kafka
        image: localhost:5000/bitnami/kafka:latest
        image: 10.254.6.194:5000/bitnami/kafka:latest
        imagePullPolicy: IfNotPresent
        ports:
        - name: clients
+2 −0
Original line number Diff line number Diff line
@@ -14,6 +14,8 @@

container:
  image:
    registry: 10.254.6.194:5000
    repository: nats
    tags: 2.9-alpine
  env:
    # different from k8s units, suffix must be B, KiB, MiB, GiB, or TiB
+1 −1
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@ spec:
      restartPolicy: Always
      containers:
      - name: metricsdb
        image: localhost:5000/questdb/questdb:latest
        image: 10.254.6.194:5000/questdb/questdb:latest
        ports:
        - containerPort: 9000
        - containerPort: 9009
+3 −3
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@
# ----- TeraFlowSDN ------------------------------------------------------------

# Set the URL of the internal MicroK8s Docker registry where the images will be uploaded to.
export TFS_REGISTRY_IMAGES="http://localhost:32000/tfs/"
export TFS_REGISTRY_IMAGES="http://10.254.6.194:5000/tfs/"

# Set the list of components, separated by spaces, you want to build images for, and deploy.
export TFS_COMPONENTS="context device pathcomp service slice nbi webui"
@@ -91,7 +91,7 @@ export TFS_COMPONENTS="context device pathcomp service slice nbi webui"


# Set the tag you want to use for your images.
export TFS_IMAGE_TAG="dev"
export TFS_IMAGE_TAG="f5ga"

# Set the name of the Kubernetes namespace to deploy TFS to.
export TFS_K8S_NAMESPACE="tfs"
@@ -109,7 +109,7 @@ export TFS_EXTRA_MANIFESTS="manifests/nginx_ingress_http.yaml"
export TFS_GRAFANA_PASSWORD="admin123+"

# Disable skip-build flag to rebuild the Docker images.
export TFS_SKIP_BUILD=""
export TFS_SKIP_BUILD="YES"


# ----- CockroachDB ------------------------------------------------------------
Loading