Hello community,
here is the log from the commit of package habootstrap-formula for
openSUSE:Factory checked in at 2020-10-14 15:40:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/habootstrap-formula (Old)
and /work/SRC/openSUSE:Factory/.habootstrap-formula.new.3486 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "habootstrap-formula"
Wed Oct 14 15:40:07 2020 rev:16 rq:841620 version:0.3.10+git.1602612394.3dfa262
Changes:
--------
--- /work/SRC/openSUSE:Factory/habootstrap-formula/habootstrap-formula.changes
2020-10-06 17:11:13.189532955 +0200
+++
/work/SRC/openSUSE:Factory/.habootstrap-formula.new.3486/habootstrap-formula.changes
2020-10-14 15:40:51.830397428 +0200
@@ -1,0 +2,6 @@
+Thu Oct 8 20:47:37 UTC 2020 - Dario Maiocchi <[email protected]>
+
+- Version bump 0.3.10
+ * Improve Formula with form description (jsc#SLE-4047)
+
+-------------------------------------------------------------------
Old:
----
habootstrap-formula-0.3.9+git.1601909969.6702e47.tar.gz
New:
----
habootstrap-formula-0.3.10+git.1602612394.3dfa262.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ habootstrap-formula.spec ++++++
--- /var/tmp/diff_new_pack.izcCux/_old 2020-10-14 15:40:52.750397750 +0200
+++ /var/tmp/diff_new_pack.izcCux/_new 2020-10-14 15:40:52.754397751 +0200
@@ -20,7 +20,7 @@
Name: habootstrap-formula
Group: System/Packages
-Version: 0.3.9+git.1601909969.6702e47
+Version: 0.3.10+git.1602612394.3dfa262
Release: 0
Summary: HA cluster (crmsh) deployment salt formula
++++++ _service ++++++
--- /var/tmp/diff_new_pack.izcCux/_old 2020-10-14 15:40:52.798397766 +0200
+++ /var/tmp/diff_new_pack.izcCux/_new 2020-10-14 15:40:52.798397766 +0200
@@ -4,8 +4,8 @@
<param name="scm">git</param>
<param name="exclude">.git</param>
<param name="filename">habootstrap-formula</param>
- <param name="versionformat">0.3.9+git.%ct.%h</param>
- <param name="revision">6702e4729ddfc6282536421fa624b09c4627eab1</param>
+ <param name="versionformat">0.3.10+git.%ct.%h</param>
+ <param name="revision">3dfa26232ae11519c7e325e102b9a8b30483940d</param>
</service>
<service name="recompress" mode="disabled">
++++++ habootstrap-formula-0.3.9+git.1601909969.6702e47.tar.gz ->
habootstrap-formula-0.3.10+git.1602612394.3dfa262.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/habootstrap-formula-0.3.9+git.1601909969.6702e47/Gemfile
new/habootstrap-formula-0.3.10+git.1602612394.3dfa262/Gemfile
--- old/habootstrap-formula-0.3.9+git.1601909969.6702e47/Gemfile
2020-10-05 16:59:29.000000000 +0200
+++ new/habootstrap-formula-0.3.10+git.1602612394.3dfa262/Gemfile
1970-01-01 01:00:00.000000000 +0100
@@ -1,6 +0,0 @@
-source "https://rubygems.org"
-
-gem "test-kitchen"
-gem "kitchen-docker"
-gem "kitchen-salt"
-gem "kitchen-inspec"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/habootstrap-formula-0.3.9+git.1601909969.6702e47/Vagrantfile
new/habootstrap-formula-0.3.10+git.1602612394.3dfa262/Vagrantfile
--- old/habootstrap-formula-0.3.9+git.1601909969.6702e47/Vagrantfile
2020-10-05 16:59:29.000000000 +0200
+++ new/habootstrap-formula-0.3.10+git.1602612394.3dfa262/Vagrantfile
1970-01-01 01:00:00.000000000 +0100
@@ -1,118 +0,0 @@
-# -*- mode: ruby -*-
-# vi: set ft=ruby :
-
-# NET_IP is used as the base private network
-# between the cluster nodes. To avoid collisions
-# with any other networks you have configured,
-# you can modify this. However, it will also be
-# necessary to update the salt configuration in
-# test/ which hard-codes the IP addresses of the
-# nodes.
-NET_IP = "10.13.38"
-
-# Master node configuration
-def configure_master(master_config, idx, roles, memory, cpus)
- master_config.vm.network :private_network, ip: "#{NET_IP}.#{10 + idx}"
- master_config.vm.provider :libvirt do |provider, override|
- provider.memory = memory
- provider.cpus = cpus
- provider.graphics_port = 9200 + idx
- end
-
- master_config.vm.synced_folder "./test/salt", "/srv/salt", type: 'rsync'
- master_config.vm.synced_folder "./test/pillar", "/srv/pillar", type: 'rsync'
- master_config.vm.synced_folder "./cluster", "/srv/salt/cluster", type:
'rsync'
-
- # salt-master must be installed this way, as install_master option does not
work properly for thi distro
- master_config.vm.provision "shell", inline: "zypper --non-interactive
--gpg-auto-import-keys ref"
- master_config.vm.provision "shell", inline: "zypper --gpg-auto-import-keys
in -y --force-resolution -l salt-master; exit 0"
-
- master_config.vm.provision :salt do |salt|
- salt.master_config = "test/config/etc/master"
- salt.master_key = "test/config/sshkeys/vagrant"
- salt.master_pub = "test/config/sshkeys/vagrant.pub"
- # Add cluster nodes ssh public keys
- salt.seed_master = {
- "node1" => "test/config/sshkeys/vagrant.pub",
- "node2" => "test/config/sshkeys/vagrant.pub",
- "node3" => "test/config/sshkeys/vagrant.pub"
- }
-
- salt.install_type = "stable"
- salt.install_master = true
- salt.verbose = true
- salt.colorize = true
- salt.bootstrap_options = "-P -c /tmp"
- end
-
- # Change hacluster user's shell from nologin to /bin/bash to avoid issues
with bindfs
- master_config.vm.provision "shell", inline: "chsh -s /bin/bash hacluster"
-
-end
-
-# Minoin node configuration
-def configure_minion(minion_config, idx, roles, memory, cpus)
- minion_config.vm.network :private_network, ip: "#{NET_IP}.#{10 + idx + 1}"
- minion_config.vm.network :forwarded_port, guest: 7630, host: 7630 + idx
- minion_config.vm.provider :libvirt do |provider, override|
- provider.memory = memory
- provider.cpus = cpus
- provider.graphics_port = 9200 + idx + 1
- end
-
- minion_config.vm.provision :salt do |salt|
- salt.minion_id = "node#{idx}"
- salt.minion_config = "test/config/etc/minion"
- salt.minion_key = "test/config/sshkeys/vagrant"
- salt.minion_pub = "test/config/sshkeys/vagrant.pub"
- salt.install_type = "stable"
- salt.verbose = true
- salt.colorize = true
- salt.bootstrap_options = "-P -c /tmp"
- end
-
- # Change hacluster user's shell from nologin to /bin/bash to avoid issues
with bindfs
- minion_config.vm.provision "shell", inline: "chsh -s /bin/bash hacluster"
- minion_config.vm.provision "shell", inline: "zypper rr
systemsmanagement-salt"
-
-end
-
-Vagrant.configure("2") do |config|
-
- config.vm.box = "hawk/tumbleweed-ha"
- config.vm.box_version = "1.1.3"
- config.vm.box_check_update = true
- config.ssh.insert_key = false
-
- config.vm.synced_folder './', '/vagrant', type: 'rsync'
-
- # node1: salt master
- config.vm.define :master, primary: true do |machine|
- machine.vm.hostname = "master"
- configure_master machine, 1, ["base", "node"], 768, 1
- end
-
- # node1: cluster create
- # node2: cluster join
- # node3: cluster join
- # update to add more nodes
- 1.upto(3).each do |i|
- config.vm.define "node#{i}" do |machine|
- machine.vm.hostname = "node#{i}"
- configure_minion machine, i, ["base", "node"], 768, 1
- end
- end
-
- remote_vmhost = ENV["VAGRANT_HOST"]
-
- config.vm.provider :libvirt do |provider, override|
- unless remote_vmhost.nil?
- provider.connect_via_ssh = true
- provider.host = remote_vmhost.strip
- provider.username = "root"
- end
- provider.cpu_mode = 'host-passthrough'
- provider.storage_pool_name = "default"
- provider.management_network_name = "vagrant"
- end
-end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/habootstrap-formula-0.3.9+git.1601909969.6702e47/_service
new/habootstrap-formula-0.3.10+git.1602612394.3dfa262/_service
--- old/habootstrap-formula-0.3.9+git.1601909969.6702e47/_service
2020-10-05 16:59:29.000000000 +0200
+++ new/habootstrap-formula-0.3.10+git.1602612394.3dfa262/_service
2020-10-13 20:06:34.000000000 +0200
@@ -4,7 +4,7 @@
<param name="scm">git</param>
<param name="exclude">.git</param>
<param name="filename">habootstrap-formula</param>
- <param name="versionformat">0.3.9+git.%ct.%h</param>
+ <param name="versionformat">0.3.10+git.%ct.%h</param>
<param name="revision">%%VERSION%%</param>
</service>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/habootstrap-formula-0.3.9+git.1601909969.6702e47/form.yml
new/habootstrap-formula-0.3.10+git.1602612394.3dfa262/form.yml
--- old/habootstrap-formula-0.3.9+git.1601909969.6702e47/form.yml
2020-10-05 16:59:29.000000000 +0200
+++ new/habootstrap-formula-0.3.10+git.1602612394.3dfa262/form.yml
2020-10-13 20:06:34.000000000 +0200
@@ -1,5 +1,5 @@
cluster:
- $name: Cluster
+ $name: HA Cluster
$type: namespace
install_packages:
@@ -419,4 +419,3 @@
$name: New HA cluster password
$type: password
$optional: true
-
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/habootstrap-formula-0.3.9+git.1601909969.6702e47/habootstrap-formula.changes
new/habootstrap-formula-0.3.10+git.1602612394.3dfa262/habootstrap-formula.changes
---
old/habootstrap-formula-0.3.9+git.1601909969.6702e47/habootstrap-formula.changes
2020-10-05 16:59:29.000000000 +0200
+++
new/habootstrap-formula-0.3.10+git.1602612394.3dfa262/habootstrap-formula.changes
2020-10-13 20:06:34.000000000 +0200
@@ -1,4 +1,10 @@
-------------------------------------------------------------------
+Thu Oct 8 20:47:37 UTC 2020 - Dario Maiocchi <[email protected]>
+
+- Version bump 0.3.10
+ * Improve Formula with form description (jsc#SLE-4047)
+
+-------------------------------------------------------------------
Mon Oct 5 14:12:01 UTC 2020 - Simranpal Singh <[email protected]>
- Update the SUMA form.yml file and prevalidation state with latest changes in
project
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/habootstrap-formula-0.3.9+git.1601909969.6702e47/metadata.yml
new/habootstrap-formula-0.3.10+git.1602612394.3dfa262/metadata.yml
--- old/habootstrap-formula-0.3.9+git.1601909969.6702e47/metadata.yml
2020-10-05 16:59:29.000000000 +0200
+++ new/habootstrap-formula-0.3.10+git.1602612394.3dfa262/metadata.yml
2020-10-13 20:06:34.000000000 +0200
@@ -1,4 +1,4 @@
description:
- Salt formula to bootstrap a HA cluster using crmsh bootstrap commands.
+ Salt formula to bootstrap and manage a pacemaker high availability cluster.
group:
- Cluster
+ HA Cluster