Compare commits

...

2 Commits

Author SHA1 Message Date
Automation User - kinaraauto
979707ce41 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 2024-11-06 13:55:41 +00:00
Carsten Schafer
e687981f81 New deploy step
Signed-off-by: Carsten Schafer <Carsten.Schafer@kinarasystems.com>
2024-11-06 08:55:14 -05:00
7 changed files with 33 additions and 7 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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)

View File

@@ -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

View File

@@ -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

View File

@@ -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",

View File

@@ -1 +1 @@
3.0.13
3.0.14