Commit Graph

651 Commits

Author SHA1 Message Date
Kazuhiro MUSASHI 48d0e3be76 Merge pull request 'Modify permission of `git` hook.' (#19) from modify-permission-for-git-hook into master
Reviewed-on: #19
2022-08-07 11:50:42 +00:00
Kazuhiro MUSASHI 9d4cccb842 Modify permission of `git` hook. 2022-08-07 20:49:37 +09:00
Kazuhiro MUSASHI ee410103ac Merge pull request 'Starshipを用いてプロンプトをカスタマイズする' (#18) from use-starship-for-prompt into master
Reviewed-on: #18
2022-08-07 11:45:31 +00:00
Kazuhiro MUSASHI 8f63c7bf3f Deploy config file for `starship`. 2022-08-07 20:43:15 +09:00
Kazuhiro MUSASHI a42048cc7d Install `starship`. 2022-08-07 20:43:15 +09:00
Kazuhiro MUSASHI 23dfb61e2d Change the `git` repository to `gitea.kazu634.com`. 2022-08-07 20:39:54 +09:00
Kazuhiro MUSASHI 907b2363ea Merge pull request 'Deploy `logrotate` config for `consul-template`.' (#17) from log-rotation-for-consul-template into master
Reviewed-on: #17
2022-08-06 12:35:42 +00:00
Kazuhiro MUSASHI ecf50c2bbc Deploy `logrotate` config for `consul-template`. 2022-08-06 21:34:48 +09:00
Kazuhiro MUSASHI f28d7eafc1 Merge pull request 'Ignore `nodes/*.json`:' (#16) from modify-gitignore into master
Reviewed-on: #16
2022-08-06 12:26:40 +00:00
Kazuhiro MUSASHI e46264453c Ignore `nodes/*.json`:
```
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,4 @@
 vendor
 *.swp
 .bundle/
-nodes/1*.json
+nodes/*.json
```
2022-08-06 21:25:30 +09:00
Kazuhiro MUSASHI 1ef33bd0c9 Merge pull request 'Create `digdag` role.' (#15) from digdag-role into master
Reviewed-on: #15
2022-08-06 12:23:24 +00:00
Kazuhiro MUSASHI f4e095733f Create `digdag` role. 2022-08-06 21:21:20 +09:00
Kazuhiro MUSASHI efb354244a Merge pull request 'Ubuntu 22.04にembulkをインストールする' (#14) from embulk-installation-for-jammy into master
Reviewed-on: #14
2022-07-18 13:23:39 +00:00
Kazuhiro MUSASHI 4daca5a1cc Install embulk version `0.9.24`:
```
--- a/cookbooks/embulk/attributes.rb
+++ b/cookbooks/embulk/attributes.rb
@@ -7,7 +7,7 @@ ipaddr = run_command(cmd).stdout.chomp
 node.reverse_merge!({
   'embulk' => {
     'base_binary_url' => 'https://github.com/embulk/embulk/releases/download/v',
-    'version' => '0.9.23',
+    'version' => '0.9.24',
     'extension' => '.jar',
     'install_path' => '/opt/embulk'
   }
```
2022-07-18 22:22:01 +09:00
Kazuhiro MUSASHI a661d3cf0d Install `OpenJDK 8` for Ubuntu 22.04. 2022-07-18 22:21:35 +09:00
Kazuhiro MUSASHI a86939bbb2 Merge pull request 'Add `-y` option flag to `add-apt-repository`' (#13) from add-y-flag-to-add-apt-repository into master
Reviewed-on: #13
2022-07-18 02:01:59 +00:00
Kazuhiro MUSASHI f7b2c6bad1 Add `-y` option flag to `add-apt-repository`
Due to the behaviour change, need to add `-y` option for
`add-apt-repository` command to operate without human interactions.
2022-07-18 10:57:33 +09:00
Kazuhiro MUSASHI bf2336ee74 Merge pull request 'Modify `consul-template` directories:' (#12) from modify-consul-template-directory into master
Reviewed-on: #12
2022-07-10 07:42:16 +00:00
Kazuhiro MUSASHI 91a0c444b5 Modify `consul-template` directories:
```
--- a/cookbooks/consul-template/setup.rb
+++ b/cookbooks/consul-template/setup.rb
@@ -1,6 +1,6 @@
 # Create `/var/log/vector`:
-%w( /etc/consul-template.d/conf /etc/consul-template.d/templates ).each do |d|
-  directory d do
+%w( conf templates tokens ).each do |d|
+  directory "/etc/consul-template.d/#{d}" do
     owner  'root'
     group  'root'
     mode   '0755'
```
2022-07-10 16:35:21 +09:00
Kazuhiro MUSASHI d1297a02c9 Merge pull request 'Modify indent.' (#11) from modify-indent into master
Reviewed-on: #11
2022-07-10 07:30:03 +00:00
Kazuhiro MUSASHI 956cf439ee Modify indent. 2022-07-10 16:28:49 +09:00
Kazuhiro MUSASHI b8d053126c Merge pull request 'Consul Connect Support' (#4) from consul-connect-support into master
Reviewed-on: #4
2022-07-10 07:26:33 +00:00
Kazuhiro MUSASHI 73f7ec44b7 Enable `Consul Connect` for client side. 2022-07-10 16:22:28 +09:00
Kazuhiro MUSASHI 37d51b5ed5 Create `/etc/vault.d/agent` & `/etc/vault.d/tokens` directory.
```
--- a/cookbooks/vault/default.rb
+++ b/cookbooks/vault/default.rb
@@ -2,6 +2,14 @@ include_recipe './attributes.rb'

 include_recipe './install.rb'

+%w( agent tokens ).each do |d|
+  directory "/etc/vault.d/#{d}" do
+    owner 'vault'
+    group 'vault'
+    mode '0755'
+  end
+end
+
 if node['vault']['manager']
   include_recipe './setup.rb'
 end
```
2022-07-10 16:22:28 +09:00
Kazuhiro MUSASHI 48702191fe Allow `Consul` gcp port to communicate.
```
--- a/cookbooks/consul/setup.rb
+++ b/cookbooks/consul/setup.rb
@@ -44,7 +44,7 @@ service 'consul' do
 end

 # iptables settings here:
-%w( 8300/tcp 8301/tcp 8301/udp 8500/tcp ).each do |port|
+%w( 8300/tcp 8301/tcp 8301/udp 8500/tcp 8502/tcp ).each do |port|
   execute "ufw allow #{port}" do
     user 'root'
```
2022-07-10 16:22:28 +09:00
Kazuhiro MUSASHI c15c2f3de8 Start `Consul` after `Vault` generates the jwt token.
```
--- a/cookbooks/consul/files/etc/systemd/system/consul.service
+++ b/cookbooks/consul/files/etc/systemd/system/consul.service
@@ -2,7 +2,7 @@
 Description="HashiCorp Consul - A service mesh solution"
 Documentation=https://www.consul.io/
 Requires=network-online.target
-After=network-online.target
+After=network-online.target vault-agent-consul-jwt.target
 ConditionFileNotEmpty=/etc/consul.d/consul.hcl

 [Service]
```
2022-07-10 16:22:28 +09:00
Kazuhiro MUSASHI 94489f71d5 Modify `consul.hcl` template to support `Consul Connect`. 2022-07-10 16:22:28 +09:00
Kazuhiro MUSASHI 43fbbe1f18 Support `Ubuntu 22.04`. 2022-07-10 14:32:35 +09:00
Kazuhiro MUSASHI cb66b7eed3 Install `Vault` before `Consul`. 2022-07-10 14:32:18 +09:00
Kazuhiro MUSASHI 8193d651a8 Merge pull request 'node jsonファイルのサンプルを追加' (#10) from add-example-of-node-json into master
Reviewed-on: #10
2022-07-03 12:47:13 +00:00
Kazuhiro MUSASHI 7beddd8b59 Add `node` json example. 2022-07-03 21:46:04 +09:00
Kazuhiro MUSASHI c638d97a55 Manage `node` example json under `git`. 2022-07-03 21:46:04 +09:00
Kazuhiro MUSASHI 0d1bcb5108 Merge pull request 'Modify the logic to decide the download URL.' (#9) from modify-logic-to-decide-url into master
Reviewed-on: #9
2022-07-03 12:37:40 +00:00
Kazuhiro MUSASHI ba7d01f16d Modify the logic to decide the download URL. 2022-07-03 21:36:19 +09:00
Kazuhiro MUSASHI 971e1adf8e Merge pull request 'Modify Github repository URI from `git` to `https`.' (#8) from modify-github-repositories into master
Reviewed-on: #8
2022-07-03 12:32:51 +00:00
Kazuhiro MUSASHI 8f09026fed Modify Github repository URI from `git` to `https`. 2022-07-03 21:29:46 +09:00
Kazuhiro MUSASHI 569423ee2d Merge pull request 'Bump gems' versions.' (#7) from bump-gems-version into master
Reviewed-on: #7
2022-07-03 12:27:30 +00:00
Kazuhiro MUSASHI 2d165906e6 Bump gems' versions. 2022-07-03 21:26:20 +09:00
Kazuhiro MUSASHI 52ce9574d7 Merge pull request 'Bump `ruby` version.' (#6) from bump-ruby-version into master
Reviewed-on: #6
2022-07-03 12:25:34 +00:00
Kazuhiro MUSASHI 195b85a32c Bump `ruby` version. 2022-07-03 21:23:53 +09:00
Kazuhiro MUSASHI cdbd937455 Merge pull request 'Deploy `/etc/logrotate.d/vault`.' (#5) from vault-audit-log-rotation into master
Reviewed-on: #5
2022-07-02 11:40:31 +00:00
Kazuhiro MUSASHI 4455fe6b62 Deploy `/etc/logrotate.d/vault`. 2022-07-02 11:40:31 +00:00
Kazuhiro MUSASHI 6ed1e9cf90 Merge pull request 'NomadでConsul Connectジョブを利用できるようにする' (#3) from nomad-modify into master
Reviewed-on: #3
2022-03-14 14:22:17 +00:00
Kazuhiro MUSASHI 4a57c21614 Deploy example `Consul Connect` job. 2022-03-14 23:19:25 +09:00
Kazuhiro MUSASHI ef40d3dc01 Create /etc/nomad.d/jobs 2022-03-14 23:19:25 +09:00
Kazuhiro MUSASHI 9a5a78d657 Deploy `/etc/nomad.d/policies/anonymous.hcl`. 2022-03-14 23:19:25 +09:00
Kazuhiro MUSASHI ce7a80db7a Create `/etc/nomad.d/policies/` directory. 2022-03-14 23:17:44 +09:00
Kazuhiro MUSASHI a882f52b3f Delete `shared_dir.rb`. 2022-03-14 23:17:32 +09:00
Kazuhiro MUSASHI 64066ab78f Add `consul` stanza. 2022-03-14 23:17:12 +09:00
Kazuhiro MUSASHI 34a2f107e7 Merge pull request 'Vaultサーバのセットアップファイルのデプロイ' (#2) from vault-server into master
Reviewed-on: #2
2022-03-13 12:50:29 +00:00