Skip to content

Commit

Permalink
Merge pull request #520 from deNBI/staging
Browse files Browse the repository at this point in the history
Staging
  • Loading branch information
dweinholz authored May 16, 2024
2 parents 1c66cce + ed31a1f commit c55aac0
Show file tree
Hide file tree
Showing 18 changed files with 3,436 additions and 9,903 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ jobs:
uses: rokroskar/[email protected]
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
- uses: actions/[email protected].4
- uses: actions/[email protected].5
- run: docker build --no-cache .
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/[email protected].4
uses: actions/[email protected].5

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/master-protection.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: rokroskar/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/[email protected].4
- uses: actions/[email protected].5

- name: Check Tag
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
uses: rokroskar/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/[email protected].4
- uses: actions/[email protected].5
- name: Extract branch name
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
- uses: actions/[email protected].4
- uses: actions/[email protected].5
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Quay.io
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.bibigrid.host.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ services:

simplevm_client_filebeat:
container_name: simplevm_client_filebeat
image: docker.elastic.co/beats/filebeat:8.13.3
image: docker.elastic.co/beats/filebeat:8.13.4
network_mode: host # Use the host network namespace

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

# filebeat
simplevm_filebeat:
image: docker.elastic.co/beats/filebeat:8.13.3
image: docker.elastic.co/beats/filebeat:8.13.4
env_file:
- .env
volumes:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.host.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ services:

simplevm_client_filebeat:
container_name: simplevm_client_filebeat
image: docker.elastic.co/beats/filebeat:8.13.3
image: docker.elastic.co/beats/filebeat:8.13.4
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 @@ -30,7 +30,7 @@ services:
# filebeat
simplevm_client_filebeat:
container_name: simplevm_client_filebeat
image: docker.elastic.co/beats/filebeat:8.13.3
image: docker.elastic.co/beats/filebeat:8.13.4
env_file:
- .env
volumes:
Expand Down
6 changes: 3 additions & 3 deletions plays/setup_client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,18 +144,18 @@
when: "'bibigrid' not in ansible_run_tags and 'host_network' not in ansible_run_tags"

- name: Start client docker container in host network without bibigrid
shell: docker compose -f {{ client.REPO_PATH }}/docker-compose.host.yml up -d
shell: docker compose -f {{ client.REPO_PATH }}/docker-compose.host.yml up --pull=always -d
become: yes
tags: [ 'never', 'host_network' ]

- name: Start client docker container in host network with bibigrid
shell: docker compose -f {{ client.REPO_PATH }}/docker-compose.bibigrid.host.yml up -d
shell: docker compose -f {{ client.REPO_PATH }}/docker-compose.bibigrid.host.yml up --pull=always -d
become: yes
tags: [ 'never', 'host_network_bibigrid', ]


- name: Start docker container with bibigrid
shell: docker compose -f {{ client.REPO_PATH }}/docker-compose.bibigrid.yml up -d
shell: docker compose -f {{ client.REPO_PATH }}/docker-compose.bibigrid.yml up --pull=always -d

become: yes
tags: [ 'never', 'bibigrid' ]
8 changes: 8 additions & 0 deletions portal_client.thrift
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,15 @@ struct Image{

/** If the Image is a snapshot*/
10:optional bool is_snapshot,

/** OS version of the image */
11:optional string os_version

/** OS distro of the image */
12:optional string os_distro

/** Title of the image */
13:optional string title
}
/**
* This Struct defines a VirtualMachine.
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pyvim==3.0.3
redis==5.0.4
requests==2.31.0
pyyaml==6.0.1
pre-commit==3.7.0
pre-commit==3.7.1
types-PyYAML==6.0.12.20240311
sympy==1.12
colorama==0.4.6
Expand Down
Loading

0 comments on commit c55aac0

Please sign in to comment.