Skip to content

Commit

Permalink
change to 1.5.1 (#212)
Browse files Browse the repository at this point in the history
change to 1.5.1

updatee more to 1.5.1

minor changes

change copyright
  • Loading branch information
xuluna authored Feb 15, 2023
1 parent 3ae7b85 commit 4e97b0d
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/actions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,35 +96,35 @@ jobs:
- name: Scan Proxy Server
uses: Azure/container-scan@v0
with:
image-name: proxy-server:1.5.0
image-name: proxy-server:1.5.1
severity-threshold: HIGH
env:
DOCKLE_HOST: "unix:///var/run/docker.sock"
- name: Scan Role Service
uses: Azure/container-scan@v0
with:
image-name: role-service:1.5.0
image-name: role-service:1.5.1
severity-threshold: HIGH
env:
DOCKLE_HOST: "unix:///var/run/docker.sock"
- name: Scan Tenant Service
uses: Azure/container-scan@v0
with:
image-name: tenant-service:1.5.0
image-name: tenant-service:1.5.1
severity-threshold: HIGH
env:
DOCKLE_HOST: "unix:///var/run/docker.sock"
- name: Scan SideCar Proxy
uses: Azure/container-scan@v0
with:
image-name: sidecar-proxy:1.5.0
image-name: sidecar-proxy:1.5.1
severity-threshold: HIGH
env:
DOCKLE_HOST: "unix:///var/run/docker.sock"
- name: Scan Storage Service
uses: Azure/container-scan@v0
with:
image-name: storage-service:1.5.0
image-name: storage-service:1.5.1
severity-threshold: HIGH
env:
DOCKLE_HOST: "unix:///var/run/docker.sock"
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
DOCKER_TAG ?= 1.5.0
SIDECAR_TAG ?= 1.5.0
VERSION_TAG ?= 1.5-0
DOCKER_TAG ?= 1.5.1
SIDECAR_TAG ?= 1.5.1
VERSION_TAG ?= 1.5-1
K3S_SELINUX_VERSION ?= 0.4-1

.PHONY: build
Expand Down
4 changes: 2 additions & 2 deletions deploy/airgap-prepare.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash -x

# Copyright © 2021-2022 Dell Inc. or its subsidiaries. All Rights Reserved.
# Copyright © 2021-2023 Dell Inc. or its subsidiaries. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -13,7 +13,7 @@
# limitations under the License.

ARCH=amd64
SIDECAR_DOCKER_TAG=1.5.0
SIDECAR_DOCKER_TAG=1.5.1
DIST=dist

K3S_INSTALL_SCRIPT=${DIST}/k3s-install.sh
Expand Down
8 changes: 4 additions & 4 deletions deploy/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ spec:
spec:
containers:
- name: proxy-server
image: proxy-server:1.5.0
image: proxy-server:1.5.1
imagePullPolicy: IfNotPresent
ports:
- containerPort: 8080
Expand Down Expand Up @@ -122,7 +122,7 @@ spec:
spec:
containers:
- name: tenant-service
image: tenant-service:1.5.0
image: tenant-service:1.5.1
imagePullPolicy: IfNotPresent
ports:
- containerPort: 50051
Expand Down Expand Up @@ -188,7 +188,7 @@ spec:
serviceAccountName: storage-service
containers:
- name: storage-service
image: storage-service:1.5.0
image: storage-service:1.5.1
imagePullPolicy: IfNotPresent
ports:
- containerPort: 50051
Expand Down Expand Up @@ -252,7 +252,7 @@ spec:
serviceAccountName: role-service
containers:
- name: role-service
image: role-service:1.5.0
image: role-service:1.5.1
imagePullPolicy: IfNotPresent
ports:
- containerPort: 50051
Expand Down
4 changes: 2 additions & 2 deletions deploy/rpm/SPECS/karavi-authorization.spec
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022 Dell Inc., or its subsidiaries. All Rights Reserved.
# Copyright (c) 2023 Dell Inc., or its subsidiaries. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@

Name: karavi-authorization
Version: 1.5
Release: 0
Release: 1
Summary: Karavi Authorization

License: ASL 2.0
Expand Down
4 changes: 2 additions & 2 deletions scripts/install_karavi_auth.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# Copyright (c) 2022 Dell Inc., or its subsidiaries. All Rights Reserved.
# Copyright (c) 2022-2023 Dell Inc., or its subsidiaries. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -30,7 +30,7 @@ function usage() {
}

UPGRADE=0
RPM_VERSION=1.5-0
RPM_VERSION=1.5-1

while getopts ":h-:" optchar; do
case "${optchar}" in
Expand Down

0 comments on commit 4e97b0d

Please sign in to comment.