Compare commits

...

5 Commits

9 changed files with 42 additions and 18 deletions

2
.mise.toml Normal file
View File

@ -0,0 +1,2 @@
[tools]
ruby = "3.2.2"

View File

@ -1 +1,2 @@
VAULT_ADDR="http://192.168.10.142:8200"
HOME="/tmp"

View File

@ -5,3 +5,5 @@ include_recipe './ssh.rb'
include_recipe './vim.rb'
include_recipe './mc.rb'
include_recipe './mise.rb'

View File

@ -0,0 +1 @@
deb [signed-by=/etc/apt/keyrings/mise-archive-keyring.gpg arch=amd64] https://mise.jdx.dev/deb stable main

27
cookbooks/kazu634/mise.rb Normal file
View File

@ -0,0 +1,27 @@
directory '/etc/apt/keyrings/' do
owner 'root'
group 'root'
mode '0755'
end
execute 'wget -qO - https://mise.jdx.dev/gpg-key.pub | gpg --dearmor | tee /etc/apt/keyrings/mise-archive-keyring.gpg' do
not_if 'test -f /etc/apt/keyrings/mise-archive-keyring.gpg'
end
remote_file '/etc/apt/sources.list.d/mise.list' do
owner 'root'
group 'root'
mode '0644'
end
execute 'apt update' do
not_if 'which mise'
end
package 'mise'
# For Ruby installation:
%w( git curl libssl-dev libreadline-dev zlib1g-dev autoconf bison build-essential libyaml-dev libreadline-dev libncurses5-dev libffi-dev libgdbm-dev ).each do |p|
package p
end

View File

@ -0,0 +1 @@
deb [signed-by=/usr/share/keyrings/datadog-archive-keyring.gpg] https://apt.vector.dev/ stable vector-0

View File

@ -1,20 +1,13 @@
KEY='https://repositories.timber.io/public/vector/gpg.3543DB2D0A2BC4B8.key'
execute "wget -O /tmp/vector.key #{KEY}" do
not_if 'apt-key list | grep "1E46 C153"'
%w("DATADOG_APT_KEY_CURRENT.public" "DATADOG_APT_KEY_C0962C7D.public" "DATADOG_APT_KEY_F14F620E.public").each do |key|
execute "wget -O /tmp/#{key} https://keys.datadoghq.com/#{key}"
execute "cat /tmp/#{key} | gpg --import --batch --no-default-keyring --keyring /usr/share/keyrings/datadog-archive-keyring.gpg"
end
execute 'apt-key add /tmp/vector.key' do
not_if 'apt-key list | grep "1E46 C153"'
end
# Retrieve the Ubuntu code:
DIST = run_command('lsb_release -cs').stdout.chomp
# Deploy the `apt` sources:
template '/etc/apt/sources.list.d/timber-vector.list' do
action :create
variables(distribution: DIST)
remote_file '/etc/apt/sources.list.d/vector.list' do
owner 'root'
group 'root'
mode '0644'
end
execute 'apt update' do

View File

@ -1,3 +0,0 @@
deb https://repositories.timber.io/public/vector/deb/ubuntu <%= @distribution %> main
deb-src https://repositories.timber.io/public/vector/deb/ubuntu <%= @distribution %> main

View File

@ -1,6 +1,6 @@
#!/usr/bin/env rake
desc 'Invoke itamae command for the first time'
desc 'Invoke itamae command for AWS Environment for the first time'
task :ubuntu do
node = `ls -1 nodes/*.json | xargs -I % basename % .json | fzf`
node.chomp!