mirror of
https://github.com/Telecominfraproject/wlan-cloud-ucentral-deploy.git
synced 2026-03-20 03:40:49 +00:00
Compare commits
6 Commits
v2.6.0-RC7
...
v2.6.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cea68fce55 | ||
|
|
f1ecf39bdb | ||
|
|
f2f57564ea | ||
|
|
8afc726c0d | ||
|
|
c1bac7b420 | ||
|
|
f7277d3f5f |
@@ -2,31 +2,31 @@ apiVersion: v2
|
||||
name: openwifi
|
||||
appVersion: "1.0"
|
||||
description: A Helm chart for Kubernetes
|
||||
version: 2.6.0-RC7
|
||||
version: 2.6.1
|
||||
dependencies:
|
||||
- name: owgw
|
||||
repository: "git+https://github.com/Telecominfraproject/wlan-cloud-ucentralgw@helm?ref=v2.6.0-RC5"
|
||||
repository: "git+https://github.com/Telecominfraproject/wlan-cloud-ucentralgw@helm?ref=v2.6.1"
|
||||
version: 0.1.0
|
||||
- name: owsec
|
||||
repository: "git+https://github.com/Telecominfraproject/wlan-cloud-ucentralsec@helm?ref=v2.6.0-RC3"
|
||||
repository: "git+https://github.com/Telecominfraproject/wlan-cloud-ucentralsec@helm?ref=v2.6.0"
|
||||
version: 0.1.0
|
||||
- name: owfms
|
||||
repository: "git+https://github.com/Telecominfraproject/wlan-cloud-ucentralfms@helm?ref=v2.6.0-RC2"
|
||||
repository: "git+https://github.com/Telecominfraproject/wlan-cloud-ucentralfms@helm?ref=v2.6.0"
|
||||
version: 0.1.0
|
||||
- name: owprov
|
||||
repository: "git+https://github.com/Telecominfraproject/wlan-cloud-owprov@helm?ref=v2.6.0-RC5"
|
||||
repository: "git+https://github.com/Telecominfraproject/wlan-cloud-owprov@helm?ref=v2.6.0"
|
||||
version: 0.1.0
|
||||
- name: owanalytics
|
||||
repository: "git+https://github.com/Telecominfraproject/wlan-cloud-analytics@helm?ref=v2.6.0-RC4"
|
||||
repository: "git+https://github.com/Telecominfraproject/wlan-cloud-analytics@helm?ref=v2.6.0"
|
||||
version: 0.1.0
|
||||
- name: owgwui
|
||||
repository: "git+https://github.com/Telecominfraproject/wlan-cloud-ucentralgw-ui@helm?ref=v2.6.0-RC4"
|
||||
repository: "git+https://github.com/Telecominfraproject/wlan-cloud-ucentralgw-ui@helm?ref=v2.6.0"
|
||||
version: 0.1.0
|
||||
- name: owprovui
|
||||
repository: "git+https://github.com/Telecominfraproject/wlan-cloud-owprov-ui@helm?ref=v2.6.0-RC5"
|
||||
repository: "git+https://github.com/Telecominfraproject/wlan-cloud-owprov-ui@helm?ref=v2.6.0"
|
||||
version: 0.1.0
|
||||
- name: owsub
|
||||
repository: "git+https://github.com/Telecominfraproject/wlan-cloud-userportal@helm?ref=v2.6.0-RC2"
|
||||
repository: "git+https://github.com/Telecominfraproject/wlan-cloud-userportal@helm?ref=v2.6.0"
|
||||
version: 0.1.0
|
||||
- name: kafka
|
||||
repository: https://tip.jfrog.io/artifactory/tip-wlan-cloud-ucentral-helm/
|
||||
|
||||
@@ -40,6 +40,24 @@ RUN git clone https://github.com/Telecominfraproject/wlan-cloud-owprov.git owpro
|
||||
&& cp owprov/test_scripts/curl/cli owprov_cli \
|
||||
&& rm -rf owprov
|
||||
|
||||
# OWAnalytics
|
||||
ARG OWANALYTICS_VERSION=main
|
||||
RUN git clone https://github.com/Telecominfraproject/wlan-cloud-analytics.git owanalytics \
|
||||
&& cd owanalytics \
|
||||
&& git checkout $OWANALYTICS_VERSION \
|
||||
&& cd /cli \
|
||||
&& cp owanalytics/test_scripts/curl/cli owanalytics_cli \
|
||||
&& rm -rf owanalytics
|
||||
|
||||
# OWSub
|
||||
ARG OWSUB_VERSION=main
|
||||
RUN git clone https://github.com/Telecominfraproject/wlan-cloud-userportal.git owsub \
|
||||
&& cd owsub \
|
||||
&& git checkout $OWSUB_VERSION \
|
||||
&& cd /cli \
|
||||
&& cp owsub/test_scripts/curl/cli owsub_cli \
|
||||
&& rm -rf owsub
|
||||
|
||||
COPY clustersysteminfo clustersysteminfo
|
||||
COPY change_credentials change_credentials
|
||||
|
||||
|
||||
@@ -94,6 +94,24 @@ do
|
||||
let "exit_code_sum+=$(grep ErrorCode result.json | wc -l)"
|
||||
sleep 1
|
||||
|
||||
./owanalytics_cli systeminfo
|
||||
let "exit_code_sum+=$?"
|
||||
if [[ ! -s result.json ]]
|
||||
then
|
||||
let "exit_code_sum+=1"
|
||||
fi
|
||||
let "exit_code_sum+=$(grep ErrorCode result.json | wc -l)"
|
||||
sleep 1
|
||||
|
||||
./owsub_cli systeminfo
|
||||
let "exit_code_sum+=$?"
|
||||
if [[ ! -s result.json ]]
|
||||
then
|
||||
let "exit_code_sum+=1"
|
||||
fi
|
||||
let "exit_code_sum+=$(grep ErrorCode result.json | wc -l)"
|
||||
sleep 1
|
||||
|
||||
let "CHECK_RETRIES-=1"
|
||||
echo "Exit code sum: $exit_code_sum"
|
||||
echo "Left retries: $CHECK_RETRIES"
|
||||
|
||||
@@ -8,6 +8,7 @@ owgw:
|
||||
|
||||
postgresql:
|
||||
enabled: true
|
||||
nameOverride: owgw-pgsql
|
||||
fullnameOverride: owgw-pgsql
|
||||
postgresqlDatabase: owgw
|
||||
postgresqlUsername: owgw
|
||||
@@ -30,6 +31,7 @@ owgw:
|
||||
#
|
||||
# postgresql:
|
||||
# enabled: true
|
||||
# nameOverride: owsec-pgsql
|
||||
# fullnameOverride: owsec-pgsql
|
||||
# postgresqlDatabase: owsec
|
||||
# postgresqlUsername: owsec
|
||||
@@ -52,6 +54,7 @@ owgw:
|
||||
#
|
||||
# postgresql:
|
||||
# enabled: true
|
||||
# nameOverride: owfms-pgsql
|
||||
# fullnameOverride: owfms-pgsql
|
||||
# postgresqlDatabase: owfms
|
||||
# postgresqlUsername: owfms
|
||||
@@ -74,6 +77,7 @@ owgw:
|
||||
#
|
||||
# postgresql:
|
||||
# enabled: true
|
||||
# nameOverride: owprov-pgsql
|
||||
# fullnameOverride: owprov-pgsql
|
||||
# postgresqlDatabase: owprov
|
||||
# postgresqlUsername: owprov
|
||||
@@ -96,6 +100,7 @@ owanalytics:
|
||||
|
||||
postgresql:
|
||||
enabled: true
|
||||
nameOverride: owanalytics-pgsql
|
||||
fullnameOverride: owanalytics-pgsql
|
||||
postgresqlDatabase: owanalytics
|
||||
postgresqlUsername: owanalytics
|
||||
@@ -118,6 +123,7 @@ owanalytics:
|
||||
#
|
||||
# postgresql:
|
||||
# enabled: true
|
||||
# nameOverride: owsub-pgsql
|
||||
# fullnameOverride: owsub-pgsql
|
||||
# postgresqlDatabase: owsub
|
||||
# postgresqlUsername: owsub
|
||||
|
||||
@@ -78,7 +78,7 @@ clustersysteminfo:
|
||||
images:
|
||||
clustersysteminfo:
|
||||
repository: tip-tip-wlan-cloud-ucentral.jfrog.io/clustersysteminfo
|
||||
tag: main
|
||||
tag: v2.6.1
|
||||
pullPolicy: Always
|
||||
# regcred:
|
||||
# registry: tip-tip-wlan-cloud-ucentral.jfrog.io
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
# Image tags
|
||||
COMPOSE_PROJECT_NAME=openwifi
|
||||
OWGW_TAG=v2.6.0-RC5
|
||||
OWGWUI_TAG=v2.6.0-RC4
|
||||
OWSEC_TAG=v2.6.0-RC3
|
||||
OWFMS_TAG=v2.6.0-RC2
|
||||
OWPROV_TAG=v2.6.0-RC5
|
||||
OWPROVUI_TAG=v2.6.0-RC5
|
||||
OWANALYTICS_TAG=v2.6.0-RC4
|
||||
OWSUB_TAG=v2.6.0-RC2
|
||||
OWGW_TAG=v2.6.1
|
||||
OWGWUI_TAG=v2.6.0
|
||||
OWSEC_TAG=v2.6.0
|
||||
OWFMS_TAG=v2.6.0
|
||||
OWPROV_TAG=v2.6.0
|
||||
OWPROVUI_TAG=v2.6.0
|
||||
OWANALYTICS_TAG=v2.6.0
|
||||
OWSUB_TAG=v2.6.0
|
||||
KAFKA_TAG=latest
|
||||
ZOOKEEPER_TAG=latest
|
||||
POSTGRESQL_TAG=latest
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
# Image tags
|
||||
COMPOSE_PROJECT_NAME=openwifi
|
||||
OWGW_TAG=v2.6.0-RC5
|
||||
OWGWUI_TAG=v2.6.0-RC4
|
||||
OWSEC_TAG=v2.6.0-RC3
|
||||
OWFMS_TAG=v2.6.0-RC2
|
||||
OWPROV_TAG=v2.6.0-RC5
|
||||
OWPROVUI_TAG=v2.6.0-RC5
|
||||
OWANALYTICS_TAG=v2.6.0-RC4
|
||||
OWSUB_TAG=v2.6.0-RC2
|
||||
OWGW_TAG=v2.6.1
|
||||
OWGWUI_TAG=v2.6.0
|
||||
OWSEC_TAG=v2.6.0
|
||||
OWFMS_TAG=v2.6.0
|
||||
OWPROV_TAG=v2.6.0
|
||||
OWPROVUI_TAG=v2.6.0
|
||||
OWANALYTICS_TAG=v2.6.0
|
||||
OWSUB_TAG=v2.6.0
|
||||
KAFKA_TAG=latest
|
||||
ZOOKEEPER_TAG=latest
|
||||
ACMESH_TAG=latest
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
# Image tags
|
||||
COMPOSE_PROJECT_NAME=openwifi
|
||||
OWGW_TAG=v2.6.0-RC5
|
||||
OWGWUI_TAG=v2.6.0-RC4
|
||||
OWSEC_TAG=v2.6.0-RC3
|
||||
OWFMS_TAG=v2.6.0-RC2
|
||||
OWPROV_TAG=v2.6.0-RC5
|
||||
OWPROVUI_TAG=v2.6.0-RC5
|
||||
OWANALYTICS_TAG=v2.6.0-RC4
|
||||
OWSUB_TAG=v2.6.0-RC2
|
||||
OWGW_TAG=v2.6.1
|
||||
OWGWUI_TAG=v2.6.0
|
||||
OWSEC_TAG=v2.6.0
|
||||
OWFMS_TAG=v2.6.0
|
||||
OWPROV_TAG=v2.6.0
|
||||
OWPROVUI_TAG=v2.6.0
|
||||
OWANALYTICS_TAG=v2.6.0
|
||||
OWSUB_TAG=v2.6.0
|
||||
KAFKA_TAG=latest
|
||||
ZOOKEEPER_TAG=latest
|
||||
ACMESH_TAG=latest
|
||||
|
||||
@@ -122,7 +122,7 @@ if [[ ! -z "$WEBSOCKET_CERT" ]]; then
|
||||
echo "$WEBSOCKET_CERT" > certs/websocket-cert.pem
|
||||
fi
|
||||
if [[ ! -z "$WEBSOCKET_KEY" ]]; then
|
||||
echo "$WEBSOCKET_KEY" > certs/websocket-key.pem && chmod 600 websocket-key.pem
|
||||
echo "$WEBSOCKET_KEY" > certs/websocket-key.pem && chmod 600 certs/websocket-key.pem
|
||||
fi
|
||||
|
||||
sed -i "s~.*FILEUPLOADER_HOST_NAME=.*~FILEUPLOADER_HOST_NAME=$OWGW_FILEUPLOADER_HOST_NAME~" owgw.env
|
||||
|
||||
@@ -39,7 +39,7 @@ http:
|
||||
owgw-rttys-view:
|
||||
loadBalancer:
|
||||
servers:
|
||||
- url: "http://owgw.wlan.local:5913/"
|
||||
- url: "https://owgw.wlan.local:5913/"
|
||||
|
||||
routers:
|
||||
owgw-ui-http:
|
||||
@@ -134,6 +134,6 @@ tcp:
|
||||
owgw-rttys:
|
||||
entryPoints: "owgwrttys"
|
||||
service: "owgw-rttys"
|
||||
rule: "HostSNI(`{{ env "SDKHOSTNAME" }}`)"
|
||||
rule: "HostSNI(`*`)"
|
||||
tls:
|
||||
certResolver: openwifi
|
||||
passthrough: true
|
||||
|
||||
Reference in New Issue
Block a user