这个提交包含在:
Daniel Poelzleithner 2019-07-03 20:17:45 +02:00
父节点 bbcb8eef69
当前提交 c4d78e168b
共有 5 个文件被更改,包括 55 次插入8 次删除

2
.gitignore vendored
查看文件

@ -1 +1 @@
*.retry
.*.swp

查看文件

@ -2,7 +2,11 @@
server3.hq.c3d2.de
server4.hq.c3d2.de
server5.hq.c3d2.de
server6.hq.c3d2.de
server6.hq.c3d2.de
[hypervisor:vars]
ansible_connection=ssh
ansible_user=root
[kubernetes]
k8s-1.hq.c3d2.de

查看文件

@ -11,6 +11,14 @@
- iotop
- latencytop
- name: Adjust sysctl values
copy:
src: ../files/sysctl/zentralwerk.conf
dest: /etc/sysctl.d/zentralwerk.conf
- name: Apply sysctl
shell: "systemctl restart systemd-sysctl.service"
- name: Cloning oh-my-zsh
git:
repo=https://github.com/robbyrussell/oh-my-zsh

查看文件

@ -8,10 +8,10 @@
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
../../common.nix
../../users.nix
#./ncdc.nix
../../mpd.nix
../../lib/common/c3d2.nix
../../lib/users.nix
./ncdc.nix
../../lib/mpd.nix
];
boot.loader.systemd-boot.enable = true;
@ -69,6 +69,9 @@
gitAndTools.git-annex
gitAndTools.git
tmux
mpv
iotop
];
services.ceph = {

查看文件

@ -37,7 +37,7 @@
};
};
"mpd-index" =
"mpd-index" =
{ ... }:
{
imports = [
@ -60,5 +60,37 @@
storeKeysOnMachine = true;
};
};
"elastic1" =
{ ... }:
{
imports = [
hosts/containers/elastic/configuration.nix
];
deployment = {
targetHost = "2a02:8106:208:5282:e0d5:d8ff:fe54:586c";
storeKeysOnMachine = true;
};
};
"logging" =
{ ... }:
{
imports = [
hosts/containers/logging/configuration.nix
];
deployment = {
targetHost = "2a02:8106:208:5282:6811:edff:fe40:89c6";
storeKeysOnMachine = true;
};
};
"storage-ng" =
{ ... }:
{
imports = [
hosts/storage-ng/configuration.nix
];
deployment = {
targetHost = "2a02:8106:208:5201::20";
storeKeysOnMachine = true;
};
};
}