Compare commits
66 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 765d0b080e | |||
| 4cd6c41254 | |||
|
ec73dd5b57
|
|||
|
850db344b7
|
|||
|
99e8259696
|
|||
| 7810f9f373 | |||
| c167c1861f | |||
|
96bab62af1
|
|||
|
2169e7904c
|
|||
|
5a4905aa97
|
|||
|
21e31440a7
|
|||
|
894ae3f77e
|
|||
|
8afe2ad05d
|
|||
|
ef6e4e3319
|
|||
|
f8ce544452
|
|||
|
36e9ea8a01
|
|||
|
2c2780a9f0
|
|||
|
6bcdd3f4d6
|
|||
|
abc3f7a0cd
|
|||
|
6d35c0a415
|
|||
|
be0d7105d3
|
|||
|
b24a6107d2
|
|||
|
1f7a1d0909
|
|||
|
ba361ad09f
|
|||
|
94be0a3543
|
|||
| 29fb3ae9c9 | |||
| 3a1c3e20b8 | |||
| d7782ba41e | |||
|
a3be57afbc
|
|||
|
22d459b558
|
|||
|
5ed5af6d50
|
|||
|
9bf21e8317
|
|||
|
aaed9a56d1
|
|||
|
41e6b29b97
|
|||
|
f0314e0b99
|
|||
|
ac4fb0c9ca
|
|||
|
d5e3d62522
|
|||
|
061880536b
|
|||
|
9de37cde96
|
|||
|
64d5d34d85
|
|||
|
db9177c9c6
|
|||
|
c92f9157a5
|
|||
|
a89db454d0
|
|||
|
fddcd4899e
|
|||
|
8e11df4544
|
|||
|
0020677ab2
|
|||
|
09412f69e8
|
|||
|
bc3f291bd2
|
|||
|
6583cd7010
|
|||
|
290af8177a
|
|||
|
2cb5540a7b
|
|||
|
002ad2ca62
|
|||
|
7710231fc4
|
|||
| d68deb96e9 | |||
|
01cdd000cb
|
|||
|
ea8e2de70a
|
|||
|
8ad3674c4d
|
|||
|
25192ad3ce
|
|||
|
55b6e24f1e
|
|||
|
a23c7d536a
|
|||
|
d492cd18cc
|
|||
|
161b78be97
|
|||
|
6e83384da5
|
|||
|
be8278fbdc
|
|||
| ff3f05452f | |||
| 1fb66092fc |
@@ -10,3 +10,6 @@
|
|||||||
[submodule "site-cookbooks/deno"]
|
[submodule "site-cookbooks/deno"]
|
||||||
path = site-cookbooks/deno
|
path = site-cookbooks/deno
|
||||||
url = git@gitea.kosmos.org:kosmos/deno-cookbook.git
|
url = git@gitea.kosmos.org:kosmos/deno-cookbook.git
|
||||||
|
[submodule "site-cookbooks/blossom"]
|
||||||
|
path = site-cookbooks/blossom
|
||||||
|
url = git@gitea.kosmos.org:kosmos/blossom-cookbook.git
|
||||||
|
|||||||
@@ -0,0 +1,41 @@
|
|||||||
|
# AGENTS.md
|
||||||
|
|
||||||
|
Welcome, AI Agent! This file contains essential context and rules for interacting with the Kosmos Chef repository. Read this carefully before planning or executing any changes.
|
||||||
|
|
||||||
|
## 🏢 Project Overview
|
||||||
|
This repository contains the infrastructure automation code used by Kosmos to provision and configure bare metal servers (KVM hosts) and Ubuntu virtual machines (KVM guests).
|
||||||
|
|
||||||
|
We use **Chef Infra**, managed locally via **Knife Zero** (agentless Chef), and **Berkshelf** for dependency management.
|
||||||
|
|
||||||
|
## 📂 Directory Structure & Rules
|
||||||
|
|
||||||
|
* **`site-cookbooks/`**: 🟢 **EDITABLE.** This directory contains all custom, internal cookbooks written specifically for Kosmos services (e.g., `kosmos-postgresql`, `kosmos_gitea`, `kosmos-mastodon`). *Active development happens here.*
|
||||||
|
* **`cookbooks/`**: 🔴 **DO NOT EDIT.** This directory contains third-party/community cookbooks that are vendored. These are managed by Berkshelf. Modifying them directly will result in lost changes.
|
||||||
|
* **`roles/`**: 🟢 **EDITABLE.** Contains Chef roles written in Ruby (e.g., `base.rb`, `kvm_guest.rb`, `postgresql_primary.rb`). These define run-lists and role-specific default attributes for servers.
|
||||||
|
* **`environments/`**: Contains Chef environment definitions (like `production.rb`).
|
||||||
|
* **`data_bags/`**: Contains data bag configurations, often encrypted. Be cautious and do not expose secrets. (Note: Agents should not manage data bag secrets directly unless provided the `.chef/encrypted_data_bag_secret`).
|
||||||
|
* **`nodes/`**: Contains JSON state files for bootstrapped nodes. *Agents typically do not edit these directly unless cleaning up a deleted node.*
|
||||||
|
* **`Berksfile`**: Defines community cookbook dependencies.
|
||||||
|
* **`Vagrantfile` / `.kitchen/`**: Used for local virtualization and integration testing.
|
||||||
|
|
||||||
|
## 🛠️ Tooling & Workflows
|
||||||
|
|
||||||
|
1. **Dependency Management (Berkshelf)**
|
||||||
|
If a new community cookbook is required:
|
||||||
|
- Add it to the `Berksfile` at the root.
|
||||||
|
- Instruct the user to run `berks install` and `berks vendor cookbooks/ --delete` (or run it via the `bash` tool if permitted).
|
||||||
|
|
||||||
|
2. **Provisioning (Knife Zero)**
|
||||||
|
- Bootstrapping and converging nodes is done using `knife zero`.
|
||||||
|
- *Example:* `knife zero converge name:server-name.kosmos.org`
|
||||||
|
|
||||||
|
3. **Code Style & Conventions**
|
||||||
|
- Chef recipes, resources, and roles are written in **Ruby**.
|
||||||
|
- Follow standard Chef and Ruby (RuboCop) idioms. Look at neighboring files in `site-cookbooks/` or `roles/` to match formatting and naming conventions.
|
||||||
|
|
||||||
|
## 🚨 Core Directives for AI Agents
|
||||||
|
|
||||||
|
1. **Infrastructure as Code**: Manual server configurations are highly discouraged. All changes must be codified in a cookbook or role.
|
||||||
|
2. **Test Safety Nets**: Look for `.kitchen.yml` within specific `site-cookbooks/<name>` to understand if local integration tests are available.
|
||||||
|
3. **No Assumptions**: Do not assume standard test commands. Check `README.md` and repository config files first.
|
||||||
|
4. **Secret Handling**: Avoid hardcoding passwords or API keys in recipes or roles. Assume sensitive information is managed via Chef `data_bags`.
|
||||||
@@ -24,6 +24,7 @@ cookbook 'composer', '~> 2.7.0'
|
|||||||
cookbook 'fail2ban', '~> 7.0.4'
|
cookbook 'fail2ban', '~> 7.0.4'
|
||||||
cookbook 'git', '~> 10.0.0'
|
cookbook 'git', '~> 10.0.0'
|
||||||
cookbook 'golang', '~> 5.3.1'
|
cookbook 'golang', '~> 5.3.1'
|
||||||
|
cookbook 'homebrew', '>= 6.0.0'
|
||||||
cookbook 'hostname', '= 0.4.2'
|
cookbook 'hostname', '= 0.4.2'
|
||||||
cookbook 'hostsfile', '~> 3.0.1'
|
cookbook 'hostsfile', '~> 3.0.1'
|
||||||
cookbook 'java', '~> 4.3.0'
|
cookbook 'java', '~> 4.3.0'
|
||||||
@@ -40,6 +41,7 @@ cookbook 'ulimit', '~> 1.0.0'
|
|||||||
cookbook 'users', '~> 5.3.1'
|
cookbook 'users', '~> 5.3.1'
|
||||||
cookbook 'zerotier', '~> 1.0.7'
|
cookbook 'zerotier', '~> 1.0.7'
|
||||||
cookbook 'unbound', '~> 3.0.2'
|
cookbook 'unbound', '~> 3.0.2'
|
||||||
|
cookbook 'prometheus', '~> 1.0.0'
|
||||||
|
|
||||||
# openresty dependency
|
# openresty dependency
|
||||||
cookbook 'jemalloc', '~> 0.1.7'
|
cookbook 'jemalloc', '~> 0.1.7'
|
||||||
|
|||||||
+5
-1
@@ -8,6 +8,7 @@ DEPENDENCIES
|
|||||||
firewall (~> 6.2.16)
|
firewall (~> 6.2.16)
|
||||||
git (~> 10.0.0)
|
git (~> 10.0.0)
|
||||||
golang (~> 5.3.1)
|
golang (~> 5.3.1)
|
||||||
|
homebrew (>= 6.0.0)
|
||||||
hostname (= 0.4.2)
|
hostname (= 0.4.2)
|
||||||
hostsfile (~> 3.0.1)
|
hostsfile (~> 3.0.1)
|
||||||
ipfs
|
ipfs
|
||||||
@@ -32,6 +33,7 @@ DEPENDENCIES
|
|||||||
git: https://gitea.kosmos.org/kosmos/postfix-cookbook.git
|
git: https://gitea.kosmos.org/kosmos/postfix-cookbook.git
|
||||||
revision: dd6598572a775ae73f17527260ec8097b52d385b
|
revision: dd6598572a775ae73f17527260ec8097b52d385b
|
||||||
ref: bugfix/
|
ref: bugfix/
|
||||||
|
prometheus (~> 1.0.0)
|
||||||
redisio (~> 6.4.1)
|
redisio (~> 6.4.1)
|
||||||
ruby_build (~> 2.5.0)
|
ruby_build (~> 2.5.0)
|
||||||
timezone_iii (= 1.0.4)
|
timezone_iii (= 1.0.4)
|
||||||
@@ -62,7 +64,7 @@ GRAPH
|
|||||||
git (10.0.0)
|
git (10.0.0)
|
||||||
golang (5.3.1)
|
golang (5.3.1)
|
||||||
ark (>= 6.0)
|
ark (>= 6.0)
|
||||||
homebrew (5.4.1)
|
homebrew (6.0.2)
|
||||||
hostname (0.4.2)
|
hostname (0.4.2)
|
||||||
hostsfile (>= 0.0.0)
|
hostsfile (>= 0.0.0)
|
||||||
hostsfile (3.0.1)
|
hostsfile (3.0.1)
|
||||||
@@ -94,6 +96,8 @@ GRAPH
|
|||||||
php (8.0.1)
|
php (8.0.1)
|
||||||
yum-epel (>= 0.0.0)
|
yum-epel (>= 0.0.0)
|
||||||
postfix (6.4.1)
|
postfix (6.4.1)
|
||||||
|
prometheus (1.0.0)
|
||||||
|
ark (>= 0.0.0)
|
||||||
redisio (6.4.1)
|
redisio (6.4.1)
|
||||||
selinux (>= 0.0.0)
|
selinux (>= 0.0.0)
|
||||||
ruby_build (2.5.0)
|
ruby_build (2.5.0)
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
source 'https://rubygems.org'
|
source 'https://rubygems.org'
|
||||||
|
|
||||||
gem 'knife-zero', '>= 2.4.2'
|
gem 'knife-zero', '~> 2.6.0'
|
||||||
|
|||||||
+306
-182
@@ -1,264 +1,399 @@
|
|||||||
GEM
|
GEM
|
||||||
remote: https://rubygems.org/
|
remote: https://rubygems.org/
|
||||||
specs:
|
specs:
|
||||||
addressable (2.8.0)
|
abbrev (0.1.2)
|
||||||
public_suffix (>= 2.0.2, < 5.0)
|
addressable (2.9.0)
|
||||||
aws-eventstream (1.2.0)
|
public_suffix (>= 2.0.2, < 8.0)
|
||||||
aws-partitions (1.551.0)
|
ast (2.4.3)
|
||||||
aws-sdk-core (3.125.6)
|
aws-eventstream (1.4.0)
|
||||||
aws-eventstream (~> 1, >= 1.0.2)
|
aws-partitions (1.1263.0)
|
||||||
aws-partitions (~> 1, >= 1.525.0)
|
aws-sdk-core (3.252.0)
|
||||||
aws-sigv4 (~> 1.1)
|
aws-eventstream (~> 1, >= 1.3.0)
|
||||||
jmespath (~> 1.0)
|
aws-partitions (~> 1, >= 1.992.0)
|
||||||
aws-sdk-kms (1.53.0)
|
aws-sigv4 (~> 1.9)
|
||||||
aws-sdk-core (~> 3, >= 3.125.0)
|
base64
|
||||||
aws-sigv4 (~> 1.1)
|
bigdecimal
|
||||||
aws-sdk-s3 (1.111.3)
|
jmespath (~> 1, >= 1.6.1)
|
||||||
aws-sdk-core (~> 3, >= 3.125.0)
|
logger
|
||||||
|
aws-sdk-kms (1.129.0)
|
||||||
|
aws-sdk-core (~> 3, >= 3.248.0)
|
||||||
|
aws-sigv4 (~> 1.5)
|
||||||
|
aws-sdk-s3 (1.226.0)
|
||||||
|
aws-sdk-core (~> 3, >= 3.248.0)
|
||||||
aws-sdk-kms (~> 1)
|
aws-sdk-kms (~> 1)
|
||||||
aws-sigv4 (~> 1.4)
|
aws-sigv4 (~> 1.5)
|
||||||
aws-sdk-secretsmanager (1.56.0)
|
aws-sdk-secretsmanager (1.133.0)
|
||||||
aws-sdk-core (~> 3, >= 3.125.0)
|
aws-sdk-core (~> 3, >= 3.248.0)
|
||||||
aws-sigv4 (~> 1.1)
|
aws-sigv4 (~> 1.5)
|
||||||
aws-sigv4 (1.4.0)
|
aws-sigv4 (1.12.1)
|
||||||
aws-eventstream (~> 1, >= 1.0.2)
|
aws-eventstream (~> 1, >= 1.0.2)
|
||||||
bcrypt_pbkdf (1.1.0)
|
base64 (0.3.0)
|
||||||
builder (3.2.4)
|
bcrypt_pbkdf (1.1.2)
|
||||||
chef (17.9.42)
|
bcrypt_pbkdf (1.1.2-arm64-darwin)
|
||||||
|
bcrypt_pbkdf (1.1.2-x86_64-darwin)
|
||||||
|
benchmark (0.5.0)
|
||||||
|
bigdecimal (4.1.2)
|
||||||
|
builder (3.3.0)
|
||||||
|
chef (19.3.15)
|
||||||
addressable
|
addressable
|
||||||
aws-sdk-s3 (~> 1.91)
|
aws-sdk-s3 (~> 1.91)
|
||||||
aws-sdk-secretsmanager (~> 1.46)
|
aws-sdk-secretsmanager (~> 1.46)
|
||||||
chef-config (= 17.9.42)
|
bcrypt_pbkdf (~> 1.0)
|
||||||
chef-utils (= 17.9.42)
|
chef-config (= 19.3.15)
|
||||||
|
chef-licensing (~> 1.3)
|
||||||
|
chef-utils (= 19.3.15)
|
||||||
chef-vault
|
chef-vault
|
||||||
chef-zero (>= 14.0.11)
|
chef-zero (~> 15.1.0)
|
||||||
corefoundation (~> 0.3.4)
|
corefoundation (~> 0.3.4)
|
||||||
diff-lcs (>= 1.2.4, < 1.4.0)
|
csv (~> 3.3.5)
|
||||||
|
diff-lcs (~> 1.6.0)
|
||||||
|
ed25519 (~> 1.2)
|
||||||
erubis (~> 2.7)
|
erubis (~> 2.7)
|
||||||
ffi (>= 1.5.0)
|
ffi (>= 1.15.5, < 1.18.0)
|
||||||
ffi-libarchive (~> 1.0, >= 1.0.3)
|
ffi-libarchive (~> 1.0, >= 1.0.3)
|
||||||
ffi-yajl (~> 2.2)
|
ffi-yajl (>= 2.2, < 4.0)
|
||||||
iniparse (~> 1.4)
|
iniparse (~> 1.4)
|
||||||
inspec-core (~> 4.23)
|
inspec-core (~> 7.0.107)
|
||||||
license-acceptance (>= 1.0.5, < 3)
|
license-acceptance (>= 1.0.5, < 3)
|
||||||
mixlib-archive (>= 0.4, < 2.0)
|
mixlib-archive (>= 0.4, < 2.0)
|
||||||
mixlib-authentication (>= 2.1, < 4)
|
mixlib-authentication (>= 2.1, < 4)
|
||||||
mixlib-cli (>= 2.1.1, < 3.0)
|
mixlib-cli (>= 2.1.1, < 3.0)
|
||||||
mixlib-log (>= 2.0.3, < 4.0)
|
mixlib-log (>= 2.0.3, < 4.0)
|
||||||
mixlib-shellout (>= 3.1.1, < 4.0)
|
mixlib-shellout (>= 3.3.8, < 3.5.0)
|
||||||
net-sftp (>= 2.1.2, < 4.0)
|
net-ftp
|
||||||
ohai (~> 17.0)
|
net-sftp (>= 2.1.2, < 5.0)
|
||||||
|
ohai (~> 19.0)
|
||||||
plist (~> 3.2)
|
plist (~> 3.2)
|
||||||
proxifier (~> 1.0)
|
proxifier2 (~> 1.1)
|
||||||
|
syslog
|
||||||
syslog-logger (~> 1.6)
|
syslog-logger (~> 1.6)
|
||||||
train-core (~> 3.2, >= 3.2.28)
|
train-core (~> 3.13, >= 3.13.4)
|
||||||
train-winrm (>= 0.2.5)
|
train-rest (>= 0.4.1)
|
||||||
uuidtools (>= 2.1.5, < 3.0)
|
train-winrm (>= 0.2.17)
|
||||||
vault (~> 0.16)
|
unf_ext (~> 0.0.9.1)
|
||||||
chef-config (17.9.42)
|
uri (>= 1.0.4, < 1.2.0)
|
||||||
|
vault (>= 0.18.2, < 0.21.0)
|
||||||
|
chef-config (19.3.15)
|
||||||
addressable
|
addressable
|
||||||
chef-utils (= 17.9.42)
|
chef-utils (= 19.3.15)
|
||||||
fuzzyurl
|
fuzzyurl
|
||||||
mixlib-config (>= 2.2.12, < 4.0)
|
mixlib-config (>= 2.2.12, < 4.0)
|
||||||
mixlib-shellout (>= 2.0, < 4.0)
|
mixlib-shellout (>= 2.0, < 4.0)
|
||||||
tomlrb (~> 1.2)
|
racc
|
||||||
|
tomlrb (>= 1.2, < 3.0)
|
||||||
|
chef-gyoku (1.5.0)
|
||||||
|
builder (>= 2.1.2)
|
||||||
|
rexml (~> 3.4)
|
||||||
|
chef-licensing (1.4.1)
|
||||||
|
chef-config (>= 15)
|
||||||
|
faraday (>= 1, < 3)
|
||||||
|
faraday-http-cache
|
||||||
|
mixlib-log (~> 3.0)
|
||||||
|
ostruct (~> 0.6.0)
|
||||||
|
pstore (~> 0.1.1)
|
||||||
|
tty-prompt (~> 0.23)
|
||||||
|
tty-spinner (~> 0.9.3)
|
||||||
chef-telemetry (1.1.1)
|
chef-telemetry (1.1.1)
|
||||||
chef-config
|
chef-config
|
||||||
concurrent-ruby (~> 1.0)
|
concurrent-ruby (~> 1.0)
|
||||||
chef-utils (17.9.42)
|
chef-utils (19.3.15)
|
||||||
concurrent-ruby
|
concurrent-ruby
|
||||||
chef-vault (4.1.5)
|
chef-vault (4.2.12)
|
||||||
chef-zero (15.0.11)
|
syslog (~> 0.3)
|
||||||
ffi-yajl (~> 2.2)
|
chef-winrm (2.5.0)
|
||||||
hashie (>= 2.0, < 5.0)
|
builder (>= 2.1.2)
|
||||||
|
chef-gyoku (~> 1.5)
|
||||||
|
erubi (~> 1.8)
|
||||||
|
gssapi (~> 1.2)
|
||||||
|
httpclient (~> 2.2, >= 2.2.0.2)
|
||||||
|
logging (>= 1.6.1, < 3.0)
|
||||||
|
nori (~> 2.7)
|
||||||
|
rexml (>= 3.4.2, < 4.0)
|
||||||
|
rubyntlm (~> 0.6.0, >= 0.6.3)
|
||||||
|
chef-winrm-elevated (1.2.5)
|
||||||
|
chef-winrm (>= 2.3.11)
|
||||||
|
chef-winrm-fs (>= 1.3.7)
|
||||||
|
erubi (~> 1.8)
|
||||||
|
chef-winrm-fs (1.4.2)
|
||||||
|
benchmark (~> 0.5.0)
|
||||||
|
chef-winrm (~> 2.4)
|
||||||
|
csv (~> 3.3)
|
||||||
|
erubi (>= 1.7)
|
||||||
|
logging (>= 1.6.1, < 3.0)
|
||||||
|
rubyzip (~> 2.0)
|
||||||
|
chef-zero (15.1.11)
|
||||||
|
ffi-yajl (>= 2.2, < 4.0)
|
||||||
|
hashie (>= 2.0, < 6.0)
|
||||||
mixlib-log (>= 2.0, < 4.0)
|
mixlib-log (>= 2.0, < 4.0)
|
||||||
rack (~> 2.0, >= 2.0.6)
|
rack (~> 3.2, >= 3.2.6)
|
||||||
uuidtools (~> 2.1)
|
rackup (~> 2.3, >= 2.3.1)
|
||||||
|
uuidtools (>= 2.1, < 4.0)
|
||||||
webrick
|
webrick
|
||||||
coderay (1.1.3)
|
coderay (1.1.3)
|
||||||
concurrent-ruby (1.1.9)
|
concurrent-ruby (1.3.7)
|
||||||
corefoundation (0.3.10)
|
connection_pool (2.5.5)
|
||||||
|
cookstyle (8.7.6)
|
||||||
|
rubocop (= 1.86.1)
|
||||||
|
corefoundation (0.3.19)
|
||||||
ffi (>= 1.15.0)
|
ffi (>= 1.15.0)
|
||||||
diff-lcs (1.3)
|
csv (3.3.5)
|
||||||
erubi (1.10.0)
|
date (3.5.1)
|
||||||
|
diff-lcs (1.6.2)
|
||||||
|
domain_name (0.6.20240107)
|
||||||
|
ed25519 (1.4.0)
|
||||||
|
erubi (1.13.1)
|
||||||
erubis (2.7.0)
|
erubis (2.7.0)
|
||||||
faraday (1.4.3)
|
faraday (2.14.3)
|
||||||
faraday-em_http (~> 1.0)
|
faraday-net_http (>= 2.0, < 3.5)
|
||||||
faraday-em_synchrony (~> 1.0)
|
json
|
||||||
faraday-excon (~> 1.1)
|
logger
|
||||||
faraday-net_http (~> 1.0)
|
faraday-follow_redirects (0.5.0)
|
||||||
faraday-net_http_persistent (~> 1.1)
|
faraday (>= 1, < 3)
|
||||||
multipart-post (>= 1.2, < 3)
|
faraday-http-cache (2.5.1)
|
||||||
ruby2_keywords (>= 0.0.4)
|
faraday (>= 0.8)
|
||||||
faraday-em_http (1.0.0)
|
faraday-net_http (3.4.4)
|
||||||
faraday-em_synchrony (1.0.0)
|
net-http (~> 0.5)
|
||||||
faraday-excon (1.1.0)
|
ffi (1.17.4-arm64-darwin)
|
||||||
faraday-net_http (1.0.1)
|
ffi (1.17.4-x86_64-darwin)
|
||||||
faraday-net_http_persistent (1.2.0)
|
ffi (1.17.4-x86_64-linux-gnu)
|
||||||
faraday_middleware (1.2.0)
|
ffi-libarchive (1.1.14)
|
||||||
faraday (~> 1.0)
|
|
||||||
ffi (1.15.5)
|
|
||||||
ffi-libarchive (1.1.3)
|
|
||||||
ffi (~> 1.0)
|
ffi (~> 1.0)
|
||||||
ffi-yajl (2.4.0)
|
ffi-yajl (2.7.11)
|
||||||
libyajl2 (>= 1.2)
|
libyajl2 (>= 2.1)
|
||||||
fuzzyurl (0.9.0)
|
fuzzyurl (0.9.0)
|
||||||
gssapi (1.3.1)
|
gssapi (1.3.1)
|
||||||
ffi (>= 1.0.1)
|
ffi (>= 1.0.1)
|
||||||
gyoku (1.3.1)
|
hashie (5.1.0)
|
||||||
builder (>= 2.1.2)
|
logger
|
||||||
hashie (4.1.0)
|
highline (3.1.2)
|
||||||
highline (2.0.3)
|
reline
|
||||||
httpclient (2.8.3)
|
http-accept (1.7.0)
|
||||||
|
http-cookie (1.1.6)
|
||||||
|
domain_name (~> 0.5)
|
||||||
|
httpclient (2.9.0)
|
||||||
|
mutex_m
|
||||||
iniparse (1.5.0)
|
iniparse (1.5.0)
|
||||||
inspec-core (4.52.9)
|
inspec-core (7.0.107)
|
||||||
addressable (~> 2.4)
|
addressable (~> 2.4)
|
||||||
|
chef-licensing (>= 1.2.0)
|
||||||
chef-telemetry (~> 1.0, >= 1.0.8)
|
chef-telemetry (~> 1.0, >= 1.0.8)
|
||||||
faraday (>= 0.9.0, < 1.5)
|
cookstyle
|
||||||
faraday_middleware (~> 1.0)
|
csv (~> 3.0)
|
||||||
hashie (>= 3.4, < 5.0)
|
faraday (>= 1, < 3)
|
||||||
|
faraday-follow_redirects (~> 0.3)
|
||||||
|
hashie (>= 3.4, < 6.0)
|
||||||
license-acceptance (>= 0.2.13, < 3.0)
|
license-acceptance (>= 0.2.13, < 3.0)
|
||||||
method_source (>= 0.8, < 2.0)
|
method_source (>= 0.8, < 2.0)
|
||||||
mixlib-log (~> 3.0)
|
mixlib-log (~> 3.0)
|
||||||
multipart-post (~> 2.0)
|
multipart-post (~> 2.0)
|
||||||
|
ostruct (>= 0.1, < 0.7)
|
||||||
parallel (~> 1.9)
|
parallel (~> 1.9)
|
||||||
parslet (>= 1.5, < 2.0)
|
parslet (>= 1.5, < 3.0)
|
||||||
pry (~> 0.13)
|
pry (~> 0.13)
|
||||||
rspec (>= 3.9, < 3.11)
|
rspec (>= 3.9, <= 3.14)
|
||||||
rspec-its (~> 1.2)
|
rspec-its (>= 1.2, < 3.0)
|
||||||
rubyzip (>= 1.2.2, < 3.0)
|
rubyzip (>= 1.2.2, < 4.0)
|
||||||
semverse (~> 3.0)
|
semverse (~> 3.0)
|
||||||
sslshake (~> 1.2)
|
sslshake (~> 1.2)
|
||||||
thor (>= 0.20, < 2.0)
|
syslog (~> 0.1)
|
||||||
tomlrb (>= 1.2, < 2.1)
|
thor (>= 0.20, < 1.5.0)
|
||||||
train-core (~> 3.0)
|
tomlrb (>= 1.3, < 2.1)
|
||||||
|
train-core (~> 3.16, >= 3.16.1)
|
||||||
tty-prompt (~> 0.17)
|
tty-prompt (~> 0.17)
|
||||||
tty-table (~> 0.10)
|
tty-table (~> 0.10)
|
||||||
|
io-console (0.8.2)
|
||||||
ipaddress (0.8.3)
|
ipaddress (0.8.3)
|
||||||
jmespath (1.5.0)
|
jmespath (1.6.2)
|
||||||
json (2.6.1)
|
json (2.20.0)
|
||||||
knife (17.9.26)
|
knife (19.0.134)
|
||||||
|
abbrev
|
||||||
bcrypt_pbkdf (~> 1.1)
|
bcrypt_pbkdf (~> 1.1)
|
||||||
chef (>= 17)
|
chef-licensing (~> 1.2)
|
||||||
chef-config (>= 17)
|
|
||||||
chef-utils (>= 17)
|
|
||||||
chef-vault
|
chef-vault
|
||||||
|
ed25519 (>= 1.2, < 2.0)
|
||||||
erubis (~> 2.7)
|
erubis (~> 2.7)
|
||||||
ffi (>= 1.15)
|
ffi (>= 1.15, < 1.18.0)
|
||||||
ffi-yajl (~> 2.2)
|
ffi-yajl (>= 2.2, < 3.0)
|
||||||
highline (>= 1.6.9, < 3)
|
highline (>= 1.6.9, < 4)
|
||||||
license-acceptance (>= 1.0.5, < 3)
|
license-acceptance (>= 1.0.5, < 3)
|
||||||
mixlib-archive (>= 0.4, < 2.0)
|
mixlib-archive (>= 0.4, < 2.0)
|
||||||
mixlib-cli (>= 2.1.1, < 3.0)
|
mixlib-cli (>= 2.1.1, < 3.0)
|
||||||
net-ssh (>= 5.1, < 7)
|
net-ssh (>= 5.1, < 8)
|
||||||
net-ssh-multi (~> 1.2, >= 1.2.1)
|
net-ssh-multi (~> 1.2, >= 1.2.1)
|
||||||
ohai (~> 17.0)
|
|
||||||
pastel
|
pastel
|
||||||
train-core (~> 3.2, >= 3.2.28)
|
proxifier2 (~> 1.1)
|
||||||
train-winrm (>= 0.2.5)
|
train-core (~> 3.13, >= 3.13.4)
|
||||||
|
train-winrm (>= 0.2.17)
|
||||||
tty-prompt (~> 0.21)
|
tty-prompt (~> 0.21)
|
||||||
tty-screen (~> 0.6)
|
tty-screen (~> 0.6)
|
||||||
tty-table (~> 0.11)
|
tty-table (~> 0.11)
|
||||||
knife-zero (2.4.2)
|
knife-zero (2.6.0)
|
||||||
chef (>= 15.0)
|
chef (>= 16.6)
|
||||||
knife (>= 17.0)
|
knife (>= 17.0)
|
||||||
|
language_server-protocol (3.17.0.5)
|
||||||
libyajl2 (2.1.0)
|
libyajl2 (2.1.0)
|
||||||
license-acceptance (2.1.13)
|
license-acceptance (2.1.13)
|
||||||
pastel (~> 0.7)
|
pastel (~> 0.7)
|
||||||
tomlrb (>= 1.2, < 3.0)
|
tomlrb (>= 1.2, < 3.0)
|
||||||
tty-box (~> 0.6)
|
tty-box (~> 0.6)
|
||||||
tty-prompt (~> 0.20)
|
tty-prompt (~> 0.20)
|
||||||
|
lint_roller (1.1.0)
|
||||||
little-plugger (1.1.4)
|
little-plugger (1.1.4)
|
||||||
logging (2.3.0)
|
logger (1.7.0)
|
||||||
|
logging (2.4.0)
|
||||||
little-plugger (~> 1.1)
|
little-plugger (~> 1.1)
|
||||||
multi_json (~> 1.14)
|
multi_json (~> 1.14)
|
||||||
method_source (1.0.0)
|
method_source (1.1.0)
|
||||||
mixlib-archive (1.1.7)
|
mime-types (3.7.0)
|
||||||
|
logger
|
||||||
|
mime-types-data (~> 3.2025, >= 3.2025.0507)
|
||||||
|
mime-types-data (3.2026.0701)
|
||||||
|
mixlib-archive (1.3.3)
|
||||||
mixlib-log
|
mixlib-log
|
||||||
mixlib-authentication (3.0.10)
|
mixlib-authentication (3.0.10)
|
||||||
mixlib-cli (2.1.8)
|
mixlib-cli (2.1.8)
|
||||||
mixlib-config (3.0.9)
|
mixlib-config (3.0.27)
|
||||||
tomlrb
|
tomlrb
|
||||||
mixlib-log (3.0.9)
|
mixlib-log (3.2.3)
|
||||||
mixlib-shellout (3.2.5)
|
ffi (>= 1.15.5)
|
||||||
|
mixlib-shellout (3.4.10)
|
||||||
chef-utils
|
chef-utils
|
||||||
multi_json (1.15.0)
|
multi_json (1.19.1)
|
||||||
multipart-post (2.1.1)
|
multipart-post (2.4.1)
|
||||||
net-scp (3.0.0)
|
mutex_m (0.3.0)
|
||||||
net-ssh (>= 2.6.5, < 7.0.0)
|
net-ftp (0.3.9)
|
||||||
net-sftp (3.0.0)
|
net-protocol
|
||||||
net-ssh (>= 5.0.0, < 7.0.0)
|
time
|
||||||
net-ssh (6.1.0)
|
net-http (0.9.1)
|
||||||
|
uri (>= 0.11.1)
|
||||||
|
net-http-persistent (4.0.8)
|
||||||
|
connection_pool (>= 2.2.4, < 4)
|
||||||
|
net-protocol (0.2.2)
|
||||||
|
timeout
|
||||||
|
net-scp (4.1.0)
|
||||||
|
net-ssh (>= 2.6.5, < 8.0.0)
|
||||||
|
net-sftp (4.0.0)
|
||||||
|
net-ssh (>= 5.0.0, < 8.0.0)
|
||||||
|
net-ssh (7.3.3)
|
||||||
net-ssh-gateway (2.0.0)
|
net-ssh-gateway (2.0.0)
|
||||||
net-ssh (>= 4.0.0)
|
net-ssh (>= 4.0.0)
|
||||||
net-ssh-multi (1.2.1)
|
net-ssh-multi (1.2.1)
|
||||||
net-ssh (>= 2.6.5)
|
net-ssh (>= 2.6.5)
|
||||||
net-ssh-gateway (>= 1.2.0)
|
net-ssh-gateway (>= 1.2.0)
|
||||||
nori (2.6.0)
|
netrc (0.11.0)
|
||||||
ohai (17.9.0)
|
nori (2.7.1)
|
||||||
chef-config (>= 14.12, < 18)
|
bigdecimal
|
||||||
chef-utils (>= 16.0, < 18)
|
ohai (19.1.40)
|
||||||
ffi (~> 1.9)
|
base64
|
||||||
ffi-yajl (~> 2.2)
|
chef-config (>= 14.12, < 20)
|
||||||
|
chef-utils (>= 16.0, < 20)
|
||||||
|
ffi (>= 1.15.5)
|
||||||
|
ffi-yajl (>= 2.2, < 3.0)
|
||||||
ipaddress
|
ipaddress
|
||||||
mixlib-cli (>= 1.7.0)
|
mixlib-cli (>= 1.7.0)
|
||||||
mixlib-config (>= 2.0, < 4.0)
|
mixlib-config (>= 2.0, < 4.0)
|
||||||
mixlib-log (>= 2.0.1, < 4.0)
|
mixlib-log (>= 2.0.1, < 4.0)
|
||||||
mixlib-shellout (~> 3.2, >= 3.2.5)
|
mixlib-shellout (>= 3.3.6, < 3.5.0)
|
||||||
plist (~> 3.1)
|
plist (~> 3.1)
|
||||||
train-core
|
train-core
|
||||||
wmi-lite (~> 1.0)
|
wmi-lite (~> 1.0)
|
||||||
parallel (1.21.0)
|
ostruct (0.6.3)
|
||||||
parslet (1.8.2)
|
parallel (1.28.0)
|
||||||
|
parser (3.3.11.1)
|
||||||
|
ast (~> 2.4.1)
|
||||||
|
racc
|
||||||
|
parslet (2.0.0)
|
||||||
pastel (0.8.0)
|
pastel (0.8.0)
|
||||||
tty-color (~> 0.5)
|
tty-color (~> 0.5)
|
||||||
plist (3.6.0)
|
plist (3.7.2)
|
||||||
proxifier (1.0.3)
|
prism (1.9.0)
|
||||||
pry (0.14.1)
|
proxifier2 (1.1.0)
|
||||||
|
pry (0.16.0)
|
||||||
coderay (~> 1.1)
|
coderay (~> 1.1)
|
||||||
method_source (~> 1.0)
|
method_source (~> 1.0)
|
||||||
public_suffix (4.0.6)
|
reline (>= 0.6.0)
|
||||||
rack (2.2.3)
|
pstore (0.1.4)
|
||||||
rspec (3.10.0)
|
public_suffix (6.0.2)
|
||||||
rspec-core (~> 3.10.0)
|
racc (1.8.1)
|
||||||
rspec-expectations (~> 3.10.0)
|
rack (3.2.6)
|
||||||
rspec-mocks (~> 3.10.0)
|
rackup (2.3.1)
|
||||||
rspec-core (3.10.2)
|
rack (>= 3)
|
||||||
rspec-support (~> 3.10.0)
|
rainbow (3.1.1)
|
||||||
rspec-expectations (3.10.2)
|
regexp_parser (2.12.0)
|
||||||
|
reline (0.6.3)
|
||||||
|
io-console (~> 0.5)
|
||||||
|
rest-client (2.1.0)
|
||||||
|
http-accept (>= 1.7.0, < 2.0)
|
||||||
|
http-cookie (>= 1.0.2, < 2.0)
|
||||||
|
mime-types (>= 1.16, < 4.0)
|
||||||
|
netrc (~> 0.8)
|
||||||
|
rexml (3.4.4)
|
||||||
|
rspec (3.13.2)
|
||||||
|
rspec-core (~> 3.13.0)
|
||||||
|
rspec-expectations (~> 3.13.0)
|
||||||
|
rspec-mocks (~> 3.13.0)
|
||||||
|
rspec-core (3.13.6)
|
||||||
|
rspec-support (~> 3.13.0)
|
||||||
|
rspec-expectations (3.13.5)
|
||||||
diff-lcs (>= 1.2.0, < 2.0)
|
diff-lcs (>= 1.2.0, < 2.0)
|
||||||
rspec-support (~> 3.10.0)
|
rspec-support (~> 3.13.0)
|
||||||
rspec-its (1.3.0)
|
rspec-its (2.0.0)
|
||||||
rspec-core (>= 3.0.0)
|
rspec-core (>= 3.13.0)
|
||||||
rspec-expectations (>= 3.0.0)
|
rspec-expectations (>= 3.13.0)
|
||||||
rspec-mocks (3.10.3)
|
rspec-mocks (3.13.8)
|
||||||
diff-lcs (>= 1.2.0, < 2.0)
|
diff-lcs (>= 1.2.0, < 2.0)
|
||||||
rspec-support (~> 3.10.0)
|
rspec-support (~> 3.13.0)
|
||||||
rspec-support (3.10.3)
|
rspec-support (3.13.7)
|
||||||
ruby2_keywords (0.0.5)
|
rubocop (1.86.1)
|
||||||
rubyntlm (0.6.3)
|
json (~> 2.3)
|
||||||
rubyzip (2.3.2)
|
language_server-protocol (~> 3.17.0.2)
|
||||||
semverse (3.0.0)
|
lint_roller (~> 1.1.0)
|
||||||
|
parallel (>= 1.10)
|
||||||
|
parser (>= 3.3.0.2)
|
||||||
|
rainbow (>= 2.2.2, < 4.0)
|
||||||
|
regexp_parser (>= 2.9.3, < 3.0)
|
||||||
|
rubocop-ast (>= 1.49.0, < 2.0)
|
||||||
|
ruby-progressbar (~> 1.7)
|
||||||
|
unicode-display_width (>= 2.4.0, < 4.0)
|
||||||
|
rubocop-ast (1.49.1)
|
||||||
|
parser (>= 3.3.7.2)
|
||||||
|
prism (~> 1.7)
|
||||||
|
ruby-progressbar (1.13.0)
|
||||||
|
rubyntlm (0.6.5)
|
||||||
|
base64
|
||||||
|
rubyzip (2.4.1)
|
||||||
|
semverse (3.0.2)
|
||||||
|
socksify (1.8.1)
|
||||||
sslshake (1.3.1)
|
sslshake (1.3.1)
|
||||||
strings (0.2.1)
|
strings (0.2.1)
|
||||||
strings-ansi (~> 0.2)
|
strings-ansi (~> 0.2)
|
||||||
unicode-display_width (>= 1.5, < 3.0)
|
unicode-display_width (>= 1.5, < 3.0)
|
||||||
unicode_utils (~> 1.4)
|
unicode_utils (~> 1.4)
|
||||||
strings-ansi (0.2.0)
|
strings-ansi (0.2.0)
|
||||||
|
syslog (0.4.0)
|
||||||
|
logger
|
||||||
syslog-logger (1.6.8)
|
syslog-logger (1.6.8)
|
||||||
thor (1.2.1)
|
thor (1.4.0)
|
||||||
tomlrb (1.3.0)
|
time (0.4.2)
|
||||||
train-core (3.8.7)
|
date
|
||||||
|
timeout (0.6.1)
|
||||||
|
tomlrb (2.0.4)
|
||||||
|
train-core (3.16.5)
|
||||||
addressable (~> 2.5)
|
addressable (~> 2.5)
|
||||||
ffi (!= 1.13.0)
|
ffi (>= 1.16.0, < 1.18)
|
||||||
json (>= 1.8, < 3.0)
|
json (>= 2.19.2, < 3.0)
|
||||||
mixlib-shellout (>= 2.0, < 4.0)
|
mixlib-shellout (>= 2.0, < 4.0)
|
||||||
net-scp (>= 1.2, < 4.0)
|
net-scp (>= 1.2, < 5.0)
|
||||||
net-ssh (>= 2.9, < 7.0)
|
net-ssh (>= 2.9, < 8.0)
|
||||||
train-winrm (0.2.12)
|
train-rest (0.5.0)
|
||||||
winrm (>= 2.3.6, < 3.0)
|
aws-sigv4 (~> 1.5)
|
||||||
winrm-elevated (~> 1.2.2)
|
rest-client (~> 2.1)
|
||||||
winrm-fs (~> 1.0)
|
train-core (~> 3.0)
|
||||||
|
train-winrm (0.4.3)
|
||||||
|
chef-winrm (>= 2.4.4, < 3.0)
|
||||||
|
chef-winrm-elevated (>= 1.2.5, < 2.0)
|
||||||
|
chef-winrm-fs (>= 1.4.1, < 2.0)
|
||||||
|
socksify (~> 1.8)
|
||||||
tty-box (0.7.0)
|
tty-box (0.7.0)
|
||||||
pastel (~> 0.8)
|
pastel (~> 0.8)
|
||||||
strings (~> 0.2.0)
|
strings (~> 0.2.0)
|
||||||
@@ -272,45 +407,34 @@ GEM
|
|||||||
tty-cursor (~> 0.7)
|
tty-cursor (~> 0.7)
|
||||||
tty-screen (~> 0.8)
|
tty-screen (~> 0.8)
|
||||||
wisper (~> 2.0)
|
wisper (~> 2.0)
|
||||||
tty-screen (0.8.1)
|
tty-screen (0.8.2)
|
||||||
|
tty-spinner (0.9.3)
|
||||||
|
tty-cursor (~> 0.7)
|
||||||
tty-table (0.12.0)
|
tty-table (0.12.0)
|
||||||
pastel (~> 0.8)
|
pastel (~> 0.8)
|
||||||
strings (~> 0.2.0)
|
strings (~> 0.2.0)
|
||||||
tty-screen (~> 0.8)
|
tty-screen (~> 0.8)
|
||||||
unicode-display_width (2.1.0)
|
unf_ext (0.0.9.1)
|
||||||
|
unicode-display_width (2.6.0)
|
||||||
unicode_utils (1.4.0)
|
unicode_utils (1.4.0)
|
||||||
uuidtools (2.2.0)
|
uri (1.1.1)
|
||||||
vault (0.16.0)
|
uuidtools (3.0.0)
|
||||||
|
vault (0.20.1)
|
||||||
aws-sigv4
|
aws-sigv4
|
||||||
webrick (1.7.0)
|
base64
|
||||||
winrm (2.3.6)
|
net-http-persistent (~> 4.0, >= 4.0.2)
|
||||||
builder (>= 2.1.2)
|
webrick (1.9.2)
|
||||||
erubi (~> 1.8)
|
|
||||||
gssapi (~> 1.2)
|
|
||||||
gyoku (~> 1.0)
|
|
||||||
httpclient (~> 2.2, >= 2.2.0.2)
|
|
||||||
logging (>= 1.6.1, < 3.0)
|
|
||||||
nori (~> 2.0)
|
|
||||||
rubyntlm (~> 0.6.0, >= 0.6.3)
|
|
||||||
winrm-elevated (1.2.3)
|
|
||||||
erubi (~> 1.8)
|
|
||||||
winrm (~> 2.0)
|
|
||||||
winrm-fs (~> 1.0)
|
|
||||||
winrm-fs (1.3.5)
|
|
||||||
erubi (~> 1.8)
|
|
||||||
logging (>= 1.6.1, < 3.0)
|
|
||||||
rubyzip (~> 2.0)
|
|
||||||
winrm (~> 2.0)
|
|
||||||
wisper (2.0.1)
|
wisper (2.0.1)
|
||||||
wmi-lite (1.0.5)
|
wmi-lite (1.0.7)
|
||||||
|
|
||||||
PLATFORMS
|
PLATFORMS
|
||||||
|
arm64-darwin-22
|
||||||
x86_64-darwin-18
|
x86_64-darwin-18
|
||||||
x86_64-darwin-19
|
x86_64-darwin-19
|
||||||
x86_64-linux
|
x86_64-linux
|
||||||
|
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
knife-zero (>= 2.4.2)
|
knife-zero (~> 2.6.0)
|
||||||
|
|
||||||
BUNDLED WITH
|
BUNDLED WITH
|
||||||
2.2.15
|
2.2.15
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"name": "garage-14",
|
"name": "garage-14",
|
||||||
"public_key": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqNY8AuaM4byhaTZacfRJ\nv/qyHxcDJOMX/ElF1H908spdbB2ZiLXHOH1Ucw1d+NV6/QUtWk+ikKFPpasnatD7\nmjE57noH+H47Rll0nD7oT+in+fOBDHF9R0P6/qyRSdJbJkHOh0iC0MG4LcUfv0AY\nnVBW5iLZSe/PC3+PvhCv7yrx3ikSs0mg1ZWppw0ka5Ek3ZCZp5FB4L6++GYWpM+1\n6YI0CjMoRcXsaEQsJWhxHXT8/KDhW0BR8woZUGm0/Yn4teLYJzioxRfBep3lbygx\nOIsDN9IJzo2zVTGPDZQLXhVemIhzaepqTC77ibH7F0gN/1vsQBc/qf7UhbwaF4rR\ndQIDAQAB\n-----END PUBLIC KEY-----\n"
|
"public_key": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAypINv1zTZ7+pyT0iRhik\n0W70ASYADo7qK7QyE9/3nu2sUrP1IjoNFsv/ceKwicH7Fw2Ei1o+yKZlKn7zJzY7\n93YRZndF04VH2bmqy0uOWK0Bdat7gCld5bvS6FmRflg7g64LFb33/64QIVsVGHGL\nYF2TO//x79t9JKcQDa4h5MOWzJNTFuEcUGa0gJjMYpWGVHEJSgRuIgyhXmyIJJgY\nguj6ymTm5+3VS7NzoNy2fbTt1LRpHb5UWrCR15oiLZiDSMLMx0CcGOCmrhvODi4k\n0umw+2NPd1G50s9z7KVbTqybuQ65se2amRnkVcNfaBIU5qk9bVqcmhZlEozmBZCd\ndwIDAQAB\n-----END PUBLIC KEY-----\n"
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"name": "garage-15",
|
||||||
|
"public_key": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAy14sTt5gxVZi9C3KIEBu\nDyUgbb6jc3/GR22fNPTqV6uDHhxzhE2UsYwY/7yuA1RasdwHEOBWZaoC0Om5/Zmi\n8gn6//v1ILyLNaAcw+SQcxZkCN8Sk/0atRS9HYk1agE8Mvh72Fe2z3l+92VMefy7\nJwJUNNBTbnV2WVCchChoWnfhI7bkSLSHp0M2MO2pI+lkpSdmfkJSa5z9zihgxKO8\nXfvhryDCZNvfRVHhwc+ffpap0gLF0H9riGKE4FwLy4YqbuW1Tgm6bObb9bpOIw6Q\nVfH3kC/KMK5FlnxGmYtDkhRJ/wjGInRBk9WK/QOmjyd2FVxipEQmA4RdjlznRC9I\nrwIDAQAB\n-----END PUBLIC KEY-----\n"
|
||||||
|
}
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"name": "garage-16",
|
||||||
|
"public_key": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqYCUN4WNP05pjbxVJd1/\nvmDZU6XRrVVZS5piSSRzs+uxrcUQZew9oe8YwnB9Acf7nl1igS1Fa3e3TyVdrdrM\n+zKLIszJfZw8qH0BhUHYhIm5o+NXeUDR6zor5/4msq9yyXxMFM3FY6HSnz1IBY6P\n43GdArRqAhccGZTBzvowHZvVTkG553oYF1ETxlUWn+9l142YZufNK+B2JGUGSnf3\nS0A2vlQi7DGHBcUaPPqCLeaXB1cQ4Q6SqMvnExpi0xTdY2QXLlSIBJvJVowLtQKs\npS5qHxwCabMY/uHVoEKxgmMcGvjp4L0PoaXRcev5I2sDfbLuz1VxYfatjgI/1psg\ntwIDAQAB\n-----END PUBLIC KEY-----\n"
|
||||||
|
}
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"name": "leo",
|
||||||
|
"public_key": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnFfQsJnREjbXTtpT6BVt\naBaUzRmCQi8Du0TzeUG0ENrY0p5Exqleye2rC6bJlB3PER1xr5zdtuXLgbcVumIb\nzroU5JPtFbQk7r/pj0atT+UEYzl16iuEpprQ/bug+f0nE514USr6YG4G+tlZ/jBI\nSHsCQF1P8ufXFLW0ewC7rdvBkgA+DwK14naRxS4jO5MSl4wmNTjs/jymTg508mQq\nf5tG52t8qFdgn9pRdBXmyTpPtwK7I4rZ+1Qn+1E5m4oQUZsxh8Ba1bGbKotVO7Ua\nYL1yCGx7zRRUvLLIdSMvlRXTJBUSQtQ8P4QUDWTY1Na2w3t9sulKg2Lwsw8tktvC\nCwIDAQAB\n-----END PUBLIC KEY-----\n"
|
||||||
|
}
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"name": "postgres-10",
|
||||||
|
"public_key": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2oBb5omC7ZionWhudgFm\n2NGcRXsI0c7+g1+0duaxj5dziaRTltqzpRJTfiJD6R36FcvEqwGc+qQgYSMzc1Xd\nY4OTvJFIDiFAmROm/DZYgFtTDldVNJZO2bbU3COYf/Z2Poq56gC4zLLd/zf6shgb\n2Mty8PlQ82JJAY9EMI3aAifdnZ1k/g4weFC4LFg9lUcNNXOwlAjp//LJ3ku3aY1r\nwW74msSeWEjE44YZdWyMYgM7Fy1hz5giHFQtRdOLemRCWQ8h26wn/cmWld7lsLg+\nlYqxokxWXGv8r5zR8kDTBkd0dxY7ZMbo7oESY4Uhuf4UReMe2ZGHto1E7w3llSj+\n7wIDAQAB\n-----END PUBLIC KEY-----\n"
|
||||||
|
}
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"name": "postgres-11",
|
||||||
|
"public_key": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1foYpuubS2ovlg3uHO12\nQ/ROZ8MpG+LkCAM46uVfPaoWwfY0vdfMsBOanHDgm9DGUCEBJZ6LPrvCvGXbpPy6\n9GSswK75zVWODblNjvvV4ueGFq4bBFwRuZNjyMlqgyzeU+srZL0ivelu5XEuGuoD\nPYCBKWYqGMz85/eMC7/tinTJtKPyOtXe/G8meji+r7gh3j+ypj/EWeKfcRDa4aGe\n/DmMCurIjjPAXFLMAA6fIqPWVfcPw4APNPE60Z92yPGsTbPu7bL54M5f7udmmu7H\nOgk1HjMAmXCuLDzTkfaxqHP+57yELg/YpXR1E93VmBeQuIBsyOFEk6AmUmA1Ib6e\nnQIDAQAB\n-----END PUBLIC KEY-----\n"
|
||||||
|
}
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"name": "postgres-12",
|
||||||
|
"public_key": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1mYGrYB8keUKmXA8dhWc\ncCLzp50xR0ajSw+bWYydyRqD5wuEVKjiJu4+G9QmTVXkVgJ+AYI0Y9/WZYpDqVH6\nvLUo6BSNQaWx20q93qIdOGLy8YG3Qyznezk4l8T9u9vWZDyDpKw6gCxzikMkrXxb\n0cqOYtyud8+PtSEEMogSjOKhRURVHlVrlVH3SQO7Whke9rkiFcbXzubsK9yjkUtF\nxZafSoGorOlDsPvFTfYnkepVB+GHcgiribRYSrO+73GypC2kqMhCpWrb6a0VWsP/\nh53+q3JL3vBvdvjcv51Wpf4n6JdnXnQGn2/MdXEzw+NXgjU4/IdYtbORSbaI8F5t\nowIDAQAB\n-----END PUBLIC KEY-----\n"
|
||||||
|
}
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"name": "prometheus-1",
|
||||||
|
"public_key": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAp7T/OBo/TZm3YqnN4+ok\nHwcJ0kW9w2rl9UfrOlWUvoPHBd2LrqpEv3Az3a150IylQ1H/UozmQA7DtjIoTA7d\nV3oLY970vYrYiURcojOo8qAZBy8EH7dfAHxuZryUeELr+3vdcHF5WrrfSt2FdFVX\nPTY95ikafAnOO0Nt8jvnlPoDn7REV8TOE6KOiUzcHKa2xGlfaIe0oRC21LD86uQm\nR09xY1YaJkVgZfeN/opoRjZawkU3FFs3jlUEVBF8k153oOw9W3bgsFFjSOtRtRRg\nDwyQ7oDeMH83kXnaCdpkNZd59wjzPcpxYAL4LRN52ZXA4Btr4DTi+GxHz98Dr0kU\nUQIDAQAB\n-----END PUBLIC KEY-----\n"
|
||||||
|
}
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"name": "rsk-testnet-6",
|
||||||
|
"public_key": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAl1p4+F536/peA4XWMJtm\njggPl6yJb42V5bg3kDa8SHoIoQgXn59d3BclZ1Oz2+JhFd3Rrn4FN3Z1wzGpP+gA\nnxQOfgRG1ucahh7Nxaw3IdoHm7r/EdEOc9FrxvGJ+09YnmLfzn4iVQpsUiOiNVS7\n0LXtMXYtsjD+o6BTbOhGU8FMmGhMhQfXFVgoDdTiM/Q62zPw8Vtpa3yFpFJAu+dA\n+mm5h5W6FnaWJXM2arn3PxDOt+JQSWp5PYG4goU1FFreU9iFuoeGEfLy8unlbbXt\ne96QhNuCkOA15xqta0Z3oL7IlXWns7dLgZYlpZT9zaExIs3AEDaQcleacQPzXKSG\nswIDAQAB\n-----END PUBLIC KEY-----\n"
|
||||||
|
}
|
||||||
@@ -3,3 +3,5 @@ config:
|
|||||||
line-length: false # MD013
|
line-length: false # MD013
|
||||||
no-duplicate-heading: false # MD024
|
no-duplicate-heading: false # MD024
|
||||||
reference-links-images: false # MD052
|
reference-links-images: false # MD052
|
||||||
|
ignores:
|
||||||
|
- .github/copilot-instructions.md
|
||||||
|
|||||||
@@ -2,6 +2,48 @@
|
|||||||
|
|
||||||
This file is used to list changes made in each version of the homebrew cookbook.
|
This file is used to list changes made in each version of the homebrew cookbook.
|
||||||
|
|
||||||
|
## 6.0.2 - *2025-09-04*
|
||||||
|
|
||||||
|
Standardise files with files in sous-chefs/repo-management
|
||||||
|
|
||||||
|
Standardise files with files in sous-chefs/repo-management
|
||||||
|
|
||||||
|
## 6.0.1 - *2025-03-24*
|
||||||
|
|
||||||
|
## 6.0.0 - *2025-03-17*
|
||||||
|
|
||||||
|
- Updated library call for new homebrew class name found in chef-client 18.6.2+ releases
|
||||||
|
|
||||||
|
## 5.4.9 - *2024-11-18*
|
||||||
|
|
||||||
|
Standardise files with files in sous-chefs/repo-management
|
||||||
|
|
||||||
|
Standardise files with files in sous-chefs/repo-management
|
||||||
|
|
||||||
|
Standardise files with files in sous-chefs/repo-management
|
||||||
|
|
||||||
|
Standardise files with files in sous-chefs/repo-management
|
||||||
|
|
||||||
|
Standardise files with files in sous-chefs/repo-management
|
||||||
|
|
||||||
|
## 5.4.8 - *2024-05-07*
|
||||||
|
|
||||||
|
## 5.4.7 - *2024-05-06*
|
||||||
|
|
||||||
|
- Explicitly include `Which` module from `Chef` which fixes runs on 18.x clients.
|
||||||
|
|
||||||
|
## 5.4.6 - *2024-05-06*
|
||||||
|
|
||||||
|
## 5.4.5 - *2023-11-01*
|
||||||
|
|
||||||
|
Standardise files with files in sous-chefs/repo-management
|
||||||
|
|
||||||
|
## 5.4.4 - *2023-09-28*
|
||||||
|
|
||||||
|
## 5.4.3 - *2023-09-04*
|
||||||
|
|
||||||
|
## 5.4.2 - *2023-07-10*
|
||||||
|
|
||||||
## 5.4.1 - *2023-06-01*
|
## 5.4.1 - *2023-06-01*
|
||||||
|
|
||||||
## 5.4.0 - *2023-04-24*
|
## 5.4.0 - *2023-04-24*
|
||||||
|
|||||||
@@ -20,8 +20,9 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
class HomebrewUserWrapper
|
class HomebrewUserWrapper
|
||||||
require 'chef/mixin/homebrew_user'
|
require 'chef/mixin/homebrew'
|
||||||
include Chef::Mixin::HomebrewUser
|
include Chef::Mixin::Homebrew
|
||||||
|
include Chef::Mixin::Which
|
||||||
end
|
end
|
||||||
|
|
||||||
module Homebrew
|
module Homebrew
|
||||||
@@ -59,41 +60,17 @@ module Homebrew
|
|||||||
|
|
||||||
def owner
|
def owner
|
||||||
@owner ||= begin
|
@owner ||= begin
|
||||||
# once we only support 14.0 we can switch this to find_homebrew_username
|
HomebrewUserWrapper.new.find_homebrew_username
|
||||||
require 'etc'
|
rescue
|
||||||
::Etc.getpwuid(HomebrewUserWrapper.new.find_homebrew_uid).name
|
Chef::Exceptions::CannotDetermineHomebrewPath
|
||||||
rescue Chef::Exceptions::CannotDetermineHomebrewOwner
|
end.tap do |owner|
|
||||||
calculate_owner
|
Chef::Log.debug("Homebrew owner is #{owner}")
|
||||||
end.tap do |owner|
|
end
|
||||||
Chef::Log.debug("Homebrew owner is #{owner}")
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
|
||||||
|
|
||||||
def calculate_owner
|
|
||||||
owner = homebrew_owner_attr || sudo_user || current_user
|
|
||||||
if owner == 'root'
|
|
||||||
raise Chef::Exceptions::User,
|
|
||||||
"Homebrew owner is 'root' which is not supported. " \
|
|
||||||
"To set an explicit owner, please set node['homebrew']['owner']."
|
|
||||||
end
|
|
||||||
owner
|
|
||||||
end
|
|
||||||
|
|
||||||
def homebrew_owner_attr
|
|
||||||
Chef.node['homebrew']['owner']
|
|
||||||
end
|
|
||||||
|
|
||||||
def sudo_user
|
|
||||||
ENV['SUDO_USER']
|
|
||||||
end
|
|
||||||
|
|
||||||
def current_user
|
|
||||||
ENV['USER']
|
|
||||||
end
|
end
|
||||||
end unless defined?(Homebrew)
|
end unless defined?(Homebrew)
|
||||||
|
|
||||||
class HomebrewWrapper
|
class HomebrewWrapper
|
||||||
include Homebrew
|
include Homebrew
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Chef::Mixin::Homebrew.include(Homebrew)
|
||||||
|
|||||||
@@ -17,13 +17,13 @@
|
|||||||
"recipes": {
|
"recipes": {
|
||||||
|
|
||||||
},
|
},
|
||||||
"version": "5.4.1",
|
"version": "6.0.2",
|
||||||
"source_url": "https://github.com/sous-chefs/homebrew",
|
"source_url": "https://github.com/sous-chefs/homebrew",
|
||||||
"issues_url": "https://github.com/sous-chefs/homebrew/issues",
|
"issues_url": "https://github.com/sous-chefs/homebrew/issues",
|
||||||
"privacy": false,
|
"privacy": false,
|
||||||
"chef_versions": [
|
"chef_versions": [
|
||||||
[
|
[
|
||||||
">= 15.3"
|
">= 18.6.2"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"ohai_versions": [
|
"ohai_versions": [
|
||||||
|
|||||||
@@ -3,9 +3,9 @@ maintainer 'Sous Chefs'
|
|||||||
maintainer_email 'help@sous-chefs.org'
|
maintainer_email 'help@sous-chefs.org'
|
||||||
license 'Apache-2.0'
|
license 'Apache-2.0'
|
||||||
description 'Install Homebrew and includes resources for working with taps and casks'
|
description 'Install Homebrew and includes resources for working with taps and casks'
|
||||||
version '5.4.1'
|
version '6.0.2'
|
||||||
supports 'mac_os_x'
|
supports 'mac_os_x'
|
||||||
|
|
||||||
source_url 'https://github.com/sous-chefs/homebrew'
|
source_url 'https://github.com/sous-chefs/homebrew'
|
||||||
issues_url 'https://github.com/sous-chefs/homebrew/issues'
|
issues_url 'https://github.com/sous-chefs/homebrew/issues'
|
||||||
chef_version '>= 15.3'
|
chef_version '>= 18.6.2'
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
"extends": ["config:base"],
|
"extends": ["config:base"],
|
||||||
"packageRules": [{
|
"packageRules": [
|
||||||
|
{
|
||||||
"groupName": "Actions",
|
"groupName": "Actions",
|
||||||
"matchUpdateTypes": ["patch", "pin", "digest"],
|
"matchUpdateTypes": ["minor", "patch", "pin"],
|
||||||
"automerge": true,
|
"automerge": true,
|
||||||
"addLabels": ["Release: Patch", "Skip: Announcements"]
|
"addLabels": ["Release: Patch", "Skip: Announcements"]
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -19,6 +19,7 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
unified_mode true
|
||||||
chef_version_for_provides '< 14.0' if respond_to?(:chef_version_for_provides)
|
chef_version_for_provides '< 14.0' if respond_to?(:chef_version_for_provides)
|
||||||
|
|
||||||
property :cask_name, String, regex: %r{^[\w/-]+$}, name_property: true
|
property :cask_name, String, regex: %r{^[\w/-]+$}, name_property: true
|
||||||
|
|||||||
@@ -19,6 +19,7 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
unified_mode true
|
||||||
chef_version_for_provides '< 14.0' if respond_to?(:chef_version_for_provides)
|
chef_version_for_provides '< 14.0' if respond_to?(:chef_version_for_provides)
|
||||||
|
|
||||||
property :tap_name, String, name_property: true, regex: %r{^[\w-]+(?:\/[\w-]+)+$}
|
property :tap_name, String, name_property: true, regex: %r{^[\w-]+(?:\/[\w-]+)+$}
|
||||||
|
|||||||
@@ -0,0 +1,8 @@
|
|||||||
|
ruby:
|
||||||
|
config_file: .rubocop.yml
|
||||||
|
|
||||||
|
java_script:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
|
scss:
|
||||||
|
enabled: false
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
config:
|
||||||
|
ul-indent: false # MD007
|
||||||
|
line-length: false # MD013
|
||||||
|
no-duplicate-heading: false # MD024
|
||||||
|
reference-links-images: false # MD052
|
||||||
|
no-multiple-blanks:
|
||||||
|
maximum: 2
|
||||||
|
ignores:
|
||||||
|
- .github/copilot-instructions.md
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
".": "1.0.0"
|
||||||
|
}
|
||||||
@@ -0,0 +1,104 @@
|
|||||||
|
# Change Log
|
||||||
|
|
||||||
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
## [1.0.0](https://github.com/sous-chefs/prometheus/compare/v0.7.6...v1.0.0) (2026-04-29)
|
||||||
|
|
||||||
|
|
||||||
|
### ⚠ BREAKING CHANGES
|
||||||
|
|
||||||
|
* migrate prometheus resources ([#36](https://github.com/sous-chefs/prometheus/issues/36))
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* migrate prometheus resources ([#36](https://github.com/sous-chefs/prometheus/issues/36)) ([6698649](https://github.com/sous-chefs/prometheus/commit/66986492fe0f069bc69474e19423b16e21563c16))
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* **ci:** Update workflows to use release pipeline ([#29](https://github.com/sous-chefs/prometheus/issues/29)) ([b991214](https://github.com/sous-chefs/prometheus/commit/b991214225164d55694966e535478a38e720a8f0))
|
||||||
|
|
||||||
|
## [0.7.6](https://github.com/sous-chefs/prometheus/compare/0.7.5...v0.7.6) (2025-10-16)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* **ci:** Update workflows to use release pipeline ([#29](https://github.com/sous-chefs/prometheus/issues/29)) ([b991214](https://github.com/sous-chefs/prometheus/commit/b991214225164d55694966e535478a38e720a8f0))
|
||||||
|
|
||||||
|
## 0.7.2 - *2022-02-08*
|
||||||
|
|
||||||
|
* Remove delivery folder
|
||||||
|
|
||||||
|
Standardise files with files in sous-chefs/repo-management
|
||||||
|
|
||||||
|
## 0.7.1 - *2021-06-01*
|
||||||
|
|
||||||
|
* resolved cookstyle error: Thorfile:1:1 convention: `Style/Encoding`
|
||||||
|
* resolved cookstyle error: test/shared/spec_helper.rb:6:10 convention: `Style/ExpandPathArguments`
|
||||||
|
|
||||||
|
## [0.7.1 - *2021-06-01*][0.7.1 - *2021-06-01*]
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
* Updated attributes and templates for Prometheus 0.15 release.
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
* Added upstart init for ubuntu platform.
|
||||||
|
|
||||||
|
## [0.5.1] - 2015-03-25
|
||||||
|
|
||||||
|
Changed
|
||||||
|
|
||||||
|
* Updated documentation.
|
||||||
|
|
||||||
|
## [0.5.0] - 2015-03-25
|
||||||
|
|
||||||
|
Added
|
||||||
|
|
||||||
|
* Added systemd init for redhat platform family version 7 or greater.
|
||||||
|
* Default init style per platform.
|
||||||
|
* Install Prometheus via pre-compiled binary.
|
||||||
|
* Added the prometheus_job resource for defining Prometheus scraping jobs.
|
||||||
|
* Attribute flag to externally manage prometheus.conf file.
|
||||||
|
|
||||||
|
Changed
|
||||||
|
|
||||||
|
* Removed flags that were deprecated in the prometheus 0.12.0 release.
|
||||||
|
|
||||||
|
### Contributors for this release
|
||||||
|
|
||||||
|
* [Eric Richardson](https://github.com/ewr) - External jobs config and prometheus job resource.
|
||||||
|
|
||||||
|
Thank You!
|
||||||
|
|
||||||
|
## [0.4.0] - 2015-03-12
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
* Fix init template path bug on chef 11.x.
|
||||||
|
|
||||||
|
## [0.3.0] - 2015-03-11
|
||||||
|
|
||||||
|
Fixed
|
||||||
|
|
||||||
|
* Fixed cookbook badge in README
|
||||||
|
|
||||||
|
## [0.2.0] - 2015-03-11
|
||||||
|
|
||||||
|
Fixed
|
||||||
|
|
||||||
|
* License defined in metadata.
|
||||||
|
|
||||||
|
## 0.1.0 - 2015-03-11
|
||||||
|
|
||||||
|
Changed
|
||||||
|
|
||||||
|
* Initial release of prometheus cookbook
|
||||||
|
|
||||||
|
[0.7.1 - *2021-06-01*]: https://github.com/rayrod2030/chef-prometheus/compare/0.5.1...HEAD
|
||||||
|
[0.5.1]: https://github.com/rayrod2030/chef-prometheus/compare/0.5.0...0.5.1
|
||||||
|
[0.5.0]: https://github.com/rayrod2030/chef-prometheus/compare/0.4.0...0.5.0
|
||||||
|
[0.4.0]: https://github.com/rayrod2030/chef-prometheus/compare/0.3.0...0.4.0
|
||||||
|
[0.3.0]: https://github.com/rayrod2030/chef-prometheus/compare/0.2.0...0.3.0
|
||||||
|
[0.2.0]: https://github.com/rayrod2030/chef-prometheus/compare/0.1.0...0.2.0
|
||||||
@@ -0,0 +1,201 @@
|
|||||||
|
Apache License
|
||||||
|
Version 2.0, January 2004
|
||||||
|
http://www.apache.org/licenses/
|
||||||
|
|
||||||
|
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||||
|
|
||||||
|
1. Definitions.
|
||||||
|
|
||||||
|
"License" shall mean the terms and conditions for use, reproduction,
|
||||||
|
and distribution as defined by Sections 1 through 9 of this document.
|
||||||
|
|
||||||
|
"Licensor" shall mean the copyright owner or entity authorized by
|
||||||
|
the copyright owner that is granting the License.
|
||||||
|
|
||||||
|
"Legal Entity" shall mean the union of the acting entity and all
|
||||||
|
other entities that control, are controlled by, or are under common
|
||||||
|
control with that entity. For the purposes of this definition,
|
||||||
|
"control" means (i) the power, direct or indirect, to cause the
|
||||||
|
direction or management of such entity, whether by contract or
|
||||||
|
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||||
|
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||||
|
|
||||||
|
"You" (or "Your") shall mean an individual or Legal Entity
|
||||||
|
exercising permissions granted by this License.
|
||||||
|
|
||||||
|
"Source" form shall mean the preferred form for making modifications,
|
||||||
|
including but not limited to software source code, documentation
|
||||||
|
source, and configuration files.
|
||||||
|
|
||||||
|
"Object" form shall mean any form resulting from mechanical
|
||||||
|
transformation or translation of a Source form, including but
|
||||||
|
not limited to compiled object code, generated documentation,
|
||||||
|
and conversions to other media types.
|
||||||
|
|
||||||
|
"Work" shall mean the work of authorship, whether in Source or
|
||||||
|
Object form, made available under the License, as indicated by a
|
||||||
|
copyright notice that is included in or attached to the work
|
||||||
|
(an example is provided in the Appendix below).
|
||||||
|
|
||||||
|
"Derivative Works" shall mean any work, whether in Source or Object
|
||||||
|
form, that is based on (or derived from) the Work and for which the
|
||||||
|
editorial revisions, annotations, elaborations, or other modifications
|
||||||
|
represent, as a whole, an original work of authorship. For the purposes
|
||||||
|
of this License, Derivative Works shall not include works that remain
|
||||||
|
separable from, or merely link (or bind by name) to the interfaces of,
|
||||||
|
the Work and Derivative Works thereof.
|
||||||
|
|
||||||
|
"Contribution" shall mean any work of authorship, including
|
||||||
|
the original version of the Work and any modifications or additions
|
||||||
|
to that Work or Derivative Works thereof, that is intentionally
|
||||||
|
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||||
|
or by an individual or Legal Entity authorized to submit on behalf of
|
||||||
|
the copyright owner. For the purposes of this definition, "submitted"
|
||||||
|
means any form of electronic, verbal, or written communication sent
|
||||||
|
to the Licensor or its representatives, including but not limited to
|
||||||
|
communication on electronic mailing lists, source code control systems,
|
||||||
|
and issue tracking systems that are managed by, or on behalf of, the
|
||||||
|
Licensor for the purpose of discussing and improving the Work, but
|
||||||
|
excluding communication that is conspicuously marked or otherwise
|
||||||
|
designated in writing by the copyright owner as "Not a Contribution."
|
||||||
|
|
||||||
|
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||||
|
on behalf of whom a Contribution has been received by Licensor and
|
||||||
|
subsequently incorporated within the Work.
|
||||||
|
|
||||||
|
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||||
|
this License, each Contributor hereby grants to You a perpetual,
|
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||||
|
copyright license to reproduce, prepare Derivative Works of,
|
||||||
|
publicly display, publicly perform, sublicense, and distribute the
|
||||||
|
Work and such Derivative Works in Source or Object form.
|
||||||
|
|
||||||
|
3. Grant of Patent License. Subject to the terms and conditions of
|
||||||
|
this License, each Contributor hereby grants to You a perpetual,
|
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||||
|
(except as stated in this section) patent license to make, have made,
|
||||||
|
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||||
|
where such license applies only to those patent claims licensable
|
||||||
|
by such Contributor that are necessarily infringed by their
|
||||||
|
Contribution(s) alone or by combination of their Contribution(s)
|
||||||
|
with the Work to which such Contribution(s) was submitted. If You
|
||||||
|
institute patent litigation against any entity (including a
|
||||||
|
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||||
|
or a Contribution incorporated within the Work constitutes direct
|
||||||
|
or contributory patent infringement, then any patent licenses
|
||||||
|
granted to You under this License for that Work shall terminate
|
||||||
|
as of the date such litigation is filed.
|
||||||
|
|
||||||
|
4. Redistribution. You may reproduce and distribute copies of the
|
||||||
|
Work or Derivative Works thereof in any medium, with or without
|
||||||
|
modifications, and in Source or Object form, provided that You
|
||||||
|
meet the following conditions:
|
||||||
|
|
||||||
|
(a) You must give any other recipients of the Work or
|
||||||
|
Derivative Works a copy of this License; and
|
||||||
|
|
||||||
|
(b) You must cause any modified files to carry prominent notices
|
||||||
|
stating that You changed the files; and
|
||||||
|
|
||||||
|
(c) You must retain, in the Source form of any Derivative Works
|
||||||
|
that You distribute, all copyright, patent, trademark, and
|
||||||
|
attribution notices from the Source form of the Work,
|
||||||
|
excluding those notices that do not pertain to any part of
|
||||||
|
the Derivative Works; and
|
||||||
|
|
||||||
|
(d) If the Work includes a "NOTICE" text file as part of its
|
||||||
|
distribution, then any Derivative Works that You distribute must
|
||||||
|
include a readable copy of the attribution notices contained
|
||||||
|
within such NOTICE file, excluding those notices that do not
|
||||||
|
pertain to any part of the Derivative Works, in at least one
|
||||||
|
of the following places: within a NOTICE text file distributed
|
||||||
|
as part of the Derivative Works; within the Source form or
|
||||||
|
documentation, if provided along with the Derivative Works; or,
|
||||||
|
within a display generated by the Derivative Works, if and
|
||||||
|
wherever such third-party notices normally appear. The contents
|
||||||
|
of the NOTICE file are for informational purposes only and
|
||||||
|
do not modify the License. You may add Your own attribution
|
||||||
|
notices within Derivative Works that You distribute, alongside
|
||||||
|
or as an addendum to the NOTICE text from the Work, provided
|
||||||
|
that such additional attribution notices cannot be construed
|
||||||
|
as modifying the License.
|
||||||
|
|
||||||
|
You may add Your own copyright statement to Your modifications and
|
||||||
|
may provide additional or different license terms and conditions
|
||||||
|
for use, reproduction, or distribution of Your modifications, or
|
||||||
|
for any such Derivative Works as a whole, provided Your use,
|
||||||
|
reproduction, and distribution of the Work otherwise complies with
|
||||||
|
the conditions stated in this License.
|
||||||
|
|
||||||
|
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||||
|
any Contribution intentionally submitted for inclusion in the Work
|
||||||
|
by You to the Licensor shall be under the terms and conditions of
|
||||||
|
this License, without any additional terms or conditions.
|
||||||
|
Notwithstanding the above, nothing herein shall supersede or modify
|
||||||
|
the terms of any separate license agreement you may have executed
|
||||||
|
with Licensor regarding such Contributions.
|
||||||
|
|
||||||
|
6. Trademarks. This License does not grant permission to use the trade
|
||||||
|
names, trademarks, service marks, or product names of the Licensor,
|
||||||
|
except as required for reasonable and customary use in describing the
|
||||||
|
origin of the Work and reproducing the content of the NOTICE file.
|
||||||
|
|
||||||
|
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||||
|
agreed to in writing, Licensor provides the Work (and each
|
||||||
|
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||||
|
implied, including, without limitation, any warranties or conditions
|
||||||
|
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||||
|
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||||
|
appropriateness of using or redistributing the Work and assume any
|
||||||
|
risks associated with Your exercise of permissions under this License.
|
||||||
|
|
||||||
|
8. Limitation of Liability. In no event and under no legal theory,
|
||||||
|
whether in tort (including negligence), contract, or otherwise,
|
||||||
|
unless required by applicable law (such as deliberate and grossly
|
||||||
|
negligent acts) or agreed to in writing, shall any Contributor be
|
||||||
|
liable to You for damages, including any direct, indirect, special,
|
||||||
|
incidental, or consequential damages of any character arising as a
|
||||||
|
result of this License or out of the use or inability to use the
|
||||||
|
Work (including but not limited to damages for loss of goodwill,
|
||||||
|
work stoppage, computer failure or malfunction, or any and all
|
||||||
|
other commercial damages or losses), even if such Contributor
|
||||||
|
has been advised of the possibility of such damages.
|
||||||
|
|
||||||
|
9. Accepting Warranty or Additional Liability. While redistributing
|
||||||
|
the Work or Derivative Works thereof, You may choose to offer,
|
||||||
|
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||||
|
or other liability obligations and/or rights consistent with this
|
||||||
|
License. However, in accepting such obligations, You may act only
|
||||||
|
on Your own behalf and on Your sole responsibility, not on behalf
|
||||||
|
of any other Contributor, and only if You agree to indemnify,
|
||||||
|
defend, and hold each Contributor harmless for any liability
|
||||||
|
incurred by, or claims asserted against, such Contributor by reason
|
||||||
|
of your accepting any such warranty or additional liability.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
APPENDIX: How to apply the Apache License to your work.
|
||||||
|
|
||||||
|
To apply the Apache License to your work, attach the following
|
||||||
|
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||||
|
replaced with your own identifying information. (Don't include
|
||||||
|
the brackets!) The text should be enclosed in the appropriate
|
||||||
|
comment syntax for the file format. We also recommend that a
|
||||||
|
file or class name and description of purpose be included on the
|
||||||
|
same "printed page" as the copyright notice for easier
|
||||||
|
identification within third-party archives.
|
||||||
|
|
||||||
|
Copyright [yyyy] [name of copyright owner]
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
@@ -0,0 +1,36 @@
|
|||||||
|
# Limitations
|
||||||
|
|
||||||
|
This cookbook manages Prometheus and Alertmanager from upstream release archives or source builds.
|
||||||
|
|
||||||
|
## Upstream Support
|
||||||
|
|
||||||
|
Prometheus publishes precompiled archives for Prometheus and Alertmanager from the official download page and GitHub releases. As of April 28, 2026, the cookbook defaults to:
|
||||||
|
|
||||||
|
* Prometheus 3.11.2 `linux-amd64` and `linux-arm64`
|
||||||
|
* Alertmanager 0.32.0 `linux-amd64` and `linux-arm64`
|
||||||
|
|
||||||
|
The upstream projects also publish Docker images and archives for other operating systems. This cookbook only supports Linux systemd hosts.
|
||||||
|
|
||||||
|
## Platform Support
|
||||||
|
|
||||||
|
Supported platforms are modern systemd Linux distributions declared in `metadata.rb`:
|
||||||
|
|
||||||
|
* AlmaLinux 8+
|
||||||
|
* Amazon Linux 2023+
|
||||||
|
* CentOS Stream 9+
|
||||||
|
* Debian 12+
|
||||||
|
* Fedora
|
||||||
|
* Oracle Linux 8+
|
||||||
|
* Red Hat Enterprise Linux 8+
|
||||||
|
* Rocky Linux 8+
|
||||||
|
* Ubuntu 20.04+
|
||||||
|
|
||||||
|
Legacy init systems are not supported. The cookbook no longer manages runit, upstart, or SysV init services.
|
||||||
|
|
||||||
|
## Installation Constraints
|
||||||
|
|
||||||
|
The default binary installation path uses official Linux tarballs for `amd64` or `arm64`. Override `architecture`, `binary_url`, `checksum`, and `file_extension` when using another upstream artifact or a private mirror.
|
||||||
|
|
||||||
|
Source installs require build tooling, Git, and the upstream Go build chain expected by the selected Prometheus or Alertmanager version. Source builds are retained for compatibility but binary installs are the primary supported path.
|
||||||
|
|
||||||
|
Prometheus and Alertmanager are not installed from operating system package repositories by these resources.
|
||||||
@@ -0,0 +1,67 @@
|
|||||||
|
# prometheus Cookbook
|
||||||
|
|
||||||
|
This cookbook provides custom resources for installing and configuring [Prometheus][] and Alertmanager.
|
||||||
|
|
||||||
|
## Requirements
|
||||||
|
|
||||||
|
* Chef Infra Client 16.0 or later
|
||||||
|
* A systemd Linux platform listed in [LIMITATIONS.md](LIMITATIONS.md)
|
||||||
|
|
||||||
|
See [LIMITATIONS.md](LIMITATIONS.md) for upstream platform and installation constraints.
|
||||||
|
|
||||||
|
## Resources
|
||||||
|
|
||||||
|
* [prometheus_install](documentation/prometheus_install.md)
|
||||||
|
* [prometheus_config](documentation/prometheus_config.md)
|
||||||
|
* [prometheus_service](documentation/prometheus_service.md)
|
||||||
|
* [prometheus_job](documentation/prometheus_job.md)
|
||||||
|
* [prometheus_alertmanager_install](documentation/prometheus_alertmanager_install.md)
|
||||||
|
* [prometheus_alertmanager_config](documentation/prometheus_alertmanager_config.md)
|
||||||
|
* [prometheus_alertmanager_service](documentation/prometheus_alertmanager_service.md)
|
||||||
|
|
||||||
|
See [migration.md](migration.md) for migration notes from the legacy recipe and attribute interface.
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
```ruby
|
||||||
|
prometheus_install 'prometheus'
|
||||||
|
|
||||||
|
prometheus_config 'prometheus'
|
||||||
|
|
||||||
|
prometheus_job 'prometheus' do
|
||||||
|
scrape_interval '15s'
|
||||||
|
target 'localhost:9090'
|
||||||
|
end
|
||||||
|
|
||||||
|
prometheus_service 'prometheus'
|
||||||
|
```
|
||||||
|
|
||||||
|
Alertmanager:
|
||||||
|
|
||||||
|
```ruby
|
||||||
|
prometheus_alertmanager_install 'alertmanager'
|
||||||
|
prometheus_alertmanager_config 'alertmanager'
|
||||||
|
prometheus_alertmanager_service 'alertmanager'
|
||||||
|
```
|
||||||
|
|
||||||
|
## License & Authors
|
||||||
|
|
||||||
|
* Author: Ray Rodriguez <rayrod2030@gmail.com>
|
||||||
|
* Author: kristian järvenpää <kristian.jarvenpaa@gmail.com>
|
||||||
|
* Maintainer: Sous Chefs
|
||||||
|
|
||||||
|
```text
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
```
|
||||||
|
|
||||||
|
[Prometheus]: https://github.com/prometheus/prometheus
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
require 'bundler'
|
||||||
|
require 'bundler/setup'
|
||||||
|
require 'berkshelf/thor'
|
||||||
|
|
||||||
|
begin
|
||||||
|
require 'kitchen/thor_tasks'
|
||||||
|
Kitchen::ThorTasks.new
|
||||||
|
rescue LoadError
|
||||||
|
puts '>>>>> Kitchen gem not loaded, omitting tasks' unless ENV['CI']
|
||||||
|
end
|
||||||
@@ -0,0 +1,115 @@
|
|||||||
|
# Put files/directories that should be ignored in this file when uploading
|
||||||
|
# to a Chef Infra Server or Supermarket.
|
||||||
|
# Lines that start with '# ' are comments.
|
||||||
|
|
||||||
|
# OS generated files #
|
||||||
|
######################
|
||||||
|
.DS_Store
|
||||||
|
ehthumbs.db
|
||||||
|
Icon?
|
||||||
|
nohup.out
|
||||||
|
Thumbs.db
|
||||||
|
.envrc
|
||||||
|
|
||||||
|
# EDITORS #
|
||||||
|
###########
|
||||||
|
.#*
|
||||||
|
.project
|
||||||
|
.settings
|
||||||
|
*_flymake
|
||||||
|
*_flymake.*
|
||||||
|
*.bak
|
||||||
|
*.sw[a-z]
|
||||||
|
*.tmproj
|
||||||
|
*~
|
||||||
|
\#*
|
||||||
|
REVISION
|
||||||
|
TAGS*
|
||||||
|
tmtags
|
||||||
|
.vscode
|
||||||
|
.editorconfig
|
||||||
|
|
||||||
|
## COMPILED ##
|
||||||
|
##############
|
||||||
|
*.class
|
||||||
|
*.com
|
||||||
|
*.dll
|
||||||
|
*.exe
|
||||||
|
*.o
|
||||||
|
*.pyc
|
||||||
|
*.so
|
||||||
|
*/rdoc/
|
||||||
|
a.out
|
||||||
|
mkmf.log
|
||||||
|
|
||||||
|
# Testing #
|
||||||
|
###########
|
||||||
|
.circleci/*
|
||||||
|
.codeclimate.yml
|
||||||
|
.delivery/*
|
||||||
|
.foodcritic
|
||||||
|
.kitchen*
|
||||||
|
.mdlrc
|
||||||
|
.overcommit.yml
|
||||||
|
.rspec
|
||||||
|
.rubocop.yml
|
||||||
|
.travis.yml
|
||||||
|
.watchr
|
||||||
|
.yamllint
|
||||||
|
azure-pipelines.yml
|
||||||
|
Dangerfile
|
||||||
|
examples/*
|
||||||
|
features/*
|
||||||
|
Guardfile
|
||||||
|
kitchen*.yml
|
||||||
|
mlc_config.json
|
||||||
|
Procfile
|
||||||
|
Rakefile
|
||||||
|
spec/*
|
||||||
|
test/*
|
||||||
|
|
||||||
|
# SCM #
|
||||||
|
#######
|
||||||
|
.git
|
||||||
|
.gitattributes
|
||||||
|
.gitconfig
|
||||||
|
.github/*
|
||||||
|
.gitignore
|
||||||
|
.gitkeep
|
||||||
|
.gitmodules
|
||||||
|
.svn
|
||||||
|
*/.bzr/*
|
||||||
|
*/.git
|
||||||
|
*/.hg/*
|
||||||
|
*/.svn/*
|
||||||
|
|
||||||
|
# Berkshelf #
|
||||||
|
#############
|
||||||
|
Berksfile
|
||||||
|
Berksfile.lock
|
||||||
|
cookbooks/*
|
||||||
|
tmp
|
||||||
|
|
||||||
|
# Bundler #
|
||||||
|
###########
|
||||||
|
vendor/*
|
||||||
|
Gemfile
|
||||||
|
Gemfile.lock
|
||||||
|
|
||||||
|
# Policyfile #
|
||||||
|
##############
|
||||||
|
Policyfile.rb
|
||||||
|
Policyfile.lock.json
|
||||||
|
|
||||||
|
# Documentation #
|
||||||
|
#############
|
||||||
|
CODE_OF_CONDUCT*
|
||||||
|
CONTRIBUTING*
|
||||||
|
documentation/*
|
||||||
|
TESTING*
|
||||||
|
UPGRADING*
|
||||||
|
|
||||||
|
# Vagrant #
|
||||||
|
###########
|
||||||
|
.vagrant
|
||||||
|
Vagrantfile
|
||||||
@@ -0,0 +1,78 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
require 'uri'
|
||||||
|
|
||||||
|
module PrometheusCookbook
|
||||||
|
module Helpers
|
||||||
|
def archive_name(component, version, url)
|
||||||
|
basename = ::File.basename(URI.parse(url).path)
|
||||||
|
basename.sub(/(?:\.tar\.gz|\.tgz|\.tar\.bz2|\.tar\.xz|\.zip)\z/, '')
|
||||||
|
rescue URI::InvalidURIError
|
||||||
|
"#{component}-#{version}"
|
||||||
|
end
|
||||||
|
|
||||||
|
def install_dir_parent(install_dir)
|
||||||
|
::File.dirname(install_dir)
|
||||||
|
end
|
||||||
|
|
||||||
|
def install_dir_name(install_dir)
|
||||||
|
::File.basename(install_dir)
|
||||||
|
end
|
||||||
|
|
||||||
|
def prometheus_flags(resource)
|
||||||
|
flag_pairs = if Gem::Version.new(resource.version) < Gem::Version.new('2.0.0-alpha.0')
|
||||||
|
resource.flags.map { |key, value| "-#{key}=#{value}" unless value == '' }
|
||||||
|
else
|
||||||
|
resource.cli_options.map { |key, value| "--#{key}=#{value}" unless value == '' } +
|
||||||
|
resource.cli_flags.map { |flag| "--#{flag}" unless flag == '' }
|
||||||
|
end
|
||||||
|
|
||||||
|
flag_pairs.compact.join(' ')
|
||||||
|
end
|
||||||
|
|
||||||
|
def prometheus_unit_content(resource)
|
||||||
|
{
|
||||||
|
Unit: {
|
||||||
|
Description: 'Prometheus',
|
||||||
|
After: 'network.target auditd.service',
|
||||||
|
},
|
||||||
|
Service: {
|
||||||
|
Type: 'simple',
|
||||||
|
Environment: "GOMAXPROCS=#{node['cpu']['total'] || 1}",
|
||||||
|
User: resource.user,
|
||||||
|
Group: resource.group,
|
||||||
|
ExecStart: "#{resource.binary} #{prometheus_flags(resource)}",
|
||||||
|
ExecReload: '/bin/kill -HUP $MAINPID',
|
||||||
|
Restart: 'always',
|
||||||
|
},
|
||||||
|
Install: {
|
||||||
|
WantedBy: 'multi-user.target',
|
||||||
|
},
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
|
def alertmanager_unit_content(resource)
|
||||||
|
{
|
||||||
|
Unit: {
|
||||||
|
Description: 'Prometheus Alertmanager',
|
||||||
|
After: 'network.target',
|
||||||
|
},
|
||||||
|
Service: {
|
||||||
|
User: resource.user,
|
||||||
|
Group: resource.group,
|
||||||
|
ExecStart: [
|
||||||
|
resource.binary,
|
||||||
|
"--log.level=#{resource.log_level}",
|
||||||
|
"--storage.path=#{resource.storage_path}",
|
||||||
|
"--config.file=#{resource.config_file}",
|
||||||
|
"--web.external-url=#{resource.external_url}",
|
||||||
|
].join(' '),
|
||||||
|
Restart: 'always',
|
||||||
|
},
|
||||||
|
Install: {
|
||||||
|
WantedBy: 'multi-user.target',
|
||||||
|
},
|
||||||
|
}
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
@@ -0,0 +1,44 @@
|
|||||||
|
{
|
||||||
|
"name": "prometheus",
|
||||||
|
"description": "Provides custom resources for installing and configuring Prometheus and Alertmanager",
|
||||||
|
"long_description": "",
|
||||||
|
"maintainer": "Sous Chefs",
|
||||||
|
"maintainer_email": "help@sous-chefs.org",
|
||||||
|
"license": "Apache-2.0",
|
||||||
|
"platforms": {
|
||||||
|
"almalinux": ">= 8.0",
|
||||||
|
"amazon": ">= 2023.0",
|
||||||
|
"centos_stream": ">= 9.0",
|
||||||
|
"debian": ">= 12.0",
|
||||||
|
"fedora": ">= 0.0.0",
|
||||||
|
"oracle": ">= 8.0",
|
||||||
|
"redhat": ">= 8.0",
|
||||||
|
"rocky": ">= 8.0",
|
||||||
|
"ubuntu": ">= 20.04"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"ark": ">= 0.0.0"
|
||||||
|
},
|
||||||
|
"providing": {
|
||||||
|
|
||||||
|
},
|
||||||
|
"recipes": {
|
||||||
|
|
||||||
|
},
|
||||||
|
"version": "1.0.0",
|
||||||
|
"source_url": "https://github.com/sous-chefs/prometheus",
|
||||||
|
"issues_url": "https://github.com/sous-chefs/prometheus/issues",
|
||||||
|
"privacy": false,
|
||||||
|
"chef_versions": [
|
||||||
|
[
|
||||||
|
">= 16.0"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"ohai_versions": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"gems": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"eager_load_libraries": true
|
||||||
|
}
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
name 'prometheus'
|
||||||
|
maintainer 'Sous Chefs'
|
||||||
|
maintainer_email 'help@sous-chefs.org'
|
||||||
|
license 'Apache-2.0'
|
||||||
|
description 'Provides custom resources for installing and configuring Prometheus and Alertmanager'
|
||||||
|
version '1.0.0'
|
||||||
|
source_url 'https://github.com/sous-chefs/prometheus'
|
||||||
|
issues_url 'https://github.com/sous-chefs/prometheus/issues'
|
||||||
|
chef_version '>= 16.0'
|
||||||
|
|
||||||
|
depends 'ark'
|
||||||
|
|
||||||
|
supports 'almalinux', '>= 8.0'
|
||||||
|
supports 'amazon', '>= 2023.0'
|
||||||
|
supports 'centos_stream', '>= 9.0'
|
||||||
|
supports 'debian', '>= 12.0'
|
||||||
|
supports 'fedora'
|
||||||
|
supports 'oracle', '>= 8.0'
|
||||||
|
supports 'redhat', '>= 8.0'
|
||||||
|
supports 'rocky', '>= 8.0'
|
||||||
|
supports 'ubuntu', '>= 20.04'
|
||||||
@@ -0,0 +1,36 @@
|
|||||||
|
# Migration
|
||||||
|
|
||||||
|
This cookbook has been migrated from recipes and attributes to custom resources.
|
||||||
|
|
||||||
|
## Removed Entry Points
|
||||||
|
|
||||||
|
The `recipes/` and `attributes/` directories were removed. Wrapper cookbooks should call the resources directly and pass property values instead of overriding `node['prometheus']` attributes.
|
||||||
|
|
||||||
|
Legacy runit, upstart, and SysV init behavior was removed. Services are managed with Chef's `systemd_unit` resource.
|
||||||
|
|
||||||
|
## Resource Mapping
|
||||||
|
|
||||||
|
Use these resources in place of the old recipes:
|
||||||
|
|
||||||
|
* `prometheus_install` replaces `prometheus::binary`, `prometheus::shell_binary`, and `prometheus::source`.
|
||||||
|
* `prometheus_config` replaces the Prometheus configuration portion of `prometheus::default`.
|
||||||
|
* `prometheus_service` replaces `prometheus::service`.
|
||||||
|
* `prometheus_alertmanager_install` replaces `prometheus::alertmanager_binary` and `prometheus::alertmanager_source`.
|
||||||
|
* `prometheus_alertmanager_config` replaces the Alertmanager configuration portion of `prometheus::alertmanager`.
|
||||||
|
* `prometheus_alertmanager_service` replaces the Alertmanager service portion of `prometheus::alertmanager`.
|
||||||
|
* `prometheus_job` remains available and now uses explicit properties instead of node attributes.
|
||||||
|
|
||||||
|
## Example
|
||||||
|
|
||||||
|
```ruby
|
||||||
|
prometheus_install 'prometheus'
|
||||||
|
|
||||||
|
prometheus_config 'prometheus'
|
||||||
|
|
||||||
|
prometheus_job 'prometheus' do
|
||||||
|
scrape_interval '15s'
|
||||||
|
target 'localhost:9090'
|
||||||
|
end
|
||||||
|
|
||||||
|
prometheus_service 'prometheus'
|
||||||
|
```
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"packages": {
|
||||||
|
".": {
|
||||||
|
"package-name": "prometheus",
|
||||||
|
"changelog-path": "CHANGELOG.md",
|
||||||
|
"release-type": "ruby",
|
||||||
|
"include-component-in-tag": false,
|
||||||
|
"version-file": "metadata.rb"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
|
||||||
|
}
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
|
"extends": ["config:base"],
|
||||||
|
"packageRules": [
|
||||||
|
{
|
||||||
|
"groupName": "Actions",
|
||||||
|
"matchUpdateTypes": ["minor", "patch", "pin"],
|
||||||
|
"automerge": true,
|
||||||
|
"addLabels": ["Release: Patch", "Skip: Announcements"]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"groupName": "Actions",
|
||||||
|
"matchUpdateTypes": ["major"],
|
||||||
|
"automerge": false,
|
||||||
|
"addLabels": ["Release: Patch", "Skip: Announcements"]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
property :version, String, default: '0.32.0'
|
||||||
|
property :binary, String, default: '/opt/prometheus/alertmanager'
|
||||||
|
property :architecture, String, equal_to: %w(amd64 arm64), default: lazy {
|
||||||
|
node['kernel']['machine'] == 'aarch64' ? 'arm64' : 'amd64'
|
||||||
|
}
|
||||||
|
property :binary_url, String, default: lazy { "https://github.com/prometheus/alertmanager/releases/download/v#{version}/alertmanager-#{version}.linux-#{architecture}.tar.gz" }
|
||||||
|
property :checksum, String, default: lazy {
|
||||||
|
{
|
||||||
|
'amd64' => 'be72f50f6124ec53d944c0f100f8ec8108d969bade02fcc9f06a3068ff6c726f',
|
||||||
|
'arm64' => '7812e12699694974f57ecc0b0400913c6c0d90190630d4332a7994a44982b1ed',
|
||||||
|
}[architecture]
|
||||||
|
}
|
||||||
|
property :file_extension, String, default: ''
|
||||||
|
property :source_repository, String, default: 'https://github.com/prometheus/alertmanager.git'
|
||||||
|
property :source_revision, String, default: lazy { "v#{version}" }
|
||||||
|
property :config_file, String, default: '/opt/prometheus/alertmanager.yml'
|
||||||
|
property :storage_path, String, default: '/opt/prometheus/data'
|
||||||
|
property :external_url, String, default: 'http://127.0.0.1/alert-manager/'
|
||||||
|
property :log_level, String, default: 'debug'
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
property :install_dir, String, default: '/opt/prometheus'
|
||||||
|
property :log_dir, String, default: '/var/log/prometheus'
|
||||||
|
property :user, String, default: 'prometheus'
|
||||||
|
property :group, String, default: 'prometheus'
|
||||||
|
property :use_existing_user, [true, false], default: false
|
||||||
|
property :install_method, String, equal_to: %w(binary shell_binary source), default: 'binary'
|
||||||
@@ -0,0 +1,71 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
property :version, String, default: '3.11.2'
|
||||||
|
property :binary, String, default: '/opt/prometheus/prometheus'
|
||||||
|
property :architecture, String, equal_to: %w(amd64 arm64), default: lazy {
|
||||||
|
node['kernel']['machine'] == 'aarch64' ? 'arm64' : 'amd64'
|
||||||
|
}
|
||||||
|
property :binary_url, String, default: lazy { "https://github.com/prometheus/prometheus/releases/download/v#{version}/prometheus-#{version}.linux-#{architecture}.tar.gz" }
|
||||||
|
property :checksum, String, default: lazy {
|
||||||
|
{
|
||||||
|
'amd64' => 'f643ea1ee90d109329302d27bddb1fb2e52655b1fa84e9e26f9a6f340da144a6',
|
||||||
|
'arm64' => '4e40f115655a3021744137f49287846bc5a59e02835565748ff66b23e776a73d',
|
||||||
|
}[architecture]
|
||||||
|
}
|
||||||
|
property :file_extension, String, default: ''
|
||||||
|
property :source_repository, String, default: 'https://github.com/prometheus/prometheus.git'
|
||||||
|
property :source_revision, String, default: lazy { "v#{version}" }
|
||||||
|
property :config_file, String, default: '/opt/prometheus/prometheus.yml'
|
||||||
|
property :storage_path, String, default: '/var/lib/prometheus'
|
||||||
|
property :flags, Hash, default: lazy {
|
||||||
|
legacy_flags = {
|
||||||
|
'config.file' => config_file,
|
||||||
|
'log.level' => 'info',
|
||||||
|
'alertmanager.timeout' => '10s',
|
||||||
|
'alertmanager.notification-queue-capacity' => 100,
|
||||||
|
'alertmanager.url' => 'http://127.0.0.1/alert-manager/',
|
||||||
|
'query.max-concurrency' => 20,
|
||||||
|
'query.staleness-delta' => '5m',
|
||||||
|
'query.timeout' => '2m',
|
||||||
|
'storage.local.checkpoint-dirty-series-limit' => 5000,
|
||||||
|
'storage.local.checkpoint-interval' => '5m',
|
||||||
|
'storage.local.dirty' => false,
|
||||||
|
'storage.local.index-cache-size.fingerprint-to-metric' => 10_485_760,
|
||||||
|
'storage.local.index-cache-size.fingerprint-to-timerange' => 5_242_880,
|
||||||
|
'storage.local.index-cache-size.label-name-to-label-values' => 10_485_760,
|
||||||
|
'storage.local.index-cache-size.label-pair-to-fingerprints' => 20_971_520,
|
||||||
|
'storage.local.memory-chunks' => 1_048_576,
|
||||||
|
'storage.local.path' => storage_path,
|
||||||
|
'storage.local.pedantic-checks' => false,
|
||||||
|
'storage.local.retention' => '360h0m0s',
|
||||||
|
'storage.local.series-sync-strategy' => 'adaptive',
|
||||||
|
'storage.remote.influxdb-url' => '',
|
||||||
|
'storage.remote.influxdb.database' => 'prometheus',
|
||||||
|
'storage.remote.influxdb.retention-policy' => 'default',
|
||||||
|
'storage.remote.opentsdb-url' => '',
|
||||||
|
'storage.remote.timeout' => '30s',
|
||||||
|
'web.console.libraries' => 'console_libraries',
|
||||||
|
'web.console.templates' => 'consoles',
|
||||||
|
'web.enable-remote-shutdown' => false,
|
||||||
|
'web.external-url' => '',
|
||||||
|
'web.listen-address' => ':9090',
|
||||||
|
'web.telemetry-path' => '/metrics',
|
||||||
|
'web.user-assets' => '',
|
||||||
|
}
|
||||||
|
legacy_flags['web.use-local-assets'] = false if Gem::Version.new(version) <= Gem::Version.new('0.16.2')
|
||||||
|
legacy_flags
|
||||||
|
}
|
||||||
|
property :cli_options, Hash, default: lazy {
|
||||||
|
{
|
||||||
|
'config.file' => config_file,
|
||||||
|
'log.level' => 'info',
|
||||||
|
'query.max-concurrency' => 20,
|
||||||
|
'query.lookback-delta' => '5m',
|
||||||
|
'query.timeout' => '2m',
|
||||||
|
'storage.tsdb.path' => storage_path,
|
||||||
|
'storage.tsdb.retention.time' => '15d',
|
||||||
|
'web.listen-address' => ':9090',
|
||||||
|
'web.telemetry-path' => '/metrics',
|
||||||
|
}
|
||||||
|
}
|
||||||
|
property :cli_flags, Array, default: ['web.enable-lifecycle']
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
provides :prometheus_alertmanager_config
|
||||||
|
unified_mode true
|
||||||
|
|
||||||
|
use '_partial/_common'
|
||||||
|
use '_partial/_alertmanager'
|
||||||
|
|
||||||
|
property :template_cookbook, String, default: 'prometheus'
|
||||||
|
property :template_source, String, default: 'alertmanager.yml.erb'
|
||||||
|
property :notification_config, Hash, default: {}
|
||||||
|
|
||||||
|
default_action :create
|
||||||
|
|
||||||
|
action :create do
|
||||||
|
template new_resource.config_file do
|
||||||
|
cookbook new_resource.template_cookbook
|
||||||
|
source new_resource.template_source
|
||||||
|
mode '0644'
|
||||||
|
owner new_resource.user
|
||||||
|
group new_resource.group
|
||||||
|
variables(notification_config: new_resource.notification_config)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
action :delete do
|
||||||
|
file new_resource.config_file do
|
||||||
|
action :delete
|
||||||
|
end
|
||||||
|
end
|
||||||
@@ -0,0 +1,89 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
provides :prometheus_alertmanager_install
|
||||||
|
unified_mode true
|
||||||
|
|
||||||
|
use '_partial/_common'
|
||||||
|
use '_partial/_alertmanager'
|
||||||
|
|
||||||
|
default_action :install
|
||||||
|
|
||||||
|
action_class do
|
||||||
|
include PrometheusCookbook::Helpers
|
||||||
|
end
|
||||||
|
|
||||||
|
action :install do
|
||||||
|
user new_resource.user do
|
||||||
|
system true
|
||||||
|
shell '/bin/false'
|
||||||
|
home new_resource.install_dir
|
||||||
|
not_if { new_resource.use_existing_user || new_resource.user == 'root' }
|
||||||
|
end
|
||||||
|
|
||||||
|
directory new_resource.install_dir do
|
||||||
|
owner new_resource.user
|
||||||
|
group new_resource.group
|
||||||
|
mode '0755'
|
||||||
|
recursive true
|
||||||
|
end
|
||||||
|
|
||||||
|
directory new_resource.log_dir do
|
||||||
|
owner new_resource.user
|
||||||
|
group new_resource.group
|
||||||
|
mode '0755'
|
||||||
|
recursive true
|
||||||
|
end
|
||||||
|
|
||||||
|
directory new_resource.storage_path do
|
||||||
|
owner new_resource.user
|
||||||
|
group new_resource.group
|
||||||
|
mode '0755'
|
||||||
|
recursive true
|
||||||
|
end
|
||||||
|
|
||||||
|
case new_resource.install_method
|
||||||
|
when 'binary'
|
||||||
|
package %w(tar bzip2)
|
||||||
|
|
||||||
|
ark install_dir_name(new_resource.install_dir) do
|
||||||
|
url new_resource.binary_url
|
||||||
|
checksum new_resource.checksum
|
||||||
|
version new_resource.version
|
||||||
|
prefix_root Chef::Config['file_cache_path']
|
||||||
|
path install_dir_parent(new_resource.install_dir)
|
||||||
|
owner new_resource.user
|
||||||
|
group new_resource.group
|
||||||
|
extension new_resource.file_extension unless new_resource.file_extension.empty?
|
||||||
|
action :put
|
||||||
|
end
|
||||||
|
when 'shell_binary'
|
||||||
|
package %w(tar bzip2)
|
||||||
|
|
||||||
|
remote_file "#{Chef::Config[:file_cache_path]}/alertmanager-#{new_resource.version}.tar.gz" do
|
||||||
|
source new_resource.binary_url
|
||||||
|
checksum new_resource.checksum
|
||||||
|
action :create
|
||||||
|
notifies :run, 'execute[install_alertmanager_archive]', :immediately
|
||||||
|
end
|
||||||
|
|
||||||
|
execute 'install_alertmanager_archive' do
|
||||||
|
command "tar -xzf #{Chef::Config[:file_cache_path]}/alertmanager-#{new_resource.version}.tar.gz -C #{new_resource.install_dir} --strip-components=1"
|
||||||
|
action :nothing
|
||||||
|
end
|
||||||
|
when 'source'
|
||||||
|
build_essential 'install compilation tools'
|
||||||
|
|
||||||
|
package %w(curl git-core mercurial gzip sed)
|
||||||
|
|
||||||
|
git "#{Chef::Config[:file_cache_path]}/alertmanager-#{new_resource.version}" do
|
||||||
|
repository new_resource.source_repository
|
||||||
|
revision new_resource.source_revision
|
||||||
|
action :checkout
|
||||||
|
end
|
||||||
|
|
||||||
|
bash 'compile_alertmanager_source' do
|
||||||
|
cwd "#{Chef::Config[:file_cache_path]}/alertmanager-#{new_resource.version}"
|
||||||
|
code "make && mv alertmanager #{new_resource.install_dir}"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
@@ -0,0 +1,56 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
provides :prometheus_alertmanager_service
|
||||||
|
unified_mode true
|
||||||
|
|
||||||
|
use '_partial/_common'
|
||||||
|
use '_partial/_alertmanager'
|
||||||
|
|
||||||
|
default_action :create
|
||||||
|
|
||||||
|
action_class do
|
||||||
|
include PrometheusCookbook::Helpers
|
||||||
|
end
|
||||||
|
|
||||||
|
action :create do
|
||||||
|
systemd_unit 'alertmanager.service' do
|
||||||
|
content alertmanager_unit_content(new_resource)
|
||||||
|
action [:create, :enable, :start]
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
action :enable do
|
||||||
|
systemd_unit 'alertmanager.service' do
|
||||||
|
action :enable
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
action :start do
|
||||||
|
systemd_unit 'alertmanager.service' do
|
||||||
|
action :start
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
action :restart do
|
||||||
|
systemd_unit 'alertmanager.service' do
|
||||||
|
action :restart
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
action :reload do
|
||||||
|
systemd_unit 'alertmanager.service' do
|
||||||
|
action :reload
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
action :stop do
|
||||||
|
systemd_unit 'alertmanager.service' do
|
||||||
|
action [:stop, :disable]
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
action :delete do
|
||||||
|
systemd_unit 'alertmanager.service' do
|
||||||
|
action [:stop, :disable, :delete]
|
||||||
|
end
|
||||||
|
end
|
||||||
@@ -0,0 +1,44 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
provides :prometheus_config
|
||||||
|
unified_mode true
|
||||||
|
|
||||||
|
use '_partial/_common'
|
||||||
|
use '_partial/_prometheus'
|
||||||
|
|
||||||
|
property :template_cookbook, String, default: 'prometheus'
|
||||||
|
property :template_source, String, default: 'prometheus.yml.erb'
|
||||||
|
property :rule_filenames, [Array, nil], default: nil
|
||||||
|
property :global_config, Hash, default: {
|
||||||
|
'scrape_interval' => '60s',
|
||||||
|
'evaluation_interval' => '60s',
|
||||||
|
}
|
||||||
|
property :allow_external_config, [true, false], default: false
|
||||||
|
|
||||||
|
default_action :create
|
||||||
|
|
||||||
|
action :create do
|
||||||
|
config_resource = new_resource
|
||||||
|
|
||||||
|
with_run_context :root do
|
||||||
|
template config_resource.config_file do
|
||||||
|
cookbook config_resource.template_cookbook
|
||||||
|
source config_resource.template_source
|
||||||
|
mode '0644'
|
||||||
|
owner config_resource.user
|
||||||
|
group config_resource.group
|
||||||
|
variables(
|
||||||
|
global_config: config_resource.global_config,
|
||||||
|
jobs: {},
|
||||||
|
rule_filenames: config_resource.rule_filenames
|
||||||
|
)
|
||||||
|
not_if { config_resource.allow_external_config }
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
action :delete do
|
||||||
|
file new_resource.config_file do
|
||||||
|
action :delete
|
||||||
|
end
|
||||||
|
end
|
||||||
@@ -0,0 +1,98 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
provides :prometheus_install
|
||||||
|
unified_mode true
|
||||||
|
|
||||||
|
use '_partial/_common'
|
||||||
|
use '_partial/_prometheus'
|
||||||
|
|
||||||
|
default_action :install
|
||||||
|
|
||||||
|
action_class do
|
||||||
|
include PrometheusCookbook::Helpers
|
||||||
|
end
|
||||||
|
|
||||||
|
action :install do
|
||||||
|
user new_resource.user do
|
||||||
|
system true
|
||||||
|
shell '/bin/false'
|
||||||
|
home new_resource.install_dir
|
||||||
|
not_if { new_resource.use_existing_user || new_resource.user == 'root' }
|
||||||
|
end
|
||||||
|
|
||||||
|
directory new_resource.install_dir do
|
||||||
|
owner new_resource.user
|
||||||
|
group new_resource.group
|
||||||
|
mode '0755'
|
||||||
|
recursive true
|
||||||
|
end
|
||||||
|
|
||||||
|
directory new_resource.log_dir do
|
||||||
|
owner new_resource.user
|
||||||
|
group new_resource.group
|
||||||
|
mode '0755'
|
||||||
|
recursive true
|
||||||
|
end
|
||||||
|
|
||||||
|
directory new_resource.storage_path do
|
||||||
|
owner new_resource.user
|
||||||
|
group new_resource.group
|
||||||
|
mode '0755'
|
||||||
|
recursive true
|
||||||
|
end
|
||||||
|
|
||||||
|
case new_resource.install_method
|
||||||
|
when 'binary'
|
||||||
|
package %w(tar bzip2)
|
||||||
|
|
||||||
|
ark install_dir_name(new_resource.install_dir) do
|
||||||
|
url new_resource.binary_url
|
||||||
|
checksum new_resource.checksum
|
||||||
|
version new_resource.version
|
||||||
|
prefix_root Chef::Config['file_cache_path']
|
||||||
|
path install_dir_parent(new_resource.install_dir)
|
||||||
|
owner new_resource.user
|
||||||
|
group new_resource.group
|
||||||
|
extension new_resource.file_extension unless new_resource.file_extension.empty?
|
||||||
|
action :put
|
||||||
|
end
|
||||||
|
when 'shell_binary'
|
||||||
|
package %w(tar bzip2)
|
||||||
|
|
||||||
|
remote_file "#{Chef::Config[:file_cache_path]}/prometheus-#{new_resource.version}.tar.gz" do
|
||||||
|
source new_resource.binary_url
|
||||||
|
checksum new_resource.checksum
|
||||||
|
action :create
|
||||||
|
notifies :run, 'execute[install_prometheus_archive]', :immediately
|
||||||
|
end
|
||||||
|
|
||||||
|
execute 'install_prometheus_archive' do
|
||||||
|
command "tar -xzf #{Chef::Config[:file_cache_path]}/prometheus-#{new_resource.version}.tar.gz -C #{new_resource.install_dir} --strip-components=1"
|
||||||
|
action :nothing
|
||||||
|
end
|
||||||
|
when 'source'
|
||||||
|
build_essential 'install compilation tools'
|
||||||
|
|
||||||
|
package %w(curl git-core mercurial gzip sed)
|
||||||
|
|
||||||
|
git "#{Chef::Config[:file_cache_path]}/prometheus-#{new_resource.version}" do
|
||||||
|
repository new_resource.source_repository
|
||||||
|
revision new_resource.source_revision
|
||||||
|
action :checkout
|
||||||
|
end
|
||||||
|
|
||||||
|
bash 'compile_prometheus_source' do
|
||||||
|
cwd "#{Chef::Config[:file_cache_path]}/prometheus-#{new_resource.version}"
|
||||||
|
environment(
|
||||||
|
'PATH' => "/usr/local/go/bin:#{ENV.fetch('PATH', nil)}",
|
||||||
|
'GOPATH' => '/opt/go:/opt/go/src/github.com/prometheus/promu/vendor'
|
||||||
|
)
|
||||||
|
code <<~EOH
|
||||||
|
make build
|
||||||
|
mv prometheus #{new_resource.install_dir}
|
||||||
|
cp -R console_libraries #{new_resource.install_dir}
|
||||||
|
cp -R consoles #{new_resource.install_dir}
|
||||||
|
EOH
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
@@ -0,0 +1,41 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
provides :prometheus_job
|
||||||
|
unified_mode true
|
||||||
|
|
||||||
|
property :scrape_interval, String
|
||||||
|
property :scrape_timeout, String
|
||||||
|
property :labels, Hash
|
||||||
|
property :target, [Array, String], required: true
|
||||||
|
property :metrics_path, String, default: '/metrics'
|
||||||
|
property :config_file, String, default: '/opt/prometheus/prometheus.yml'
|
||||||
|
property :allow_external_config, [true, false], default: false
|
||||||
|
|
||||||
|
default_action :create
|
||||||
|
|
||||||
|
action :create do
|
||||||
|
job_resource = new_resource
|
||||||
|
|
||||||
|
with_run_context :root do
|
||||||
|
edit_resource(:template, job_resource.config_file) do
|
||||||
|
variables[:jobs] ||= {}
|
||||||
|
variables[:jobs][job_resource.name] ||= {}
|
||||||
|
variables[:jobs][job_resource.name]['scrape_interval'] = job_resource.scrape_interval
|
||||||
|
variables[:jobs][job_resource.name]['scrape_timeout'] = job_resource.scrape_timeout
|
||||||
|
variables[:jobs][job_resource.name]['target'] = job_resource.target
|
||||||
|
variables[:jobs][job_resource.name]['metrics_path'] = job_resource.metrics_path
|
||||||
|
variables[:jobs][job_resource.name]['labels'] = job_resource.labels
|
||||||
|
|
||||||
|
action :nothing
|
||||||
|
delayed_action :create
|
||||||
|
|
||||||
|
not_if { job_resource.allow_external_config }
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
action :delete do
|
||||||
|
file new_resource.config_file do
|
||||||
|
action :delete
|
||||||
|
end
|
||||||
|
end
|
||||||
@@ -0,0 +1,56 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
provides :prometheus_service
|
||||||
|
unified_mode true
|
||||||
|
|
||||||
|
use '_partial/_common'
|
||||||
|
use '_partial/_prometheus'
|
||||||
|
|
||||||
|
default_action :create
|
||||||
|
|
||||||
|
action_class do
|
||||||
|
include PrometheusCookbook::Helpers
|
||||||
|
end
|
||||||
|
|
||||||
|
action :create do
|
||||||
|
systemd_unit 'prometheus.service' do
|
||||||
|
content prometheus_unit_content(new_resource)
|
||||||
|
action [:create, :enable, :start]
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
action :enable do
|
||||||
|
systemd_unit 'prometheus.service' do
|
||||||
|
action :enable
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
action :start do
|
||||||
|
systemd_unit 'prometheus.service' do
|
||||||
|
action :start
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
action :restart do
|
||||||
|
systemd_unit 'prometheus.service' do
|
||||||
|
action :restart
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
action :reload do
|
||||||
|
systemd_unit 'prometheus.service' do
|
||||||
|
action :reload
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
action :stop do
|
||||||
|
systemd_unit 'prometheus.service' do
|
||||||
|
action [:stop, :disable]
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
action :delete do
|
||||||
|
systemd_unit 'prometheus.service' do
|
||||||
|
action [:stop, :disable, :delete]
|
||||||
|
end
|
||||||
|
end
|
||||||
@@ -0,0 +1,115 @@
|
|||||||
|
global:
|
||||||
|
# The smarthost and SMTP sender used for mail notifications.
|
||||||
|
smtp_smarthost: 'localhost:25'
|
||||||
|
smtp_from: 'alertmanager@example.org'
|
||||||
|
|
||||||
|
# The root route on which each incoming alert enters.
|
||||||
|
route:
|
||||||
|
# The root route must not have any matchers as it is the entry point for
|
||||||
|
# all alerts. It needs to have a receiver configured so alerts that do not
|
||||||
|
# match any of the sub-routes are sent to someone.
|
||||||
|
receiver: 'team-X-mails'
|
||||||
|
|
||||||
|
# The labels by which incoming alerts are grouped together. For example,
|
||||||
|
# multiple alerts coming in for cluster=A and alertname=LatencyHigh would
|
||||||
|
# be batched into a single group.
|
||||||
|
group_by: ['alertname', 'cluster']
|
||||||
|
|
||||||
|
# When a new group of alerts is created by an incoming alert, wait at
|
||||||
|
# least 'group_wait' to send the initial notification.
|
||||||
|
# This way ensures that you get multiple alerts for the same group that start
|
||||||
|
# firing shortly after another are batched together on the first
|
||||||
|
# notification.
|
||||||
|
group_wait: 30s
|
||||||
|
|
||||||
|
# When the first notification was sent, wait 'group_interval' to send a batch
|
||||||
|
# of new alerts that started firing for that group.
|
||||||
|
group_interval: 5m
|
||||||
|
|
||||||
|
# If an alert has successfully been sent, wait 'repeat_interval' to
|
||||||
|
# resend them.
|
||||||
|
repeat_interval: 3h
|
||||||
|
|
||||||
|
# All the above attributes are inherited by all child routes and can
|
||||||
|
# overwritten on each.
|
||||||
|
|
||||||
|
# The child route trees.
|
||||||
|
routes:
|
||||||
|
# This routes performs a regular expression match on alert labels to
|
||||||
|
# catch alerts that are related to a list of services.
|
||||||
|
- match_re:
|
||||||
|
service: ^(foo1|foo2|baz)$
|
||||||
|
receiver: team-X-mails
|
||||||
|
|
||||||
|
# The service has a sub-route for critical alerts, any alerts
|
||||||
|
# that do not match, i.e. severity != critical, fall-back to the
|
||||||
|
# parent node and are sent to 'team-X-mails'
|
||||||
|
routes:
|
||||||
|
- match:
|
||||||
|
severity: critical
|
||||||
|
receiver: team-X-pager
|
||||||
|
|
||||||
|
- match:
|
||||||
|
service: files
|
||||||
|
receiver: team-Y-mails
|
||||||
|
|
||||||
|
routes:
|
||||||
|
- match:
|
||||||
|
severity: critical
|
||||||
|
receiver: team-Y-pager
|
||||||
|
|
||||||
|
# This route handles all alerts coming from a database service. If there's
|
||||||
|
# no team to handle it, it defaults to the DB team.
|
||||||
|
- match:
|
||||||
|
service: database
|
||||||
|
|
||||||
|
receiver: team-DB-pager
|
||||||
|
# Also group alerts by affected database.
|
||||||
|
group_by: [alertname, cluster, database]
|
||||||
|
|
||||||
|
routes:
|
||||||
|
- match:
|
||||||
|
owner: team-X
|
||||||
|
receiver: team-X-pager
|
||||||
|
|
||||||
|
- match:
|
||||||
|
owner: team-Y
|
||||||
|
receiver: team-Y-pager
|
||||||
|
|
||||||
|
|
||||||
|
# Inhibition rules allow to mute a set of alerts given that another alert is
|
||||||
|
# firing.
|
||||||
|
# We use this to mute any warning-level notifications if the same alert is
|
||||||
|
# already critical.
|
||||||
|
inhibit_rules:
|
||||||
|
- source_match:
|
||||||
|
severity: 'critical'
|
||||||
|
target_match:
|
||||||
|
severity: 'warning'
|
||||||
|
# Apply inhibition if the alertname is the same.
|
||||||
|
equal: ['alertname']
|
||||||
|
|
||||||
|
|
||||||
|
receivers:
|
||||||
|
- name: 'team-X-mails'
|
||||||
|
email_configs:
|
||||||
|
- to: 'team-X+alerts@example.org'
|
||||||
|
|
||||||
|
- name: 'team-X-pager'
|
||||||
|
email_configs:
|
||||||
|
- to: 'team-X+alerts-critical@example.org'
|
||||||
|
pagerduty_configs:
|
||||||
|
- service_key: <team-X-key>
|
||||||
|
|
||||||
|
- name: 'team-Y-mails'
|
||||||
|
email_configs:
|
||||||
|
- to: 'team-Y+alerts@example.org'
|
||||||
|
|
||||||
|
- name: 'team-Y-pager'
|
||||||
|
pagerduty_configs:
|
||||||
|
- service_key: <team-Y-key>
|
||||||
|
|
||||||
|
- name: 'team-DB-pager'
|
||||||
|
pagerduty_configs:
|
||||||
|
- service_key: <team-DB-key>
|
||||||
|
|
||||||
@@ -0,0 +1,33 @@
|
|||||||
|
# Global default settings.
|
||||||
|
global:
|
||||||
|
<% @global_config.each do |k,v| %>
|
||||||
|
<%=k%>: "<%=v%>"
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
scrape_configs:
|
||||||
|
<% @jobs.each do |name, job| %>
|
||||||
|
- job_name: "<%= name %>"
|
||||||
|
<% if job['scrape_interval'] %>
|
||||||
|
scrape_interval: "<%= job['scrape_interval'] %>"
|
||||||
|
<% end %>
|
||||||
|
<% if job['scrape_timeout'] %>
|
||||||
|
scrape_timeout: "<%= job['scrape_timeout'] %>"
|
||||||
|
<% end %>
|
||||||
|
metrics_path: "<%= job['metrics_path'] %>"
|
||||||
|
static_configs:
|
||||||
|
- targets: <%= Array(job['target']) %>
|
||||||
|
<%if job['labels'] %>
|
||||||
|
labels:
|
||||||
|
<% job['labels'].each do |label,label_config| %>
|
||||||
|
<%=label%>: <%=label_config%>
|
||||||
|
<%end%>
|
||||||
|
<%end%>
|
||||||
|
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
<% if @rule_filenames %>
|
||||||
|
rule_files:
|
||||||
|
<% @rule_filenames.each do |filename| %>
|
||||||
|
- <%= filename %>
|
||||||
|
<% end %>
|
||||||
|
<% end %>
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
{
|
||||||
|
"id": "blossom",
|
||||||
|
"admin_password": {
|
||||||
|
"encrypted_data": "Gd6AzFmySL0p+xo1PnRn9p4Fwge1m3CQj+NRLIUD8P9u1C8=\n",
|
||||||
|
"iv": "l6KVzF9xEEBRRAmh\n",
|
||||||
|
"auth_tag": "P791KMh9TxuHiWJpDKxWQA==\n",
|
||||||
|
"version": 3,
|
||||||
|
"cipher": "aes-256-gcm"
|
||||||
|
},
|
||||||
|
"s3_access_key": {
|
||||||
|
"encrypted_data": "S8jB2LDQOxI/p5ugggW1Sk50TS9TJe9sLv04O/VD9/v22SSM7J6ETomTA+Hd\n",
|
||||||
|
"iv": "dUIIZbdAT9q72ioX\n",
|
||||||
|
"auth_tag": "+5fCNOuTE/+FqdV6rDNbkw==\n",
|
||||||
|
"version": 3,
|
||||||
|
"cipher": "aes-256-gcm"
|
||||||
|
},
|
||||||
|
"s3_secret_key": {
|
||||||
|
"encrypted_data": "soT63l2frBJDNmHetXmEPvNYBsTpvTyR95FA2rxuZXvVE7hMj21La8/0Amk7\nv+mHOBUMaGG9BTLN0tVFkL0+lGPXdZJTbtDHgluk5l6lLPyc8KY=\n",
|
||||||
|
"iv": "RuXs2pL9C/wpwJ/w\n",
|
||||||
|
"auth_tag": "nu7dE2udTkxaUZCR42h09w==\n",
|
||||||
|
"version": 3,
|
||||||
|
"cipher": "aes-256-gcm"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,23 +1,16 @@
|
|||||||
{
|
{
|
||||||
"id": "gandi_api",
|
"id": "gandi_api",
|
||||||
"key": {
|
|
||||||
"encrypted_data": "lU7/xYTmP5Sb6SsK5TNNIyegWozzBtUzpg7oDdl6gcz9FEMmG2ft0Ljh5Q==\n",
|
|
||||||
"iv": "EZPQD3C+wsP/mBhF\n",
|
|
||||||
"auth_tag": "vF9E8Pj4Z8quJJdOMg/QTw==\n",
|
|
||||||
"version": 3,
|
|
||||||
"cipher": "aes-256-gcm"
|
|
||||||
},
|
|
||||||
"access_token": {
|
"access_token": {
|
||||||
"encrypted_data": "1Uw69JkNrmb8LU/qssuod1SlqxxrWR7TJQZeeivRrNzrMIVTEW/1uwJIYL6b\nM4GeeYl9lIRlMMmLBkc=\n",
|
"encrypted_data": "+skwxHnpAj/3d3e2u7s7B9EydbETj8b0flWahvb5gt/o4JYFWHrhIyX/0IVa\n4wgmu08eDgU51i0knGA=\n",
|
||||||
"iv": "cc1GJKu6Cf4DkIgX\n",
|
"iv": "ONKrFCt8Oj3GKIQ5\n",
|
||||||
"auth_tag": "ERem4S7ozG695kjvWIMghw==\n",
|
"auth_tag": "j9Hrk8ZZFMQub4NUO+2e4g==\n",
|
||||||
"version": 3,
|
"version": 3,
|
||||||
"cipher": "aes-256-gcm"
|
"cipher": "aes-256-gcm"
|
||||||
},
|
},
|
||||||
"domains": {
|
"domains": {
|
||||||
"encrypted_data": "scZ5blsSjs54DlitR7KZ3enLbyceOR5q0wjHw1golQ==\n",
|
"encrypted_data": "lGfoPHdXEYYdJmoIA9M119wjVl1v4UzIv5gHADwx0A==\n",
|
||||||
"iv": "oDcHm7shAzW97b4t\n",
|
"iv": "q6XKbxhW7X9ONxNt\n",
|
||||||
"auth_tag": "62Zais9yf68SwmZRsmZ3hw==\n",
|
"auth_tag": "ns9WJH8Oe75siWu+sOZkRg==\n",
|
||||||
"version": 3,
|
"version": 3,
|
||||||
"cipher": "aes-256-gcm"
|
"cipher": "aes-256-gcm"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,287 @@
|
|||||||
|
# Migrating PostgreSQL cluster to a new major version
|
||||||
|
|
||||||
|
## Summary
|
||||||
|
|
||||||
|
1. Dump from a replica
|
||||||
|
2. Restore to fresh VM running new major version
|
||||||
|
3. Add logical replication for delta sync from current/old primary
|
||||||
|
4. Switch primary to new server
|
||||||
|
5. Remove logical replication on new server
|
||||||
|
|
||||||
|
## Runbook
|
||||||
|
|
||||||
|
* Primary host: `PRIMARY_HOST`
|
||||||
|
* Replica host: `REPLICA_HOST`
|
||||||
|
* New PG14 host: `NEW_HOST`
|
||||||
|
* PostgreSQL superuser: `postgres`
|
||||||
|
* Running locally on each machine via `sudo -u postgres`
|
||||||
|
|
||||||
|
Adjust hostnames/IPs/etc. where needed.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### 🟢 0. PRIMARY — Pre-checks
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo -u postgres psql -c "SHOW wal_level;"
|
||||||
|
sudo -u postgres psql -c "SHOW max_replication_slots;"
|
||||||
|
```
|
||||||
|
|
||||||
|
If needed, edit config:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo -u postgres vi $PGDATA/postgresql.conf
|
||||||
|
```
|
||||||
|
|
||||||
|
Ensure:
|
||||||
|
|
||||||
|
```conf
|
||||||
|
wal_level = logical
|
||||||
|
max_replication_slots = 10
|
||||||
|
```
|
||||||
|
|
||||||
|
Restart if changed:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo systemctl restart postgresql
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### 🔵🟡 3. Create keypair for syncing dump later
|
||||||
|
|
||||||
|
🔵 On NEW_HOST:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo mkdir -p /home/postgres/.ssh && \
|
||||||
|
sudo chown -R postgres:postgres /home/postgres && \
|
||||||
|
sudo chmod 700 /home/postgres/.ssh && \
|
||||||
|
sudo -u postgres bash -c 'ssh-keygen -t ecdsa -b 256 -f /home/postgres/.ssh/id_ecdsa -N "" -C "postgres@$(hostname)"' && \
|
||||||
|
sudo cat /home/postgres/.ssh/id_ecdsa.pub
|
||||||
|
```
|
||||||
|
|
||||||
|
Copy the public key from the above output
|
||||||
|
|
||||||
|
🟡 On replica:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo mkdir -p /home/postgres/.ssh && \
|
||||||
|
sudo chown -R postgres:postgres /home/postgres && \
|
||||||
|
sudo chmod 700 /home/postgres/.ssh && \
|
||||||
|
echo [public_key] | sudo tee /home/postgres/.ssh/authorized_keys > /dev/null && \
|
||||||
|
sudo chmod 700 /home/postgres/.ssh
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### 🟢 1. PRIMARY — Create publication and replication slots
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo -u postgres pg_create_replication_publications
|
||||||
|
```
|
||||||
|
|
||||||
|
or
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo -u postgres pg_create_replication_publication [db_name]
|
||||||
|
```
|
||||||
|
|
||||||
|
Listing publications and slots:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo -u postgres pg_list_replication_publications
|
||||||
|
sudo -u postgres pg_list_replication_slots
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### 🟡 3. REPLICA — Pause replication
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo -u postgres psql -c "SELECT pg_wal_replay_pause();"
|
||||||
|
```
|
||||||
|
|
||||||
|
Verify:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo -u postgres psql -c "SELECT pg_is_wal_replay_paused();"
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### 🟡 4. REPLICA — Run dump
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo -u postgres pg_dump_all_databases
|
||||||
|
```
|
||||||
|
|
||||||
|
or
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo -u postgres bash -c "pg_dumpall --globals-only > /tmp/globals.sql"
|
||||||
|
sudo -u postgres pg_dump_database [db_name]
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### 🟡 5. REPLICA — Resume replication
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo -u postgres psql -c "SELECT pg_wal_replay_resume();"
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### 🔵 6. COPY dumps to NEW HOST
|
||||||
|
|
||||||
|
From NEW_HOST:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
export REPLICA_HOST=[private_ip] && \
|
||||||
|
cd /tmp && \
|
||||||
|
sudo -u postgres scp "postgres@$REPLICA_HOST:/tmp/globals.sql" . && \
|
||||||
|
sudo -u postgres scp "postgres@$REPLICA_HOST:/tmp/dump_*.tar.zst" .
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### 🔵 7. NEW HOST (PostgreSQL 14) — Restore
|
||||||
|
|
||||||
|
#### 7.1 Restore globals
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo -u postgres psql -f /tmp/globals.sql
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
#### 7.2 Create databases
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo -u postgres psql -Atqc "SELECT datname FROM pg_database WHERE datallowconn AND datname NOT IN ('template1')" | \
|
||||||
|
xargs -I{} sudo -u postgres createdb {}
|
||||||
|
```
|
||||||
|
|
||||||
|
or
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo -u postgres createdb [db_name]
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
#### 7.3 Restore each database
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo -u postgres pg_restore_all_databases
|
||||||
|
```
|
||||||
|
|
||||||
|
or
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo -u postgres pg_restore_database [db_name]
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### 🔵 8. NEW HOST — Create subscriptions
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo -u postgres pg_create_replication_subscriptions
|
||||||
|
```
|
||||||
|
|
||||||
|
or
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo -u postgres pg_create_replication_subscription [db_name]
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### 🔵 9. NEW HOST — Monitor replication
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo -u postgres pg_list_replication_subscriptions
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### 🔴 11. CUTOVER
|
||||||
|
|
||||||
|
#### 11.1 Stop writes on old primary
|
||||||
|
|
||||||
|
Put app(s) in maintenance mode, stop the app/daemons.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
#### 11.2 Wait for replication to catch up
|
||||||
|
|
||||||
|
TODO: not the best way to check, since WAL LSNs keep increasing
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo -u postgres psql -d [db_name] -c "SELECT * FROM pg_stat_subscription;"
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
#### 11.3 Fix sequences
|
||||||
|
|
||||||
|
Run per DB:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo -u postgres pg_fix_sequences_in_all_databases
|
||||||
|
```
|
||||||
|
|
||||||
|
or
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo -u postgres pg_fix_sequences [db_name]
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
#### 11.4 Point app to NEW_HOST
|
||||||
|
|
||||||
|
1. Update `pg.kosmos.local` in `/etc/hosts` on app server(s). For example:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
export NEW_PG_PRIMARY=[private_ip]
|
||||||
|
knife ssh roles:ejabberd -a knife_zero.host "sudo sed -r \"s/^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+\s(pg.kosmos.local)/$NEW_PG_PRIMARY\t\1/\" -i /etc/hosts"
|
||||||
|
```
|
||||||
|
|
||||||
|
Or override node attribute(s) if necessary and/or approporiate.
|
||||||
|
|
||||||
|
2. Start the app/daemons, and deactivate maintenance mode.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### 🧹 12. CLEANUP NEW_HOST
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo -u postgres pg_drop_replication_subscriptions
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### 🧹 13. CLEANUP PRIMARY
|
||||||
|
|
||||||
|
TODO: Looks like slots are dropped automatically, when subscriptions are dropped
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo -u postgres pg_drop_replication_publications
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### 🧹 13. CLEANUP Chef
|
||||||
|
|
||||||
|
Once all apps/databases are migrated, update the role in the node
|
||||||
|
config of the new primary to 'postgres_primary' and converge it.
|
||||||
|
|
||||||
|
Also delete the old primary node config from the Chef repo.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### ✅ DONE
|
||||||
|
|
||||||
|
---
|
||||||
@@ -18,6 +18,16 @@
|
|||||||
"relay_url": "wss://nostr.kosmos.org"
|
"relay_url": "wss://nostr.kosmos.org"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"blossom": {
|
||||||
|
"domain": "blossom.kosmos.org",
|
||||||
|
"storage": {
|
||||||
|
"s3": {
|
||||||
|
"endpoint": "s3.kosmos.org",
|
||||||
|
"region": "garage",
|
||||||
|
"bucket": "blossom"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"discourse": {
|
"discourse": {
|
||||||
"domain": "community.kosmos.org"
|
"domain": "community.kosmos.org"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -67,13 +67,13 @@
|
|||||||
"cloud": null,
|
"cloud": null,
|
||||||
"chef_packages": {
|
"chef_packages": {
|
||||||
"chef": {
|
"chef": {
|
||||||
"version": "18.2.7",
|
"version": "18.10.17",
|
||||||
"chef_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/chef-18.2.7/lib",
|
"chef_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/chef-18.10.17/lib",
|
||||||
"chef_effortless": null
|
"chef_effortless": null
|
||||||
},
|
},
|
||||||
"ohai": {
|
"ohai": {
|
||||||
"version": "18.1.4",
|
"version": "18.2.13",
|
||||||
"ohai_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/ohai-18.1.4/lib/ohai"
|
"ohai_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/ohai-18.2.13/lib/ohai"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
"automatic": {
|
"automatic": {
|
||||||
"fqdn": "bitcoin-2",
|
"fqdn": "bitcoin-2",
|
||||||
"os": "linux",
|
"os": "linux",
|
||||||
"os_version": "5.4.0-163-generic",
|
"os_version": "5.4.0-216-generic",
|
||||||
"hostname": "bitcoin-2",
|
"hostname": "bitcoin-2",
|
||||||
"ipaddress": "192.168.122.148",
|
"ipaddress": "192.168.122.148",
|
||||||
"roles": [
|
"roles": [
|
||||||
|
|||||||
@@ -46,6 +46,7 @@
|
|||||||
"kosmos_garage::default",
|
"kosmos_garage::default",
|
||||||
"kosmos_garage::firewall_rpc",
|
"kosmos_garage::firewall_rpc",
|
||||||
"kosmos_assets::nginx_site",
|
"kosmos_assets::nginx_site",
|
||||||
|
"kosmos_blossom::nginx",
|
||||||
"kosmos_discourse::nginx",
|
"kosmos_discourse::nginx",
|
||||||
"kosmos_drone::nginx",
|
"kosmos_drone::nginx",
|
||||||
"kosmos_garage::nginx_web",
|
"kosmos_garage::nginx_web",
|
||||||
@@ -112,13 +113,13 @@
|
|||||||
"cloud": null,
|
"cloud": null,
|
||||||
"chef_packages": {
|
"chef_packages": {
|
||||||
"chef": {
|
"chef": {
|
||||||
"version": "18.2.7",
|
"version": "18.10.17",
|
||||||
"chef_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/chef-18.2.7/lib",
|
"chef_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/chef-18.10.17/lib",
|
||||||
"chef_effortless": null
|
"chef_effortless": null
|
||||||
},
|
},
|
||||||
"ohai": {
|
"ohai": {
|
||||||
"version": "18.1.4",
|
"version": "18.2.13",
|
||||||
"ohai_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/ohai-18.1.4/lib/ohai"
|
"ohai_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/ohai-18.2.13/lib/ohai"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -39,6 +39,7 @@
|
|||||||
"kosmos_garage::default",
|
"kosmos_garage::default",
|
||||||
"kosmos_garage::firewall_rpc",
|
"kosmos_garage::firewall_rpc",
|
||||||
"kosmos_assets::nginx_site",
|
"kosmos_assets::nginx_site",
|
||||||
|
"kosmos_blossom::nginx",
|
||||||
"kosmos_discourse::nginx",
|
"kosmos_discourse::nginx",
|
||||||
"kosmos_drone::nginx",
|
"kosmos_drone::nginx",
|
||||||
"kosmos_garage::nginx_web",
|
"kosmos_garage::nginx_web",
|
||||||
@@ -105,13 +106,13 @@
|
|||||||
"cloud": null,
|
"cloud": null,
|
||||||
"chef_packages": {
|
"chef_packages": {
|
||||||
"chef": {
|
"chef": {
|
||||||
"version": "18.2.7",
|
"version": "18.10.17",
|
||||||
"chef_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/chef-18.2.7/lib",
|
"chef_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/chef-18.10.17/lib",
|
||||||
"chef_effortless": null
|
"chef_effortless": null
|
||||||
},
|
},
|
||||||
"ohai": {
|
"ohai": {
|
||||||
"version": "18.1.4",
|
"version": "18.2.13",
|
||||||
"ohai_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/ohai-18.1.4/lib/ohai"
|
"ohai_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/ohai-18.2.13/lib/ohai"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -3,15 +3,15 @@
|
|||||||
"chef_environment": "production",
|
"chef_environment": "production",
|
||||||
"normal": {
|
"normal": {
|
||||||
"knife_zero": {
|
"knife_zero": {
|
||||||
"host": "10.1.1.157"
|
"host": "10.1.1.151"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"automatic": {
|
"automatic": {
|
||||||
"fqdn": "garage-14",
|
"fqdn": "garage-14",
|
||||||
"os": "linux",
|
"os": "linux",
|
||||||
"os_version": "5.15.0-1059-kvm",
|
"os_version": "5.15.0-1095-kvm",
|
||||||
"hostname": "garage-14",
|
"hostname": "garage-14",
|
||||||
"ipaddress": "192.168.122.251",
|
"ipaddress": "192.168.122.36",
|
||||||
"roles": [
|
"roles": [
|
||||||
"base",
|
"base",
|
||||||
"kvm_guest",
|
"kvm_guest",
|
||||||
@@ -30,6 +30,7 @@
|
|||||||
"timezone_iii::debian",
|
"timezone_iii::debian",
|
||||||
"ntp::default",
|
"ntp::default",
|
||||||
"ntp::apparmor",
|
"ntp::apparmor",
|
||||||
|
"kosmos-base::journald_conf",
|
||||||
"kosmos-base::systemd_emails",
|
"kosmos-base::systemd_emails",
|
||||||
"apt::unattended-upgrades",
|
"apt::unattended-upgrades",
|
||||||
"kosmos-base::firewall",
|
"kosmos-base::firewall",
|
||||||
@@ -46,13 +47,13 @@
|
|||||||
"cloud": null,
|
"cloud": null,
|
||||||
"chef_packages": {
|
"chef_packages": {
|
||||||
"chef": {
|
"chef": {
|
||||||
"version": "18.8.54",
|
"version": "18.10.17",
|
||||||
"chef_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/chef-18.8.54/lib",
|
"chef_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/chef-18.10.17/lib",
|
||||||
"chef_effortless": null
|
"chef_effortless": null
|
||||||
},
|
},
|
||||||
"ohai": {
|
"ohai": {
|
||||||
"version": "18.2.8",
|
"version": "18.2.13",
|
||||||
"ohai_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/ohai-18.2.8/lib/ohai"
|
"ohai_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/ohai-18.2.13/lib/ohai"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,34 +1,36 @@
|
|||||||
{
|
{
|
||||||
"name": "postgres-8",
|
"name": "garage-15",
|
||||||
"chef_environment": "production",
|
"chef_environment": "production",
|
||||||
"normal": {
|
"normal": {
|
||||||
"knife_zero": {
|
"knife_zero": {
|
||||||
"host": "10.1.1.99"
|
"host": "10.1.1.82"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"automatic": {
|
"automatic": {
|
||||||
"fqdn": "postgres-8",
|
"fqdn": "garage-15",
|
||||||
"os": "linux",
|
"os": "linux",
|
||||||
"os_version": "5.15.0-1059-kvm",
|
"os_version": "5.15.0-1095-kvm",
|
||||||
"hostname": "postgres-8",
|
"hostname": "garage-15",
|
||||||
"ipaddress": "192.168.122.100",
|
"ipaddress": "192.168.122.57",
|
||||||
"roles": [
|
"roles": [
|
||||||
"base",
|
"base",
|
||||||
"kvm_guest",
|
"kvm_guest",
|
||||||
"postgresql_replica"
|
"garage_node"
|
||||||
],
|
],
|
||||||
"recipes": [
|
"recipes": [
|
||||||
"kosmos-base",
|
"kosmos-base",
|
||||||
"kosmos-base::default",
|
"kosmos-base::default",
|
||||||
"kosmos_kvm::guest",
|
"kosmos_kvm::guest",
|
||||||
"kosmos_postgresql::hostsfile",
|
"kosmos_garage",
|
||||||
"kosmos_postgresql::replica",
|
"kosmos_garage::default",
|
||||||
"kosmos_postgresql::firewall",
|
"kosmos_garage::firewall_rpc",
|
||||||
|
"kosmos_garage::firewall_apis",
|
||||||
"apt::default",
|
"apt::default",
|
||||||
"timezone_iii::default",
|
"timezone_iii::default",
|
||||||
"timezone_iii::debian",
|
"timezone_iii::debian",
|
||||||
"ntp::default",
|
"ntp::default",
|
||||||
"ntp::apparmor",
|
"ntp::apparmor",
|
||||||
|
"kosmos-base::journald_conf",
|
||||||
"kosmos-base::systemd_emails",
|
"kosmos-base::systemd_emails",
|
||||||
"apt::unattended-upgrades",
|
"apt::unattended-upgrades",
|
||||||
"kosmos-base::firewall",
|
"kosmos-base::firewall",
|
||||||
@@ -37,26 +39,27 @@
|
|||||||
"postfix::_common",
|
"postfix::_common",
|
||||||
"postfix::_attributes",
|
"postfix::_attributes",
|
||||||
"postfix::sasl_auth",
|
"postfix::sasl_auth",
|
||||||
"hostname::default"
|
"hostname::default",
|
||||||
|
"firewall::default"
|
||||||
],
|
],
|
||||||
"platform": "ubuntu",
|
"platform": "ubuntu",
|
||||||
"platform_version": "22.04",
|
"platform_version": "22.04",
|
||||||
"cloud": null,
|
"cloud": null,
|
||||||
"chef_packages": {
|
"chef_packages": {
|
||||||
"chef": {
|
"chef": {
|
||||||
"version": "18.5.0",
|
"version": "18.10.17",
|
||||||
"chef_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/chef-18.5.0/lib",
|
"chef_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/chef-18.10.17/lib",
|
||||||
"chef_effortless": null
|
"chef_effortless": null
|
||||||
},
|
},
|
||||||
"ohai": {
|
"ohai": {
|
||||||
"version": "18.1.11",
|
"version": "18.2.13",
|
||||||
"ohai_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/ohai-18.1.11/lib/ohai"
|
"ohai_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/ohai-18.2.13/lib/ohai"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"run_list": [
|
"run_list": [
|
||||||
"role[base]",
|
"role[base]",
|
||||||
"role[kvm_guest]",
|
"role[kvm_guest]",
|
||||||
"role[postgresql_replica]"
|
"role[garage_node]"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,63 @@
|
|||||||
|
{
|
||||||
|
"name": "garage-16",
|
||||||
|
"chef_environment": "production",
|
||||||
|
"normal": {
|
||||||
|
"knife_zero": {
|
||||||
|
"host": "10.1.1.153"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"automatic": {
|
||||||
|
"fqdn": "garage-16",
|
||||||
|
"os": "linux",
|
||||||
|
"os_version": "6.8.0-106-generic",
|
||||||
|
"hostname": "garage-16",
|
||||||
|
"ipaddress": "192.168.122.182",
|
||||||
|
"roles": [
|
||||||
|
"base",
|
||||||
|
"kvm_guest",
|
||||||
|
"garage_node"
|
||||||
|
],
|
||||||
|
"recipes": [
|
||||||
|
"kosmos-base",
|
||||||
|
"kosmos-base::default",
|
||||||
|
"kosmos_kvm::guest",
|
||||||
|
"kosmos_garage",
|
||||||
|
"kosmos_garage::default",
|
||||||
|
"kosmos_garage::firewall_rpc",
|
||||||
|
"kosmos_garage::firewall_apis",
|
||||||
|
"apt::default",
|
||||||
|
"timezone_iii::default",
|
||||||
|
"timezone_iii::debian",
|
||||||
|
"kosmos-base::journald_conf",
|
||||||
|
"kosmos-base::systemd_emails",
|
||||||
|
"apt::unattended-upgrades",
|
||||||
|
"kosmos-base::firewall",
|
||||||
|
"kosmos-postfix::default",
|
||||||
|
"postfix::default",
|
||||||
|
"postfix::_common",
|
||||||
|
"postfix::_attributes",
|
||||||
|
"postfix::sasl_auth",
|
||||||
|
"hostname::default",
|
||||||
|
"firewall::default"
|
||||||
|
],
|
||||||
|
"platform": "ubuntu",
|
||||||
|
"platform_version": "24.04",
|
||||||
|
"cloud": null,
|
||||||
|
"chef_packages": {
|
||||||
|
"chef": {
|
||||||
|
"version": "18.10.17",
|
||||||
|
"chef_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/chef-18.10.17/lib",
|
||||||
|
"chef_effortless": null
|
||||||
|
},
|
||||||
|
"ohai": {
|
||||||
|
"version": "18.2.13",
|
||||||
|
"ohai_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/ohai-18.2.13/lib/ohai"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"run_list": [
|
||||||
|
"role[base]",
|
||||||
|
"role[kvm_guest]",
|
||||||
|
"role[garage_node]"
|
||||||
|
]
|
||||||
|
}
|
||||||
+2
-1417
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,56 @@
|
|||||||
|
{
|
||||||
|
"name": "leo",
|
||||||
|
"normal": {
|
||||||
|
"knife_zero": {
|
||||||
|
"host": "leo.kosmos.org"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"automatic": {
|
||||||
|
"fqdn": "leo",
|
||||||
|
"os": "linux",
|
||||||
|
"os_version": "5.15.0-173-generic",
|
||||||
|
"hostname": "leo",
|
||||||
|
"ipaddress": "5.9.81.116",
|
||||||
|
"roles": [
|
||||||
|
"base"
|
||||||
|
],
|
||||||
|
"recipes": [
|
||||||
|
"kosmos-base",
|
||||||
|
"kosmos-base::default",
|
||||||
|
"kosmos_kvm::host",
|
||||||
|
"apt::default",
|
||||||
|
"timezone_iii::default",
|
||||||
|
"timezone_iii::debian",
|
||||||
|
"ntp::default",
|
||||||
|
"ntp::apparmor",
|
||||||
|
"kosmos-base::journald_conf",
|
||||||
|
"kosmos-base::systemd_emails",
|
||||||
|
"apt::unattended-upgrades",
|
||||||
|
"kosmos-base::firewall",
|
||||||
|
"kosmos-postfix::default",
|
||||||
|
"postfix::default",
|
||||||
|
"postfix::_common",
|
||||||
|
"postfix::_attributes",
|
||||||
|
"postfix::sasl_auth",
|
||||||
|
"hostname::default"
|
||||||
|
],
|
||||||
|
"platform": "ubuntu",
|
||||||
|
"platform_version": "22.04",
|
||||||
|
"cloud": null,
|
||||||
|
"chef_packages": {
|
||||||
|
"chef": {
|
||||||
|
"version": "18.10.17",
|
||||||
|
"chef_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/chef-18.10.17/lib",
|
||||||
|
"chef_effortless": null
|
||||||
|
},
|
||||||
|
"ohai": {
|
||||||
|
"version": "18.2.13",
|
||||||
|
"ohai_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/ohai-18.2.13/lib/ohai"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"run_list": [
|
||||||
|
"role[base]",
|
||||||
|
"recipe[kosmos_kvm::host]"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -30,6 +30,7 @@
|
|||||||
"timezone_iii::debian",
|
"timezone_iii::debian",
|
||||||
"ntp::default",
|
"ntp::default",
|
||||||
"ntp::apparmor",
|
"ntp::apparmor",
|
||||||
|
"kosmos-base::journald_conf",
|
||||||
"kosmos-base::systemd_emails",
|
"kosmos-base::systemd_emails",
|
||||||
"apt::unattended-upgrades",
|
"apt::unattended-upgrades",
|
||||||
"kosmos-base::firewall",
|
"kosmos-base::firewall",
|
||||||
|
|||||||
@@ -1,16 +1,17 @@
|
|||||||
{
|
{
|
||||||
"name": "postgres-6",
|
"name": "postgres-11",
|
||||||
|
"chef_environment": "production",
|
||||||
"normal": {
|
"normal": {
|
||||||
"knife_zero": {
|
"knife_zero": {
|
||||||
"host": "10.1.1.196"
|
"host": "10.1.1.91"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"automatic": {
|
"automatic": {
|
||||||
"fqdn": "postgres-6",
|
"fqdn": "postgres-11",
|
||||||
"os": "linux",
|
"os": "linux",
|
||||||
"os_version": "5.4.0-173-generic",
|
"os_version": "5.15.0-1095-kvm",
|
||||||
"hostname": "postgres-6",
|
"hostname": "postgres-11",
|
||||||
"ipaddress": "192.168.122.60",
|
"ipaddress": "192.168.122.142",
|
||||||
"roles": [
|
"roles": [
|
||||||
"base",
|
"base",
|
||||||
"kvm_guest",
|
"kvm_guest",
|
||||||
@@ -21,18 +22,20 @@
|
|||||||
"kosmos-base::default",
|
"kosmos-base::default",
|
||||||
"kosmos_kvm::guest",
|
"kosmos_kvm::guest",
|
||||||
"kosmos_postgresql::primary",
|
"kosmos_postgresql::primary",
|
||||||
"kosmos_postgresql::firewall",
|
|
||||||
"kosmos-akkounts::pg_db",
|
"kosmos-akkounts::pg_db",
|
||||||
"kosmos-bitcoin::lndhub-go_pg_db",
|
"kosmos-bitcoin::lndhub-go_pg_db",
|
||||||
"kosmos-bitcoin::nbxplorer_pg_db",
|
"kosmos-bitcoin::nbxplorer_pg_db",
|
||||||
"kosmos_drone::pg_db",
|
"kosmos_drone::pg_db",
|
||||||
"kosmos_gitea::pg_db",
|
"kosmos_gitea::pg_db",
|
||||||
"kosmos-mastodon::pg_db",
|
"kosmos-mastodon::pg_db",
|
||||||
|
"kosmos_postgresql::firewall",
|
||||||
|
"kosmos_postgresql::management_scripts",
|
||||||
"apt::default",
|
"apt::default",
|
||||||
"timezone_iii::default",
|
"timezone_iii::default",
|
||||||
"timezone_iii::debian",
|
"timezone_iii::debian",
|
||||||
"ntp::default",
|
"ntp::default",
|
||||||
"ntp::apparmor",
|
"ntp::apparmor",
|
||||||
|
"kosmos-base::journald_conf",
|
||||||
"kosmos-base::systemd_emails",
|
"kosmos-base::systemd_emails",
|
||||||
"apt::unattended-upgrades",
|
"apt::unattended-upgrades",
|
||||||
"kosmos-base::firewall",
|
"kosmos-base::firewall",
|
||||||
@@ -44,17 +47,17 @@
|
|||||||
"hostname::default"
|
"hostname::default"
|
||||||
],
|
],
|
||||||
"platform": "ubuntu",
|
"platform": "ubuntu",
|
||||||
"platform_version": "20.04",
|
"platform_version": "22.04",
|
||||||
"cloud": null,
|
"cloud": null,
|
||||||
"chef_packages": {
|
"chef_packages": {
|
||||||
"chef": {
|
"chef": {
|
||||||
"version": "18.4.2",
|
"version": "18.10.17",
|
||||||
"chef_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/chef-18.4.2/lib",
|
"chef_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/chef-18.10.17/lib",
|
||||||
"chef_effortless": null
|
"chef_effortless": null
|
||||||
},
|
},
|
||||||
"ohai": {
|
"ohai": {
|
||||||
"version": "18.1.11",
|
"version": "18.2.13",
|
||||||
"ohai_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/ohai-18.1.11/lib/ohai"
|
"ohai_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/ohai-18.2.13/lib/ohai"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -1,17 +1,17 @@
|
|||||||
{
|
{
|
||||||
"name": "postgres-9",
|
"name": "postgres-12",
|
||||||
"chef_environment": "production",
|
"chef_environment": "production",
|
||||||
"normal": {
|
"normal": {
|
||||||
"knife_zero": {
|
"knife_zero": {
|
||||||
"host": "10.1.1.3"
|
"host": "10.1.1.134"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"automatic": {
|
"automatic": {
|
||||||
"fqdn": "postgres-9",
|
"fqdn": "postgres-12",
|
||||||
"os": "linux",
|
"os": "linux",
|
||||||
"os_version": "5.15.0-1059-kvm",
|
"os_version": "5.15.0-1096-kvm",
|
||||||
"hostname": "postgres-9",
|
"hostname": "postgres-12",
|
||||||
"ipaddress": "192.168.122.64",
|
"ipaddress": "192.168.122.139",
|
||||||
"roles": [
|
"roles": [
|
||||||
"base",
|
"base",
|
||||||
"kvm_guest",
|
"kvm_guest",
|
||||||
@@ -24,6 +24,7 @@
|
|||||||
"kosmos_postgresql::hostsfile",
|
"kosmos_postgresql::hostsfile",
|
||||||
"kosmos_postgresql::replica",
|
"kosmos_postgresql::replica",
|
||||||
"kosmos_postgresql::firewall",
|
"kosmos_postgresql::firewall",
|
||||||
|
"kosmos_postgresql::management_scripts",
|
||||||
"apt::default",
|
"apt::default",
|
||||||
"timezone_iii::default",
|
"timezone_iii::default",
|
||||||
"timezone_iii::debian",
|
"timezone_iii::debian",
|
||||||
@@ -45,13 +46,13 @@
|
|||||||
"cloud": null,
|
"cloud": null,
|
||||||
"chef_packages": {
|
"chef_packages": {
|
||||||
"chef": {
|
"chef": {
|
||||||
"version": "18.8.54",
|
"version": "18.10.17",
|
||||||
"chef_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/chef-18.8.54/lib",
|
"chef_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/chef-18.10.17/lib",
|
||||||
"chef_effortless": null
|
"chef_effortless": null
|
||||||
},
|
},
|
||||||
"ohai": {
|
"ohai": {
|
||||||
"version": "18.2.8",
|
"version": "18.2.13",
|
||||||
"ohai_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/ohai-18.2.8/lib/ohai"
|
"ohai_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/ohai-18.2.13/lib/ohai"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -0,0 +1,61 @@
|
|||||||
|
{
|
||||||
|
"name": "prometheus-1",
|
||||||
|
"chef_environment": "production",
|
||||||
|
"normal": {
|
||||||
|
"knife_zero": {
|
||||||
|
"host": "10.1.1.146"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"automatic": {
|
||||||
|
"fqdn": "prometheus-1",
|
||||||
|
"os": "linux",
|
||||||
|
"os_version": "6.8.0-134-generic",
|
||||||
|
"hostname": "prometheus-1",
|
||||||
|
"ipaddress": "192.168.122.166",
|
||||||
|
"roles": [
|
||||||
|
"base",
|
||||||
|
"kvm_guest",
|
||||||
|
"prometheus_server"
|
||||||
|
],
|
||||||
|
"recipes": [
|
||||||
|
"kosmos-base",
|
||||||
|
"kosmos-base::default",
|
||||||
|
"kosmos_kvm::guest",
|
||||||
|
"kosmos_prometheus::server",
|
||||||
|
"kosmos_prometheus::alertmanager",
|
||||||
|
"apt::default",
|
||||||
|
"timezone_iii::default",
|
||||||
|
"timezone_iii::debian",
|
||||||
|
"kosmos-base::journald_conf",
|
||||||
|
"kosmos-base::systemd_emails",
|
||||||
|
"apt::unattended-upgrades",
|
||||||
|
"kosmos-base::firewall",
|
||||||
|
"kosmos-postfix::default",
|
||||||
|
"postfix::default",
|
||||||
|
"postfix::_common",
|
||||||
|
"postfix::_attributes",
|
||||||
|
"postfix::sasl_auth",
|
||||||
|
"hostname::default",
|
||||||
|
"firewall::default"
|
||||||
|
],
|
||||||
|
"platform": "ubuntu",
|
||||||
|
"platform_version": "24.04",
|
||||||
|
"cloud": null,
|
||||||
|
"chef_packages": {
|
||||||
|
"chef": {
|
||||||
|
"version": "18.10.17",
|
||||||
|
"chef_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/chef-18.10.17/lib",
|
||||||
|
"chef_effortless": null
|
||||||
|
},
|
||||||
|
"ohai": {
|
||||||
|
"version": "18.2.13",
|
||||||
|
"ohai_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/ohai-18.2.13/lib/ohai"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"run_list": [
|
||||||
|
"role[base]",
|
||||||
|
"role[kvm_guest]",
|
||||||
|
"role[prometheus_server]"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,60 @@
|
|||||||
|
{
|
||||||
|
"name": "rsk-testnet-6",
|
||||||
|
"normal": {
|
||||||
|
"knife_zero": {
|
||||||
|
"host": "10.1.1.20"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"automatic": {
|
||||||
|
"fqdn": "rsk-testnet-6",
|
||||||
|
"os": "linux",
|
||||||
|
"os_version": "6.8.0-107-generic",
|
||||||
|
"hostname": "rsk-testnet-6",
|
||||||
|
"ipaddress": "192.168.122.231",
|
||||||
|
"roles": [
|
||||||
|
"base",
|
||||||
|
"kvm_guest",
|
||||||
|
"rskj_testnet"
|
||||||
|
],
|
||||||
|
"recipes": [
|
||||||
|
"kosmos-base",
|
||||||
|
"kosmos-base::default",
|
||||||
|
"kosmos_kvm::guest",
|
||||||
|
"kosmos_rsk::rskj",
|
||||||
|
"apt::default",
|
||||||
|
"timezone_iii::default",
|
||||||
|
"timezone_iii::debian",
|
||||||
|
"kosmos-base::journald_conf",
|
||||||
|
"kosmos-base::systemd_emails",
|
||||||
|
"apt::unattended-upgrades",
|
||||||
|
"kosmos-base::firewall",
|
||||||
|
"kosmos-postfix::default",
|
||||||
|
"postfix::default",
|
||||||
|
"postfix::_common",
|
||||||
|
"postfix::_attributes",
|
||||||
|
"postfix::sasl_auth",
|
||||||
|
"hostname::default",
|
||||||
|
"kosmos_rsk::firewall",
|
||||||
|
"firewall::default"
|
||||||
|
],
|
||||||
|
"platform": "ubuntu",
|
||||||
|
"platform_version": "24.04",
|
||||||
|
"cloud": null,
|
||||||
|
"chef_packages": {
|
||||||
|
"chef": {
|
||||||
|
"version": "18.10.17",
|
||||||
|
"chef_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/chef-18.10.17/lib",
|
||||||
|
"chef_effortless": null
|
||||||
|
},
|
||||||
|
"ohai": {
|
||||||
|
"version": "18.2.13",
|
||||||
|
"ohai_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/ohai-18.2.13/lib/ohai"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"run_list": [
|
||||||
|
"role[base]",
|
||||||
|
"role[kvm_guest]",
|
||||||
|
"role[rskj_testnet]"
|
||||||
|
]
|
||||||
|
}
|
||||||
+8
-3
@@ -16,7 +16,8 @@
|
|||||||
"base",
|
"base",
|
||||||
"kvm_guest",
|
"kvm_guest",
|
||||||
"strfry",
|
"strfry",
|
||||||
"ldap_client"
|
"ldap_client",
|
||||||
|
"blossom"
|
||||||
],
|
],
|
||||||
"recipes": [
|
"recipes": [
|
||||||
"kosmos-base",
|
"kosmos-base",
|
||||||
@@ -28,6 +29,8 @@
|
|||||||
"kosmos_strfry::policies",
|
"kosmos_strfry::policies",
|
||||||
"kosmos_strfry::firewall",
|
"kosmos_strfry::firewall",
|
||||||
"kosmos_strfry::substr",
|
"kosmos_strfry::substr",
|
||||||
|
"kosmos_blossom",
|
||||||
|
"kosmos_blossom::default",
|
||||||
"apt::default",
|
"apt::default",
|
||||||
"timezone_iii::default",
|
"timezone_iii::default",
|
||||||
"timezone_iii::debian",
|
"timezone_iii::debian",
|
||||||
@@ -43,7 +46,8 @@
|
|||||||
"postfix::_attributes",
|
"postfix::_attributes",
|
||||||
"postfix::sasl_auth",
|
"postfix::sasl_auth",
|
||||||
"hostname::default",
|
"hostname::default",
|
||||||
"deno::default"
|
"deno::default",
|
||||||
|
"blossom::default"
|
||||||
],
|
],
|
||||||
"platform": "ubuntu",
|
"platform": "ubuntu",
|
||||||
"platform_version": "22.04",
|
"platform_version": "22.04",
|
||||||
@@ -63,6 +67,7 @@
|
|||||||
"run_list": [
|
"run_list": [
|
||||||
"role[base]",
|
"role[base]",
|
||||||
"role[kvm_guest]",
|
"role[kvm_guest]",
|
||||||
"role[strfry]"
|
"role[strfry]",
|
||||||
|
"role[blossom]"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,16 @@
|
|||||||
|
name "blossom"
|
||||||
|
|
||||||
|
override_attributes(
|
||||||
|
"blossom" => {
|
||||||
|
"allowed_pubkeys" => [
|
||||||
|
# "b3e1b7c0ef48294bd856203bfd460625de95d3afb894e5f09b14cd1f0e7097cf",
|
||||||
|
# "07e188a1ff87ce171d517b8ed2bb7a31b1d3453a0db3b15379ec07b724d232f3",
|
||||||
|
# "898a73f2c1f9a9f42d9ef4ac363622f92fdd4290c8f190340a0862d8e0f70046"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
|
run_list %w(
|
||||||
|
role[ldap_client]
|
||||||
|
kosmos_blossom::default
|
||||||
|
)
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
name "gitea_actions_runner"
|
name "gitea_actions_runner"
|
||||||
|
|
||||||
run_list %w(
|
run_list %w(
|
||||||
kosmos_gitea::act_runner
|
kosmos_gitea::runner
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ production_run_list = %w(
|
|||||||
role[openresty]
|
role[openresty]
|
||||||
role[garage_gateway]
|
role[garage_gateway]
|
||||||
kosmos_assets::nginx_site
|
kosmos_assets::nginx_site
|
||||||
|
kosmos_blossom::nginx
|
||||||
kosmos_discourse::nginx
|
kosmos_discourse::nginx
|
||||||
kosmos_drone::nginx
|
kosmos_drone::nginx
|
||||||
kosmos_garage::nginx_web
|
kosmos_garage::nginx_web
|
||||||
|
|||||||
+11
-10
@@ -1,12 +1,13 @@
|
|||||||
name "postgresql_primary"
|
name "postgresql_primary"
|
||||||
|
|
||||||
run_list %w(
|
run_list [
|
||||||
kosmos_postgresql::primary
|
"kosmos_postgresql::primary",
|
||||||
kosmos_postgresql::firewall
|
"kosmos-akkounts::pg_db",
|
||||||
kosmos-akkounts::pg_db
|
"kosmos-bitcoin::lndhub-go_pg_db",
|
||||||
kosmos-bitcoin::lndhub-go_pg_db
|
"kosmos-bitcoin::nbxplorer_pg_db",
|
||||||
kosmos-bitcoin::nbxplorer_pg_db
|
"kosmos_drone::pg_db",
|
||||||
kosmos_drone::pg_db
|
"kosmos_gitea::pg_db",
|
||||||
kosmos_gitea::pg_db
|
"kosmos-mastodon::pg_db",
|
||||||
kosmos-mastodon::pg_db
|
"kosmos_postgresql::firewall",
|
||||||
)
|
"kosmos_postgresql::management_scripts"
|
||||||
|
]
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
name "postgresql_replica"
|
name "postgresql_replica"
|
||||||
|
|
||||||
run_list %w(
|
run_list [
|
||||||
kosmos_postgresql::hostsfile
|
"kosmos_postgresql::hostsfile",
|
||||||
kosmos_postgresql::replica
|
"kosmos_postgresql::replica",
|
||||||
kosmos_postgresql::firewall
|
"kosmos_postgresql::firewall",
|
||||||
)
|
"kosmos_postgresql::management_scripts"
|
||||||
|
]
|
||||||
|
|||||||
@@ -0,0 +1,8 @@
|
|||||||
|
name "postgresql_replica_logical"
|
||||||
|
|
||||||
|
run_list [
|
||||||
|
"kosmos_postgresql::hostsfile",
|
||||||
|
"kosmos_postgresql::replica_logical",
|
||||||
|
"kosmos_postgresql::firewall",
|
||||||
|
"kosmos_postgresql::management_scripts"
|
||||||
|
]
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
name "prometheus_server"
|
||||||
|
|
||||||
|
default_run_list = [
|
||||||
|
"kosmos_prometheus::server",
|
||||||
|
"kosmos_prometheus::alertmanager"
|
||||||
|
]
|
||||||
|
|
||||||
|
env_run_lists(
|
||||||
|
"_default" => default_run_list,
|
||||||
|
"development" => default_run_list,
|
||||||
|
"production" => default_run_list
|
||||||
|
)
|
||||||
Submodule
+1
Submodule site-cookbooks/blossom added at 314bd6ab1a
+1
-1
Submodule site-cookbooks/deno updated: 92839b20a4...3795c9e672
@@ -230,7 +230,6 @@ systemd_unit "akkounts.service" do
|
|||||||
WorkingDirectory: deploy_path,
|
WorkingDirectory: deploy_path,
|
||||||
Environment: "RAILS_ENV=#{rails_env} SOLID_QUEUE_IN_PUMA=true",
|
Environment: "RAILS_ENV=#{rails_env} SOLID_QUEUE_IN_PUMA=true",
|
||||||
ExecStart: "#{bundle_path} exec puma -C config/puma.rb --pidfile #{deploy_path}/tmp/puma.pid",
|
ExecStart: "#{bundle_path} exec puma -C config/puma.rb --pidfile #{deploy_path}/tmp/puma.pid",
|
||||||
ExecStop: "#{bundle_path} exec puma -C config/puma.rb --pidfile #{deploy_path}/tmp/puma.pid stop",
|
|
||||||
ExecReload: "#{bundle_path} exec pumactl -F config/puma.rb --pidfile #{deploy_path}/tmp/puma.pid phased-restart",
|
ExecReload: "#{bundle_path} exec pumactl -F config/puma.rb --pidfile #{deploy_path}/tmp/puma.pid phased-restart",
|
||||||
PIDFile: "#{deploy_path}/tmp/puma.pid",
|
PIDFile: "#{deploy_path}/tmp/puma.pid",
|
||||||
TimeoutSec: "10",
|
TimeoutSec: "10",
|
||||||
|
|||||||
@@ -24,11 +24,17 @@
|
|||||||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
# THE SOFTWARE.
|
# THE SOFTWARE.
|
||||||
|
|
||||||
include_recipe 'apt'
|
include_recipe "apt"
|
||||||
include_recipe 'timezone_iii'
|
|
||||||
include_recipe 'ntp'
|
directory "/etc/apt/keyrings" do
|
||||||
include_recipe 'kosmos-base::journald_conf'
|
mode "0755"
|
||||||
include_recipe 'kosmos-base::systemd_emails'
|
action :create
|
||||||
|
end
|
||||||
|
|
||||||
|
include_recipe "timezone_iii"
|
||||||
|
include_recipe "ntp" if node["platform"] == "ubuntu" && node["platform_version"].to_f < 24.04
|
||||||
|
include_recipe "kosmos-base::journald_conf"
|
||||||
|
include_recipe "kosmos-base::systemd_emails"
|
||||||
|
|
||||||
node.override["apt"]["unattended_upgrades"]["enable"] = true
|
node.override["apt"]["unattended_upgrades"]["enable"] = true
|
||||||
node.override["apt"]["unattended_upgrades"]["mail_only_on_error"] = false
|
node.override["apt"]["unattended_upgrades"]["mail_only_on_error"] = false
|
||||||
@@ -43,57 +49,57 @@ node.override["apt"]["unattended_upgrades"]["allowed_origins"] = [
|
|||||||
]
|
]
|
||||||
node.override["apt"]["unattended_upgrades"]["mail"] = "ops@kosmos.org"
|
node.override["apt"]["unattended_upgrades"]["mail"] = "ops@kosmos.org"
|
||||||
node.override["apt"]["unattended_upgrades"]["syslog_enable"] = true
|
node.override["apt"]["unattended_upgrades"]["syslog_enable"] = true
|
||||||
include_recipe 'apt::unattended-upgrades'
|
include_recipe "apt::unattended-upgrades"
|
||||||
|
|
||||||
package 'mailutils'
|
package "mailutils"
|
||||||
package 'mosh'
|
package "mosh"
|
||||||
package 'vim'
|
package "vim"
|
||||||
|
|
||||||
# Don't create users and rewrite the sudo config in development environment.
|
# Don't create users and rewrite the sudo config in development environment.
|
||||||
# It breaks the vagrant user
|
# It breaks the vagrant user
|
||||||
unless node.chef_environment == "development"
|
unless node.chef_environment == "development"
|
||||||
# Searches data bag "users" for groups attribute "sysadmin".
|
# Searches data bag "users" for groups attribute "sysadmin".
|
||||||
# Places returned users in Unix group "sysadmin" with GID 2300.
|
# Places returned users in Unix group "sysadmin" with GID 2300.
|
||||||
users_manage 'sysadmin' do
|
users_manage "sysadmin" do
|
||||||
group_id 2300
|
group_id 2300
|
||||||
action [:remove, :create]
|
action %i[remove create]
|
||||||
end
|
end
|
||||||
|
|
||||||
sudo "sysadmin" do
|
sudo "sysadmin" do
|
||||||
groups "sysadmin"
|
groups "sysadmin"
|
||||||
nopasswd true
|
nopasswd true
|
||||||
defaults [
|
defaults [
|
||||||
# not default on Ubuntu, explicitely enable. Uses a minimal white list of
|
# not default on Ubuntu, explicitely enable. Uses a minimal white list of
|
||||||
# environment variables
|
# environment variables
|
||||||
'env_reset',
|
"env_reset",
|
||||||
# Send emails on unauthorized attempts
|
# Send emails on unauthorized attempts
|
||||||
'mail_badpass',
|
"mail_badpass",
|
||||||
'secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin"',
|
'secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin"'
|
||||||
]
|
]
|
||||||
end
|
end
|
||||||
|
|
||||||
include_recipe "kosmos-base::firewall"
|
include_recipe "kosmos-base::firewall"
|
||||||
|
|
||||||
include_recipe 'kosmos-postfix'
|
include_recipe "kosmos-postfix"
|
||||||
|
|
||||||
node.override['set_fqdn'] = '*'
|
node.override["set_fqdn"] = "*"
|
||||||
include_recipe 'hostname'
|
include_recipe "hostname"
|
||||||
|
|
||||||
package 'ca-certificates'
|
package "ca-certificates"
|
||||||
|
|
||||||
directory '/usr/local/share/ca-certificates/cacert' do
|
directory "/usr/local/share/ca-certificates/cacert" do
|
||||||
action :create
|
action :create
|
||||||
end
|
end
|
||||||
|
|
||||||
['http://www.cacert.org/certs/root.crt', 'http://www.cacert.org/certs/class3.crt'].each do |cert|
|
["http://www.cacert.org/certs/root.crt", "http://www.cacert.org/certs/class3.crt"].each do |cert|
|
||||||
remote_file "/usr/local/share/ca-certificates/cacert/#{File.basename(cert)}" do
|
remote_file "/usr/local/share/ca-certificates/cacert/#{File.basename(cert)}" do
|
||||||
source cert
|
source cert
|
||||||
action :create_if_missing
|
action :create_if_missing
|
||||||
notifies :run, 'execute[update-ca-certificates]', :immediately
|
notifies :run, "execute[update-ca-certificates]", :immediately
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
execute 'update-ca-certificates' do
|
execute "update-ca-certificates" do
|
||||||
action :nothing
|
action :nothing
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -86,9 +86,6 @@ node.default['lndhub-go']['branding'] = {
|
|||||||
'footer' => 'about=https://kosmos.org'
|
'footer' => 'about=https://kosmos.org'
|
||||||
}
|
}
|
||||||
|
|
||||||
node.default['dotnet']['ms_packages_src_url'] = "https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb"
|
|
||||||
node.default['dotnet']['ms_packages_src_checksum'] = "4df5811c41fdded83eb9e2da9336a8dfa5594a79dc8a80133bd815f4f85b9991"
|
|
||||||
|
|
||||||
node.default['nbxplorer']['repo'] = 'https://github.com/dgarage/NBXplorer'
|
node.default['nbxplorer']['repo'] = 'https://github.com/dgarage/NBXplorer'
|
||||||
node.default['nbxplorer']['revision'] = 'v2.5.26'
|
node.default['nbxplorer']['revision'] = 'v2.5.26'
|
||||||
node.default['nbxplorer']['source_dir'] = '/opt/nbxplorer'
|
node.default['nbxplorer']['source_dir'] = '/opt/nbxplorer'
|
||||||
@@ -98,7 +95,7 @@ node.default['nbxplorer']['postgres']['database'] = 'nbxplorer'
|
|||||||
node.default['nbxplorer']['postgres']['user'] = 'nbxplorer'
|
node.default['nbxplorer']['postgres']['user'] = 'nbxplorer'
|
||||||
|
|
||||||
node.default['btcpay']['repo'] = 'https://github.com/btcpayserver/btcpayserver'
|
node.default['btcpay']['repo'] = 'https://github.com/btcpayserver/btcpayserver'
|
||||||
node.default['btcpay']['revision'] = 'v2.1.1'
|
node.default['btcpay']['revision'] = 'v2.3.7'
|
||||||
node.default['btcpay']['source_dir'] = '/opt/btcpay'
|
node.default['btcpay']['source_dir'] = '/opt/btcpay'
|
||||||
node.default['btcpay']['config_path'] = "/home/#{node['bitcoin']['username']}/.btcpayserver/Main/settings.config"
|
node.default['btcpay']['config_path'] = "/home/#{node['bitcoin']['username']}/.btcpayserver/Main/settings.config"
|
||||||
node.default['btcpay']['log_path'] = "/home/#{node['bitcoin']['username']}/.btcpayserver/debug.log"
|
node.default['btcpay']['log_path'] = "/home/#{node['bitcoin']['username']}/.btcpayserver/debug.log"
|
||||||
|
|||||||
@@ -5,29 +5,16 @@
|
|||||||
|
|
||||||
build_essential
|
build_essential
|
||||||
|
|
||||||
apt_repository 'universe' do
|
remote_file "/opt/dotnet-install.sh" do
|
||||||
uri 'http://archive.ubuntu.com/ubuntu/'
|
source "https://dot.net/v1/dotnet-install.sh"
|
||||||
distribution 'focal'
|
mode "0755"
|
||||||
components ['universe']
|
|
||||||
end
|
end
|
||||||
|
|
||||||
apt_package 'apt-transport-https'
|
execute "install_dotnet_10" do
|
||||||
|
command "/opt/dotnet-install.sh -c 10.0 --install-dir /usr/share/dotnet"
|
||||||
remote_file '/opt/packages-microsoft-prod.deb' do
|
not_if '/usr/share/dotnet/dotnet --version | grep -q "^10\."'
|
||||||
source node['dotnet']['ms_packages_src_url']
|
|
||||||
checksum node['dotnet']['ms_packages_src_checksum']
|
|
||||||
action :create_if_missing
|
|
||||||
end
|
end
|
||||||
|
|
||||||
dpkg_package 'packages-microsoft-prod' do
|
link "/usr/bin/dotnet" do
|
||||||
source '/opt/packages-microsoft-prod.deb'
|
to "/usr/share/dotnet/dotnet"
|
||||||
action :install
|
|
||||||
notifies :run, 'execute[apt_update]'
|
|
||||||
end
|
end
|
||||||
|
|
||||||
execute 'apt_update' do
|
|
||||||
command 'apt update'
|
|
||||||
action :nothing
|
|
||||||
end
|
|
||||||
|
|
||||||
apt_package 'dotnet-sdk-8.0'
|
|
||||||
|
|||||||
@@ -1,49 +1,86 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
set -e
|
||||||
|
set -o pipefail
|
||||||
|
|
||||||
# Calculate yesterday's date in YYYY-MM-DD format
|
# Calculate yesterday's date in YYYY-MM-DD format
|
||||||
YESTERDAY=$(date -d "yesterday" +%Y-%m-%d)
|
YESTERDAY=$(date -d "yesterday" +%Y-%m-%d)
|
||||||
echo "Starting price tracking for $YESTERDAY" >&2
|
echo "Starting price tracking for $YESTERDAY" >&2
|
||||||
|
|
||||||
|
# Helper function to perform HTTP requests with retries
|
||||||
|
# Usage: make_request <retries> <method> <url> [data] [header1] [header2] ...
|
||||||
|
make_request() {
|
||||||
|
local retries=$1
|
||||||
|
local method=$2
|
||||||
|
local url=$3
|
||||||
|
local data=$4
|
||||||
|
shift 4
|
||||||
|
local headers=("$@")
|
||||||
|
|
||||||
|
local count=0
|
||||||
|
local wait_time=3
|
||||||
|
local response
|
||||||
|
|
||||||
|
while [ "$count" -lt "$retries" ]; do
|
||||||
|
local curl_opts=(-s -S -f -X "$method")
|
||||||
|
|
||||||
|
if [ -n "$data" ]; then
|
||||||
|
curl_opts+=(-d "$data")
|
||||||
|
fi
|
||||||
|
|
||||||
|
for h in "${headers[@]}"; do
|
||||||
|
curl_opts+=(-H "$h")
|
||||||
|
done
|
||||||
|
|
||||||
|
if response=$(curl "${curl_opts[@]}" "$url"); then
|
||||||
|
echo "$response"
|
||||||
|
return 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "Request to $url failed (Attempt $((count+1))/$retries). Retrying in ${wait_time}s..." >&2
|
||||||
|
sleep "$wait_time"
|
||||||
|
count=$((count + 1))
|
||||||
|
done
|
||||||
|
|
||||||
|
echo "ERROR: Request to $url failed after $retries attempts" >&2
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
# Fetch and process rates for a fiat currency
|
# Fetch and process rates for a fiat currency
|
||||||
get_price_data() {
|
get_price_data() {
|
||||||
local currency=$1
|
local currency=$1
|
||||||
local data avg open24 last
|
local data avg open24 last
|
||||||
|
|
||||||
data=$(curl -s "https://www.bitstamp.net/api/v2/ticker/btc${currency,,}/")
|
if data=$(make_request 3 "GET" "https://www.bitstamp.net/api/v2/ticker/btc${currency,,}/" ""); then
|
||||||
if [ $? -eq 0 ] && [ ! -z "$data" ]; then
|
|
||||||
echo "Successfully retrieved ${currency} price data" >&2
|
echo "Successfully retrieved ${currency} price data" >&2
|
||||||
open24=$(echo "$data" | jq -r '.open_24')
|
open24=$(echo "$data" | jq -r '.open_24')
|
||||||
last=$(echo "$data" | jq -r '.last')
|
last=$(echo "$data" | jq -r '.last')
|
||||||
avg=$(( (${open24%.*} + ${last%.*}) / 2 ))
|
avg=$(echo "$open24 $last" | awk '{printf "%.0f", ($1 + $2) / 2}')
|
||||||
echo $avg
|
echo $avg
|
||||||
else
|
else
|
||||||
echo "ERROR: Failed to retrieve ${currency} price data" >&2
|
echo "ERROR: Failed to retrieve ${currency} price data" >&2
|
||||||
exit 1
|
return 1
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# Get price data for each currency
|
# Get price data for each currency
|
||||||
usd_avg=$(get_price_data "USD")
|
usd_avg=$(get_price_data "USD") || exit 1
|
||||||
eur_avg=$(get_price_data "EUR")
|
eur_avg=$(get_price_data "EUR") || exit 1
|
||||||
gbp_avg=$(get_price_data "GBP")
|
gbp_avg=$(get_price_data "GBP") || exit 1
|
||||||
|
|
||||||
# Create JSON
|
# Create JSON
|
||||||
json="{\"EUR\":$eur_avg,\"USD\":$usd_avg,\"GBP\":$gbp_avg}"
|
json=$(jq -n \
|
||||||
|
--argjson eur "$eur_avg" \
|
||||||
|
--argjson usd "$usd_avg" \
|
||||||
|
--argjson gbp "$gbp_avg" \
|
||||||
|
'{"EUR": $eur, "USD": $usd, "GBP": $gbp}')
|
||||||
echo "Rates: $json" >&2
|
echo "Rates: $json" >&2
|
||||||
|
|
||||||
# PUT in remote storage
|
# PUT in remote storage
|
||||||
response=$(curl -X PUT \
|
if make_request 3 "PUT" "<%= @rs_base_url %>/$YESTERDAY" "$json" \
|
||||||
-H "Authorization: Bearer $RS_AUTH" \
|
"Authorization: Bearer $RS_AUTH" \
|
||||||
-H "Content-Type: application/json" \
|
"Content-Type: application/json" > /dev/null; then
|
||||||
-d "$json" \
|
|
||||||
-w "%{http_code}" \
|
|
||||||
-s \
|
|
||||||
-o /dev/null \
|
|
||||||
"<%= @rs_base_url %>/$YESTERDAY")
|
|
||||||
|
|
||||||
if [ "$response" -eq 200 ] || [ "$response" -eq 201 ]; then
|
|
||||||
echo "Successfully uploaded price data" >&2
|
echo "Successfully uploaded price data" >&2
|
||||||
else
|
else
|
||||||
echo "ERROR: Failed to upload price data. HTTP status: $response" >&2
|
echo "ERROR: Failed to upload price data" >&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|||||||
@@ -0,0 +1 @@
|
|||||||
|
# No attributes here, use the blossom cookbook's attributes
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
name 'kosmos_blossom'
|
||||||
|
description 'Configures Blossom server for Kosmos infrastructure'
|
||||||
|
version '0.1.0'
|
||||||
|
depends 'blossom'
|
||||||
|
depends 'kosmos-base'
|
||||||
|
depends 'kosmos_openresty'
|
||||||
@@ -0,0 +1,38 @@
|
|||||||
|
#
|
||||||
|
# Cookbook Name:: kosmos_blossom
|
||||||
|
# Recipe:: default
|
||||||
|
#
|
||||||
|
|
||||||
|
credentials = Chef::EncryptedDataBagItem.load('credentials', 'blossom')
|
||||||
|
ldap_credentials = Chef::EncryptedDataBagItem.load('credentials', 'dirsrv')
|
||||||
|
|
||||||
|
node.default['blossom']['repo_url'] = 'https://github.com/67P/blossom-server.git'
|
||||||
|
node.default['blossom']['revision'] = 'feature/ldap'
|
||||||
|
|
||||||
|
node.default['blossom']['storage']['backend'] = 's3'
|
||||||
|
node.default['blossom']['storage']['s3']['access_key'] = credentials['s3_access_key']
|
||||||
|
node.default['blossom']['storage']['s3']['secret_key'] = credentials['s3_secret_key']
|
||||||
|
|
||||||
|
node.default['blossom']['allow_anonymous_uploads'] = false
|
||||||
|
|
||||||
|
node.default['blossom']['ldap']['enabled'] = true
|
||||||
|
node.default['blossom']['ldap']['url'] = 'ldap://ldap.kosmos.local:389'
|
||||||
|
node.default['blossom']['ldap']['bind_dn'] = ldap_credentials["service_dn"]
|
||||||
|
node.default['blossom']['ldap']['password'] = ldap_credentials["service_password"]
|
||||||
|
node.default['blossom']['ldap']['search_dn'] = "ou=kosmos.org,cn=users,dc=kosmos,dc=org"
|
||||||
|
node.default['blossom']['ldap']['search_filter'] = "(nostrKey={pubkey})"
|
||||||
|
|
||||||
|
node.default['blossom']['dashboard']['enabled'] = true
|
||||||
|
node.default['blossom']['dashboard']['username'] = credentials['admin_username'] || 'admin'
|
||||||
|
node.default['blossom']['dashboard']['password'] = credentials['admin_password']
|
||||||
|
|
||||||
|
node.default['blossom']['landing']['title'] = 'Kosmos Blossom Server'
|
||||||
|
|
||||||
|
include_recipe 'blossom::default'
|
||||||
|
|
||||||
|
firewall_rule 'blossom' do
|
||||||
|
port node['blossom']['port']
|
||||||
|
source '10.1.1.0/24'
|
||||||
|
protocol :tcp
|
||||||
|
command :allow
|
||||||
|
end
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
#
|
||||||
|
# Cookbook Name:: kosmos_blossom
|
||||||
|
# Recipe:: nginx
|
||||||
|
#
|
||||||
|
|
||||||
|
domain = node['blossom']['domain']
|
||||||
|
|
||||||
|
blossom_node = search(:node, 'role:blossom').first
|
||||||
|
|
||||||
|
if blossom_node.nil?
|
||||||
|
Chef::Log.warn("No node found with 'blossom' role. Not configuring nginx site.")
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
tls_cert_for domain do
|
||||||
|
auth 'gandi_dns'
|
||||||
|
action :create
|
||||||
|
end
|
||||||
|
|
||||||
|
openresty_site domain do
|
||||||
|
template 'nginx_conf_blossom.erb'
|
||||||
|
variables domain: domain,
|
||||||
|
upstream_host: blossom_node['knife_zero']['host'],
|
||||||
|
upstream_port: node['blossom']['port'],
|
||||||
|
max_size_mb: node['blossom']['max_size'] / 1024 / 1024,
|
||||||
|
ssl_cert: "/etc/letsencrypt/live/#{domain}/fullchain.pem",
|
||||||
|
ssl_key: "/etc/letsencrypt/live/#{domain}/privkey.pem"
|
||||||
|
end
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
upstream _blossom {
|
||||||
|
server <%= @upstream_host %>:<%= @upstream_port %>;
|
||||||
|
}
|
||||||
|
|
||||||
|
server {
|
||||||
|
server_name <%= @domain %>;
|
||||||
|
listen <%= "#{node['openresty']['listen_ip']}:" if node['openresty']['listen_ip'] %>443 ssl http2;
|
||||||
|
listen <%= "[#{node['openresty']['listen_ipv6']}]" %>:443 ssl http2;
|
||||||
|
|
||||||
|
access_log "/var/log/nginx/<%= @domain %>.access.log";
|
||||||
|
error_log "/var/log/nginx/<%= @domain %>.error.log";
|
||||||
|
|
||||||
|
client_max_body_size <%= @max_size_mb %>M;
|
||||||
|
|
||||||
|
ssl_certificate <%= @ssl_cert %>;
|
||||||
|
ssl_certificate_key <%= @ssl_key %>;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
proxy_pass http://_blossom;
|
||||||
|
proxy_http_version 1.1;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,2 +1,6 @@
|
|||||||
node.default["kosmos_drone"]["domain"] = "drone.kosmos.org"
|
node.default["kosmos_drone"]["domain"] = "drone.kosmos.org"
|
||||||
node.default["kosmos_drone"]["upstream_port"] = 80
|
node.default["kosmos_drone"]["upstream_port"] = 80
|
||||||
|
node.default["kosmos_drone"]["pg_host"] = "pg.kosmos.local"
|
||||||
|
node.default["kosmos_drone"]["pg_port"] = 5432
|
||||||
|
node.default["kosmos_drone"]["pg_db"] = "drone"
|
||||||
|
node.default["kosmos_drone"]["pg_user"] = "drone"
|
||||||
|
|||||||
@@ -9,11 +9,11 @@ credentials = data_bag_item("credentials", "drone")
|
|||||||
drone_credentials = data_bag_item('credentials', 'drone')
|
drone_credentials = data_bag_item('credentials', 'drone')
|
||||||
|
|
||||||
postgres_config = {
|
postgres_config = {
|
||||||
username: "drone",
|
host: node["kosmos_drone"]["pg_host"],
|
||||||
password: drone_credentials["postgresql_password"],
|
port: node["kosmos_drone"]["pg_port"],
|
||||||
host: "pg.kosmos.local",
|
database: node["kosmos_drone"]["pg_db"],
|
||||||
port: 5432,
|
username: node["kosmos_drone"]["pg_user"],
|
||||||
database: "drone"
|
password: drone_credentials["postgresql_password"]
|
||||||
}
|
}
|
||||||
|
|
||||||
directory deploy_path do
|
directory deploy_path do
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ server {
|
|||||||
}
|
}
|
||||||
|
|
||||||
location / {
|
location / {
|
||||||
|
add_header 'Access-Control-Allow-Origin' '*' always;
|
||||||
proxy_intercept_errors on;
|
proxy_intercept_errors on;
|
||||||
proxy_cache garage_cache;
|
proxy_cache garage_cache;
|
||||||
proxy_pass http://garage_web;
|
proxy_pass http://garage_web;
|
||||||
|
|||||||
@@ -1,11 +1,12 @@
|
|||||||
node.default["gitea"]["version"] = "1.25.4"
|
node.default["gitea"]["version"] = "1.26.4"
|
||||||
node.default["gitea"]["checksum"] = "a3031853e67c53714728ef705642c9046a11fb0ea356aff592e23efe6114607d"
|
node.default["gitea"]["checksum"] = "0faa36d151918f8f7d6e0f3ae67597d1c338583d695add146ac393109d0fc44a"
|
||||||
node.default["gitea"]["repo"] = nil
|
node.default["gitea"]["repo"] = nil
|
||||||
node.default["gitea"]["revision"] = nil
|
node.default["gitea"]["revision"] = nil
|
||||||
node.default["gitea"]["working_directory"] = "/var/lib/gitea"
|
node.default["gitea"]["working_directory"] = "/var/lib/gitea"
|
||||||
node.default["gitea"]["port"] = 3000
|
node.default["gitea"]["port"] = 3000
|
||||||
node.default["gitea"]["postgresql_host"] = "localhost:5432"
|
node.default["gitea"]["postgresql_host"] = "localhost:5432"
|
||||||
node.default["gitea"]["domain"] = "gitea.kosmos.org"
|
node.default["gitea"]["domain"] = "gitea.kosmos.org"
|
||||||
|
node.default["gitea"]["email"] = "gitea@kosmos.org"
|
||||||
|
|
||||||
node.default["gitea"]["config"] = {
|
node.default["gitea"]["config"] = {
|
||||||
"log": {
|
"log": {
|
||||||
@@ -22,5 +23,5 @@ node.default["gitea"]["config"] = {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
node.default["gitea"]["act_runner"]["version"] = "0.2.6"
|
node.default["gitea"]["runner"]["version"] = "2.0.0"
|
||||||
node.default["gitea"]["act_runner"]["checksum"] = "234c2bdb871e7b0bfb84697f353395bfc7819faf9f0c0443845868b64a041057"
|
node.default["gitea"]["runner"]["checksum"] = "447156b33407ee045409f5552bd4a188a315cdd4085b4b498d8d4a9ad26c9f73"
|
||||||
|
|||||||
@@ -19,6 +19,17 @@ jwt_secret = gitea_data_bag_item["jwt_secret"]
|
|||||||
internal_token = gitea_data_bag_item["internal_token"]
|
internal_token = gitea_data_bag_item["internal_token"]
|
||||||
secret_key = gitea_data_bag_item["secret_key"]
|
secret_key = gitea_data_bag_item["secret_key"]
|
||||||
|
|
||||||
|
apt_repository "git-core-ppa" do
|
||||||
|
uri "http://ppa.launchpad.net/git-core/ppa/ubuntu"
|
||||||
|
components ["main"]
|
||||||
|
key "E1DF1F24"
|
||||||
|
action :add
|
||||||
|
only_if do
|
||||||
|
node['platform'] == 'ubuntu' &&
|
||||||
|
Gem::Version.new(node['platform_version']) < Gem::Version.new('22.04')
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
package "git"
|
package "git"
|
||||||
|
|
||||||
user "git" do
|
user "git" do
|
||||||
@@ -26,6 +37,13 @@ user "git" do
|
|||||||
home "/home/git"
|
home "/home/git"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
directory "/home/git/.ssh" do
|
||||||
|
owner "git"
|
||||||
|
group "git"
|
||||||
|
mode "0700"
|
||||||
|
recursive true
|
||||||
|
end
|
||||||
|
|
||||||
directory working_directory do
|
directory working_directory do
|
||||||
owner "git"
|
owner "git"
|
||||||
group "git"
|
group "git"
|
||||||
@@ -78,6 +96,8 @@ if node.chef_environment == "production"
|
|||||||
end
|
end
|
||||||
|
|
||||||
config_variables = {
|
config_variables = {
|
||||||
|
domain: node["gitea"]["domain"],
|
||||||
|
email: node["gitea"]["email"],
|
||||||
working_directory: working_directory,
|
working_directory: working_directory,
|
||||||
git_home_directory: git_home_directory,
|
git_home_directory: git_home_directory,
|
||||||
repository_root_directory: repository_root_directory,
|
repository_root_directory: repository_root_directory,
|
||||||
@@ -98,6 +118,16 @@ config_variables = {
|
|||||||
s3_bucket: gitea_data_bag_item["s3_bucket"]
|
s3_bucket: gitea_data_bag_item["s3_bucket"]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bash "Generate git ed25519 keypair" do
|
||||||
|
user "git"
|
||||||
|
group "git"
|
||||||
|
cwd git_home_directory
|
||||||
|
code <<-EOH
|
||||||
|
ssh-keygen -t ed25519 -f #{git_home_directory}/.ssh/id_ed25519
|
||||||
|
EOH
|
||||||
|
creates "#{git_home_directory}/.ssh/id_ed25519"
|
||||||
|
end
|
||||||
|
|
||||||
template "#{config_directory}/app.ini" do
|
template "#{config_directory}/app.ini" do
|
||||||
source "app.ini.erb"
|
source "app.ini.erb"
|
||||||
owner "git"
|
owner "git"
|
||||||
|
|||||||
+8
-8
@@ -1,10 +1,10 @@
|
|||||||
#
|
#
|
||||||
# Cookbook:: kosmos_gitea
|
# Cookbook:: kosmos_gitea
|
||||||
# Recipe:: act_runner
|
# Recipe:: runner
|
||||||
#
|
#
|
||||||
|
|
||||||
version = node["gitea"]["act_runner"]["version"]
|
version = node["gitea"]["runner"]["version"]
|
||||||
download_url = "https://dl.gitea.com/act_runner/#{version}/act_runner-#{version}-linux-amd64"
|
download_url = "https://dl.gitea.com/gitea-runner/#{version}/gitea-runner-#{version}-linux-amd64"
|
||||||
working_directory = node["gitea"]["working_directory"]
|
working_directory = node["gitea"]["working_directory"]
|
||||||
gitea_credentials = data_bag_item("credentials", "gitea")
|
gitea_credentials = data_bag_item("credentials", "gitea")
|
||||||
runners = gitea_credentials["runners"]
|
runners = gitea_credentials["runners"]
|
||||||
@@ -25,9 +25,9 @@ end
|
|||||||
package apt_pkg
|
package apt_pkg
|
||||||
end
|
end
|
||||||
|
|
||||||
remote_file "/usr/local/bin/act_runner" do
|
remote_file "/usr/local/bin/gitea_runner" do
|
||||||
source download_url
|
source download_url
|
||||||
checksum node["gitea"]["act_runner"]["checksum"]
|
checksum node["gitea"]["runner"]["checksum"]
|
||||||
mode "0750"
|
mode "0750"
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -46,7 +46,7 @@ runners.each do |runner|
|
|||||||
bash "register_#{runner["org"]}_runner" do
|
bash "register_#{runner["org"]}_runner" do
|
||||||
cwd runner_dir
|
cwd runner_dir
|
||||||
code <<-EOF
|
code <<-EOF
|
||||||
act_runner register \
|
gitea_runner register \
|
||||||
--no-interactive \
|
--no-interactive \
|
||||||
--instance #{gitea_host} \
|
--instance #{gitea_host} \
|
||||||
--name #{runner_name} \
|
--name #{runner_name} \
|
||||||
@@ -59,7 +59,7 @@ act_runner register \
|
|||||||
content({
|
content({
|
||||||
Unit: {
|
Unit: {
|
||||||
Description: "Gitea Actions Runner for '#{runner["org"]}' org",
|
Description: "Gitea Actions Runner for '#{runner["org"]}' org",
|
||||||
Documentation: ["https://gitea.com/gitea/act_runner"],
|
Documentation: ["https://gitea.com/gitea/runner"],
|
||||||
Requires: "gitea.service",
|
Requires: "gitea.service",
|
||||||
After: "syslog.target network.target"
|
After: "syslog.target network.target"
|
||||||
},
|
},
|
||||||
@@ -67,7 +67,7 @@ act_runner register \
|
|||||||
Type: "simple",
|
Type: "simple",
|
||||||
WorkingDirectory: runner_dir,
|
WorkingDirectory: runner_dir,
|
||||||
Environment: "HOME=/root",
|
Environment: "HOME=/root",
|
||||||
ExecStart: "/usr/local/bin/act_runner daemon",
|
ExecStart: "/usr/local/bin/gitea_runner daemon",
|
||||||
ExecStartPre: "/bin/sleep 3", # Wait for Gitea's API to be up when restarting at the same time
|
ExecStartPre: "/bin/sleep 3", # Wait for Gitea's API to be up when restarting at the same time
|
||||||
Restart: "always",
|
Restart: "always",
|
||||||
},
|
},
|
||||||
@@ -2,12 +2,12 @@ APP_NAME = Gitea
|
|||||||
RUN_MODE = prod
|
RUN_MODE = prod
|
||||||
|
|
||||||
[server]
|
[server]
|
||||||
SSH_DOMAIN = gitea.kosmos.org
|
SSH_DOMAIN = <%= @domain %>
|
||||||
HTTP_PORT = 3000
|
HTTP_PORT = 3000
|
||||||
DISABLE_SSH = false
|
DISABLE_SSH = false
|
||||||
SSH_PORT = 22
|
SSH_PORT = 22
|
||||||
PROTOCOL = http
|
PROTOCOL = http
|
||||||
DOMAIN = gitea.kosmos.org
|
DOMAIN = <%= @domain %>
|
||||||
# Gitea is running behind an nginx reverse load balancer, use an HTTPS root URL
|
# Gitea is running behind an nginx reverse load balancer, use an HTTPS root URL
|
||||||
ROOT_URL = https://%(DOMAIN)s
|
ROOT_URL = https://%(DOMAIN)s
|
||||||
# REDIRECT_OTHER_PORT = true
|
# REDIRECT_OTHER_PORT = true
|
||||||
@@ -30,6 +30,16 @@ MAX_OPEN_CONNS = 20
|
|||||||
ROOT = <%= @repository_root_directory %>
|
ROOT = <%= @repository_root_directory %>
|
||||||
DISABLE_DOWNLOAD_SOURCE_ARCHIVES = true
|
DISABLE_DOWNLOAD_SOURCE_ARCHIVES = true
|
||||||
|
|
||||||
|
[repository.signing]
|
||||||
|
SIGNING_KEY = <%= @git_home_directory %>/.ssh/id_ed25519.pub
|
||||||
|
SIGNING_NAME = Gitea
|
||||||
|
SIGNING_EMAIL = git@<%= @domain %>
|
||||||
|
SIGNING_FORMAT = ssh
|
||||||
|
INITIAL_COMMIT = always
|
||||||
|
CRUD_ACTIONS = always
|
||||||
|
WIKI = always
|
||||||
|
MERGES = always
|
||||||
|
|
||||||
# [indexer]
|
# [indexer]
|
||||||
# ISSUE_INDEXER_PATH = /data/gitea/indexers/issues.bleve
|
# ISSUE_INDEXER_PATH = /data/gitea/indexers/issues.bleve
|
||||||
|
|
||||||
@@ -46,7 +56,7 @@ SMTP_ADDR = <%= @smtp_addr %>
|
|||||||
SMTP_PORT = <%= @smtp_port %>
|
SMTP_PORT = <%= @smtp_port %>
|
||||||
USER = <%= @smtp_user %>
|
USER = <%= @smtp_user %>
|
||||||
PASSWD = <%= @smtp_password %>
|
PASSWD = <%= @smtp_password %>
|
||||||
FROM = gitea@kosmos.org
|
FROM = <%= @email %>
|
||||||
|
|
||||||
[security]
|
[security]
|
||||||
INTERNAL_TOKEN = <%= @internal_token %>
|
INTERNAL_TOKEN = <%= @internal_token %>
|
||||||
@@ -65,10 +75,6 @@ DEFAULT_ALLOW_CREATE_ORGANIZATION = false
|
|||||||
DEFAULT_ENABLE_TIMETRACKING = false
|
DEFAULT_ENABLE_TIMETRACKING = false
|
||||||
NO_REPLY_ADDRESS = noreply.kosmos.org
|
NO_REPLY_ADDRESS = noreply.kosmos.org
|
||||||
|
|
||||||
[picture]
|
|
||||||
DISABLE_GRAVATAR = false
|
|
||||||
ENABLE_FEDERATED_AVATAR = true
|
|
||||||
|
|
||||||
[openid]
|
[openid]
|
||||||
ENABLE_OPENID_SIGNIN = false
|
ENABLE_OPENID_SIGNIN = false
|
||||||
ENABLE_OPENID_SIGNUP = false
|
ENABLE_OPENID_SIGNUP = false
|
||||||
|
|||||||
@@ -18,6 +18,8 @@ server {
|
|||||||
|
|
||||||
client_max_body_size 121M;
|
client_max_body_size 121M;
|
||||||
|
|
||||||
|
proxy_intercept_errors on;
|
||||||
|
|
||||||
location ~ ^/(avatars|repo-avatars)/.*$ {
|
location ~ ^/(avatars|repo-avatars)/.*$ {
|
||||||
proxy_buffers 1024 8k;
|
proxy_buffers 1024 8k;
|
||||||
proxy_pass http://_gitea_web;
|
proxy_pass http://_gitea_web;
|
||||||
@@ -52,5 +54,18 @@ server {
|
|||||||
proxy_set_header X-Real-IP $remote_addr;
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
proxy_set_header X-Forwarded-Proto $scheme;
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
error_page 404 = @slow_404;
|
||||||
|
}
|
||||||
|
|
||||||
|
# Slow down 404 responses to make scraping random URLs less attractive
|
||||||
|
location @slow_404 {
|
||||||
|
internal;
|
||||||
|
default_type text/plain;
|
||||||
|
content_by_lua_block {
|
||||||
|
ngx.sleep(10)
|
||||||
|
ngx.status = 404
|
||||||
|
ngx.say("Not Found")
|
||||||
|
ngx.exit(ngx.HTTP_NOT_FOUND)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
release = "20240514"
|
release = "20260321"
|
||||||
img_filename = "ubuntu-22.04-server-cloudimg-amd64-disk-kvm"
|
img_filename = "ubuntu-24.04-server-cloudimg-amd64"
|
||||||
|
|
||||||
node.default["kosmos_kvm"]["host"]["qemu_base_image"] = {
|
node.default["kosmos_kvm"]["host"]["qemu_base_image"] = {
|
||||||
"url" => "https://cloud-images.ubuntu.com/releases/jammy/release-#{release}/#{img_filename}.img",
|
"url" => "https://cloud-images.ubuntu.com/releases/noble/release-#{release}/#{img_filename}.img",
|
||||||
"checksum" => "2e7698b3ebd7caead06b08bd3ece241e6ce294a6db01f92ea12bcb56d6972c3f",
|
"checksum" => "5c3ddb00f60bc455dac0862fabe9d8bacec46c33ac1751143c5c3683404b110d",
|
||||||
"path" => "/var/lib/libvirt/images/base/#{img_filename}-#{release}.qcow2"
|
"path" => "/var/lib/libvirt/images/base/#{img_filename}-#{release}.qcow2"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
# Recipe:: host
|
# Recipe:: host
|
||||||
#
|
#
|
||||||
|
|
||||||
package %w(virtinst libvirt-daemon-system)
|
package %w(virtinst libvirt-daemon-system libvirt-clients)
|
||||||
|
|
||||||
directory "/var/lib/libvirt/images/base" do
|
directory "/var/lib/libvirt/images/base" do
|
||||||
recursive true
|
recursive true
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ DISKSIZE=${4:-10} # 10GB default
|
|||||||
# Directory where image files will be stored
|
# Directory where image files will be stored
|
||||||
IMAGE_DIR=/var/lib/libvirt/images
|
IMAGE_DIR=/var/lib/libvirt/images
|
||||||
IMAGE_PATH=$IMAGE_DIR/${VMNAME}.qcow2
|
IMAGE_PATH=$IMAGE_DIR/${VMNAME}.qcow2
|
||||||
CIDATA_PATH=${IMAGE_DIR}/cidata-${VMNAME}.iso
|
CIDATA_PATH=${IMAGE_DIR}/${VMNAME}-cloudinit
|
||||||
BASE_FILE=<%= @base_image_path %>
|
BASE_FILE=<%= @base_image_path %>
|
||||||
|
|
||||||
# Create the VM image if it does not already exist
|
# Create the VM image if it does not already exist
|
||||||
@@ -38,9 +38,8 @@ qemu-img info "$IMAGE_PATH"
|
|||||||
# Check if the cloud-init metadata file exists
|
# Check if the cloud-init metadata file exists
|
||||||
# if not, generate it
|
# if not, generate it
|
||||||
if [ ! -r $CIDATA_PATH ]; then
|
if [ ! -r $CIDATA_PATH ]; then
|
||||||
pushd $(dirname $CIDATA_PATH)
|
mkdir -p $CIDATA_PATH
|
||||||
mkdir -p $VMNAME
|
pushd $CIDATA_PATH
|
||||||
cd $VMNAME
|
|
||||||
|
|
||||||
cat > user-data <<-EOS
|
cat > user-data <<-EOS
|
||||||
#cloud-config
|
#cloud-config
|
||||||
@@ -62,25 +61,19 @@ instance-id: $VMNAME
|
|||||||
local-hostname: $VMNAME
|
local-hostname: $VMNAME
|
||||||
EOS
|
EOS
|
||||||
|
|
||||||
genisoimage -output "$CIDATA_PATH" -volid cidata -joliet -rock user-data meta-data
|
|
||||||
chown libvirt-qemu:kvm "$CIDATA_PATH"
|
|
||||||
chmod 600 "$CIDATA_PATH"
|
|
||||||
popd
|
popd
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# setting --os-variant to ubuntu20.04 and ubuntu18.04 breaks SSH and networking
|
|
||||||
virt-install \
|
virt-install \
|
||||||
--name "$VMNAME" \
|
--name "$VMNAME" \
|
||||||
--ram "$RAM" \
|
--ram "$RAM" \
|
||||||
--vcpus "$CPUS" \
|
--vcpus "$CPUS" \
|
||||||
--cpu host \
|
--cpu host \
|
||||||
--arch x86_64 \
|
--arch x86_64 \
|
||||||
--os-type linux \
|
--osinfo detect=on,name=ubuntu24.04 \
|
||||||
--os-variant ubuntu16.04 \
|
|
||||||
--hvm \
|
--hvm \
|
||||||
--virt-type kvm \
|
--virt-type kvm \
|
||||||
--disk "$IMAGE_PATH" \
|
--disk "$IMAGE_PATH" \
|
||||||
--cdrom "$CIDATA_PATH" \
|
|
||||||
--boot hd \
|
--boot hd \
|
||||||
--network=bridge=virbr0,model=virtio \
|
--network=bridge=virbr0,model=virtio \
|
||||||
--graphics none \
|
--graphics none \
|
||||||
@@ -88,4 +81,5 @@ virt-install \
|
|||||||
--console pty \
|
--console pty \
|
||||||
--channel unix,mode=bind,path=/var/lib/libvirt/qemu/$VMNAME.guest_agent.0,target_type=virtio,name=org.qemu.guest_agent.0 \
|
--channel unix,mode=bind,path=/var/lib/libvirt/qemu/$VMNAME.guest_agent.0,target_type=virtio,name=org.qemu.guest_agent.0 \
|
||||||
--autostart \
|
--autostart \
|
||||||
--import
|
--import \
|
||||||
|
--cloud-init root-password-generate=off,disable=on,meta-data=$CIDATA_PATH/meta-data,user-data=$CIDATA_PATH/user-data
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
node.default['kosmos_postgresql']['postgresql_version'] = "14"
|
||||||
|
|
||||||
# This is set to false by default, and set to true in the server resource
|
# This is set to false by default, and set to true in the server resource
|
||||||
# for replicas.
|
# for replicas.
|
||||||
node.default['kosmos_postgresql']['ready_to_set_up_replica'] = false
|
node.default['kosmos_postgresql']['ready_to_set_up_replica'] = false
|
||||||
|
|
||||||
|
# Address space from which clients are allowed to connect
|
||||||
|
node.default['kosmos_postgresql']['access_addr'] = "10.1.1.0/24"
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user