Skip to content

Commit

Permalink
Merge pull request #469 from wireapp/release_2021_06_10
Browse files Browse the repository at this point in the history
Release 2021-06-10
  • Loading branch information
arianvp authored Jun 10, 2021
2 parents df43a17 + 340ff0a commit 8554eda
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 11 deletions.
12 changes: 12 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "gitsubmodule"
directory: "/"
schedule:
interval: "daily"


4 changes: 0 additions & 4 deletions .github/workflows/deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: cachix/install-nix-action@v12
with:
name: wire-server
signingKey: "${{ secrets.CACHIX_SIGNING_KEY }}"
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
- name: Niv update
run: |
nix run -f . niv -c niv update
Expand Down
3 changes: 0 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,6 @@
[submodule "ansible/roles-external/sft"]
path = ansible/roles-external/sft
url = https://github.com/wireapp/ansible-sft.git
[submodule "ansible/andrewrothstein.unarchive-deps"]
path = ansible/andrewrothstein.unarchive-deps
url = https://github.com/andrewrothstein/ansible-unarchive-deps
[submodule "ansible/roles-external/andrewrothstein.unarchive-deps"]
path = ansible/roles-external/andrewrothstein.unarchive-deps
url = https://github.com/andrewrothstein/ansible-unarchive-deps
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@



# 2021-06-10

## Fixes

* update Cassandra role (#455)
* fix automated Ansible deployment (#468)


# 2021-05-10

## Features
Expand Down
4 changes: 2 additions & 2 deletions ansible/cassandra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
- role: ansible-role-ntp
tags:
- ntp
when: not offline
when: not (offline|default(false))

- role: ansible-role-java
tags:
Expand All @@ -28,7 +28,7 @@
- role: ansible-ntp-verify
tags:
- ntp
when: not offline
when: not (offline|default(false))
tasks:
# these are optional debug tasks to see that the cluser has come up sucessfully
- shell: nodetool status
Expand Down
1 change: 0 additions & 1 deletion ansible/kubernetes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
become: no
tasks:
- delegate_to: localhost
when: not offline
block:
- name: "Checking if 'kubeconfig' file already exists"
stat:
Expand Down
1 change: 1 addition & 0 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ rec {
pkgs.coreutils
pkgs.bashInteractive
pkgs.openssh # ansible needs this too, even with paramiko
pkgs.sshpass # needed for password login

# The enivronment
env
Expand Down

0 comments on commit 8554eda

Please sign in to comment.