0%

構成管理ツールとしての役割の一つにユーザー管理があります。複数のサーバーにユーザーを追加したり、公開鍵を設定する作業が自動化できると便利になります。あらかじめ定義されたSalt FormulaはGitHubのsaltstack-formulasリポジトリにあります。今回はusers-formulaを使いユーザー管理を行います。

Read more »

Salt チュートリアル - Part4 Saltを使った監視インフラで少し書きましたが、Saltのpsモジューを使うと、監視システムに必要なメトリクスをminionから集めることができます。今回はSLSファイルを作成しないで、psutilをpipモジュールを使いインストールしてみます。

Read more »

Saltで使われる用語は非英語圏だと直感的にわかりづらいものが多いですが、Salt StatesSalt State Systemは、Saltの構成管理ツールとしての中心的な仕組みです。Salt Stateはサーバーの構成管理に伴う、パッケージのインストール、設定ファイルの作成、サービスの起動、ユーザー管理などを行います。Puppet の manifests や Chef の recipes に相当します。

Read more »

プロダクション環境でCoreOSが使えない場合や、ホスト1台で構わない場合は、Saltで構成管理をしてsalt-minionにDockerホストをインストールして使っています。今回はVPSでなくIDCFクラウドを使います。FWの設定をしなくてもVLAN内で安全な通信と名前解決ができるので、Saltクラスタを作る場合に便利です。

Read more »

After python-pip works correctly in a Salt cluster, I face yet another problem. This time salt.states.dockerio doesn't work. An error occured when I use docker.pulled state, a message tells that client and server don't have same version (client 1.15, server 1.14). It seems that this is also Ubuntu upgrade related problems.

Read more »

I've been upgrading my Salt cluster which was created a few months ago and left as it was. The problem is happened after sudo do-release-upgrade from Ubuntu 12.04 to 14.04 with salt-master and salt-minions. When I run sudo salt '*' state.highstate, it failed because pip.installed state is unavailable, although pip is installed successfully. After googled I found some related posts.

Read more »

It seems that my fleet units have been running after I switched to OpenResty as a dynamic routing unit. It might cause I revmoved Requires or changed to Wants derective. By the way, it is very difficult to understand of systemd units behaviour coupled with etcd and fleet. In a Unit section there are some directives related to dependencies and ordering. I confused differences between effectiveness, so I collect some references for study.

Read more »

I give up to continue to use a docker-gen, although it is convenient for us to create a Nginx config file automatically. If a docker-gen unit has been killed every other related units are killed. I decide to switch our reverse proxy from docker-gen and nginx to OpenResty and Redis combination.

Read more »