Skip to content

Commit

Permalink
Merge branch 'staging'
Browse files Browse the repository at this point in the history
  • Loading branch information
dweinholz committed Nov 22, 2023
2 parents 9e296c9 + ffca08d commit 945aa4e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repos:
- id: check-yaml

- repo: https://github.com/psf/black
rev: 23.10.1
rev: 23.11.0
hooks:
- id: black
- repo: https://github.com/sondrelg/pep585-upgrade
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.bibigrid.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ services:

# filebeat
simplevm_filebeat:
image: docker.elastic.co/beats/filebeat:8.10.4
image: docker.elastic.co/beats/filebeat:8.11.1
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 @@ -27,7 +27,7 @@ services:
# filebeat
simplevm_client_filebeat:
container_name: simplevm_client_filebeat
image: docker.elastic.co/beats/filebeat:8.10.4
image: docker.elastic.co/beats/filebeat:8.11.1
env_file:
- .env
volumes:
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ python-keystoneclient==5.2.0
openstacksdk==1.5.0
deprecated==1.2.14
Click==8.1.7
ansible==8.5.0
ansible==5.1.0
flake8==6.1.0
paramiko==2.12.0
ruamel.yaml==0.18.5
Expand Down
6 changes: 3 additions & 3 deletions simple_vm_client/forc_connector/template/plays/change_key.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
- name: Echo Public Key to set
ansible.builtin.command: echo "${{ change_key_vars.key }}"
ansible.builtin.command: echo "{{ change_key_vars.key }}"
tags:
- always
- always
- name: Set user public Key and remove created public Key
authorized_key:
user: ubuntu
key: "{{ change_key_vars.key }}"
state: present
exclusive: True
tags:
- always
- always

0 comments on commit 945aa4e

Please sign in to comment.