Skip to content
This repository has been archived by the owner on May 27, 2024. It is now read-only.

Commit

Permalink
Merge branch 'dev' into staging
Browse files Browse the repository at this point in the history
  • Loading branch information
vktrrdk committed Jan 8, 2024
2 parents fa2ae0f + 9fd4669 commit cd6a879
Show file tree
Hide file tree
Showing 12 changed files with 25 additions and 25 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
queries: +security-extended, security-and-quality
Expand All @@ -51,7 +51,7 @@ jobs:
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v2
uses: github/codeql-action/autobuild@v3

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
Expand All @@ -65,4 +65,4 @@ jobs:
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ repos:
- --remove-all-unused-imports

- repo: https://github.com/PyCQA/flake8
rev: 6.1.0
rev: 7.0.0
hooks:
- id: flake8
args: [ "--config=setup.cfg" ]
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12.0-bookworm
FROM python:3.11.4-buster
RUN apt-get update -y
RUN apt-get install -y build-essential
WORKDIR /code
Expand Down
18 changes: 9 additions & 9 deletions VirtualMachineService/VirtualMachineHandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -2933,11 +2933,11 @@ def get_limits(self):
maxTotalInstances,totalRamUsed,totalInstancesUsed)
of the OpenStack Project from the Client.
:return: {'maxTotalVolumes': maxTotalVolumes, '
maxTotalVolumeGigabytes': maxTotalVolumeGigabytes,
'maxTotalInstances': maxTotalInstances,
'totalRamUsed': totalRamUsed,
'totalInstancesUsed': totalFlInstancesUsed}
:return: {'max_total_volumes': max_total_volumes, '
max_total_volume_gigabytes': max_total_volume_gigabytes,
'max_total_istances': max_total_instances,
'total_ram_used': total_ram_used,
'total_instances_used': total_instances_used}
"""
self.LOG.info("Get Limits")
limits = {}
Expand All @@ -2951,10 +2951,10 @@ def get_limits(self):
"total_cores_used": str(limits["total_cores_used"]),
"total_instances_used": str(limits["total_instances_used"]),
"total_ram_used": str(math.ceil(limits["total_ram_used"] / 1024)),
"maxTotalVolumes": str(limits["maxTotalVolumes"]),
"maxTotalVolumeGigabytes": str(limits["maxTotalVolumeGigabytes"]),
"totalVolumesUsed": str(limits["totalVolumesUsed"]),
"totalGigabytesUsed": str(limits["totalGigabytesUsed"]),
"max_total_volumes": str(limits["max_total_volumes"]),
"max_total_volume_gigabytes": str(limits["max_total_volume_gigabytes"]),
"total_volumes_used": str(limits["total_volumes_used"]),
"total_gigabytes_used": str(limits["total_gigabytes_used"]),
}

def install_ansible_galaxy_requirements(self):
Expand Down
2 changes: 1 addition & 1 deletion VirtualMachineService/VirtualMachineService-remote
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python
#
# Autogenerated by Thrift Compiler (0.17.0)
# Autogenerated by Thrift Compiler (0.19.0)
#
# DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
#
Expand Down
2 changes: 1 addition & 1 deletion VirtualMachineService/VirtualMachineService.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion VirtualMachineService/constants.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion VirtualMachineService/ttypes.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docker-compose.bibigrid.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ services:

# filebeat
filebeat:
image: docker.elastic.co/beats/filebeat:8.11.1
image: docker.elastic.co/beats/filebeat:8.11.3
env_file:
- .env
volumes:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ services:
# filebeat
filebeat:
container_name: client_filebeat
image: docker.elastic.co/beats/filebeat:8.11.1
image: docker.elastic.co/beats/filebeat:8.11.3
env_file:
- .env
volumes:
Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
setuptools==68.2.2
thrift==0.16.0
python-keystoneclient==5.2.0
openstacksdk ==1.5.0
openstacksdk ==2.0.0
deprecated ==1.2.14
Click==8.1.7
ansible==5.1.0
flake8==6.1.0
paramiko==3.3.1
ansible==5.0.1
flake8==7.0.0
paramiko==3.4.0
ruamel.yaml==0.18.5
pyvim==3.0.3
redis==5.0.1
Expand Down
2 changes: 1 addition & 1 deletion requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ roles:
version: v4.1.0

- name: oefenweb.latest_r
version: v3.1.5
version: v3.1.7


- name: andrewrothstein.miniconda
Expand Down

0 comments on commit cd6a879

Please sign in to comment.