mirror of
https://github.com/Telecominfraproject/wlan-cloud-ucentralgw.git
synced 2025-11-01 19:28:01 +00:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
979707ce41 | ||
|
|
e687981f81 |
26
.github/workflows/ci.yml
vendored
26
.github/workflows/ci.yml
vendored
@@ -89,9 +89,31 @@ jobs:
|
||||
steps: ${{ toJson(steps) }}
|
||||
dry_run: False
|
||||
|
||||
deploy-to-dev:
|
||||
deploy-to-dev1:
|
||||
runs-on: ubuntu-latest
|
||||
if: github.ref == 'refs/heads/kinara'
|
||||
if: github.ref == 'refs/heads/main'
|
||||
env:
|
||||
DEPLOY_NAME: owgw
|
||||
HOSTNAME: dev1.dev.kinsights.io
|
||||
NAMESPACE: openlan
|
||||
needs:
|
||||
- docker
|
||||
steps:
|
||||
- name: Set up SSH key
|
||||
run: |
|
||||
echo "${{ secrets.PRIVATE_SSH_KEY }}" > .ssh_host_key
|
||||
chmod 600 .ssh_host_key
|
||||
- name: Rolling update of deployment
|
||||
run: |
|
||||
ssh -i .ssh_host_key \
|
||||
-o "StrictHostKeyChecking=no" -o "UserKnownHostsFile=/dev/null" \
|
||||
ubuntu@${{ env.HOSTNAME }} \
|
||||
kubectl rollout restart deployment/${{ env.DEPLOY_NAME }} -n ${{ env.NAMESPACE }}
|
||||
|
||||
# OLD EKS method - disabled via if:
|
||||
deploy-to-dev-old-eks:
|
||||
runs-on: ubuntu-latest
|
||||
if: false
|
||||
env:
|
||||
DEPLOY_NAME: owgw
|
||||
AWS_DEFAULT_REGION: us-east-1
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
## 3.0.14 (November 06, 2024)
|
||||
- chore: updated package.json, updated helm/Chart.yaml, updated helm/values.yaml, updated CMakeLists.txt, updated version, updated CHANGELOG.md, bumped 3.0.13 -> 3.0.14
|
||||
- New deploy step
|
||||
|
||||
## 3.0.13 (October 30, 2024)
|
||||
- chore: updated package.json, updated helm/Chart.yaml, updated helm/values.yaml, updated CMakeLists.txt, updated version, updated CHANGELOG.md, bumped 3.0.12 -> 3.0.13
|
||||
- Merge pull request #16 from kinarasystems/WIFI-14227-feat-compressed-config
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
cmake_minimum_required(VERSION 3.13)
|
||||
project(owgw VERSION 3.0.13)
|
||||
project(owgw VERSION 3.0.14)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 20)
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED True)
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
apiVersion: v2
|
||||
appVersion: "3.0.13"
|
||||
appVersion: "3.0.14"
|
||||
description: A Helm chart for Kubernetes
|
||||
name: owgw
|
||||
version: 0.1.0
|
||||
|
||||
@@ -7,7 +7,7 @@ fullnameOverride: ""
|
||||
images:
|
||||
owgw:
|
||||
repository: 471112855615.dkr.ecr.us-east-1.amazonaws.com/owgw
|
||||
tag: kv3.0.13
|
||||
tag: kv3.0.14
|
||||
pullPolicy: Always
|
||||
# regcred:
|
||||
# registry: tip-tip-wlan-cloud-ucentral.jfrog.io
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "owgw",
|
||||
"version": "3.0.13",
|
||||
"version": "3.0.14",
|
||||
"description": "This is the Kinara version of OpenWifi OWGW",
|
||||
"author": "Kinara Systems",
|
||||
"homepage": "https://kinarasystems.com",
|
||||
|
||||
Reference in New Issue
Block a user