Hello community,
here is the log from the commit of package sapnwbootstrap-formula for
openSUSE:Factory checked in at 2019-12-21 12:32:33
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/sapnwbootstrap-formula (Old)
and /work/SRC/openSUSE:Factory/.sapnwbootstrap-formula.new.6675 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "sapnwbootstrap-formula"
Sat Dec 21 12:32:33 2019 rev:3 rq:758456 version:0.1.8
Changes:
--------
---
/work/SRC/openSUSE:Factory/sapnwbootstrap-formula/sapnwbootstrap-formula.changes
2019-12-09 21:38:23.830023160 +0100
+++
/work/SRC/openSUSE:Factory/.sapnwbootstrap-formula.new.6675/sapnwbootstrap-formula.changes
2019-12-21 12:33:05.611412088 +0100
@@ -1,0 +2,6 @@
+Thu Dec 19 12:19:23 UTC 2019 - Xabier Arbulu <[email protected]>
+
+- Version bump 0.1.8
+ * Update cloud provider data usage
+
+-------------------------------------------------------------------
Old:
----
sapnwbootstrap-formula-0.1.7.tar.gz
New:
----
sapnwbootstrap-formula-0.1.8.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ sapnwbootstrap-formula.spec ++++++
--- /var/tmp/diff_new_pack.D8ELbE/_old 2019-12-21 12:33:06.027412286 +0100
+++ /var/tmp/diff_new_pack.D8ELbE/_new 2019-12-21 12:33:06.031412288 +0100
@@ -19,7 +19,7 @@
# See also http://en.opensuse.org/openSUSE:Specfile_guidelines
Name: sapnwbootstrap-formula
-Version: 0.1.7
+Version: 0.1.8
Release: 0
Summary: SAP Netweaver platform deployment formula
License: Apache-2.0
++++++ sapnwbootstrap-formula-0.1.7.tar.gz ->
sapnwbootstrap-formula-0.1.8.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/sapnwbootstrap-formula-0.1.7/sapnwbootstrap-formula.changes
new/sapnwbootstrap-formula-0.1.8/sapnwbootstrap-formula.changes
--- old/sapnwbootstrap-formula-0.1.7/sapnwbootstrap-formula.changes
2019-12-09 20:06:53.750104822 +0100
+++ new/sapnwbootstrap-formula-0.1.8/sapnwbootstrap-formula.changes
2019-12-19 14:28:56.910027998 +0100
@@ -1,4 +1,10 @@
-------------------------------------------------------------------
+Thu Dec 19 12:19:23 UTC 2019 - Xabier Arbulu <[email protected]>
+
+- Version bump 0.1.8
+ * Update cloud provider data usage
+
+-------------------------------------------------------------------
Mon Dec 9 18:45:49 UTC 2019 - Simranpal Singh <[email protected]>
- Version bump 0.1.7
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/sapnwbootstrap-formula-0.1.7/sapnwbootstrap-formula.spec
new/sapnwbootstrap-formula-0.1.8/sapnwbootstrap-formula.spec
--- old/sapnwbootstrap-formula-0.1.7/sapnwbootstrap-formula.spec
2019-12-09 20:06:53.750104822 +0100
+++ new/sapnwbootstrap-formula-0.1.8/sapnwbootstrap-formula.spec
2019-12-19 14:28:56.910027998 +0100
@@ -19,7 +19,7 @@
# See also http://en.opensuse.org/openSUSE:Specfile_guidelines
Name: sapnwbootstrap-formula
-Version: 0.1.7
+Version: 0.1.8
Release: 0
Summary: SAP Netweaver platform deployment formula
License: Apache-2.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/sapnwbootstrap-formula-0.1.7/templates/cluster_resources.j2
new/sapnwbootstrap-formula-0.1.8/templates/cluster_resources.j2
--- old/sapnwbootstrap-formula-0.1.7/templates/cluster_resources.j2
2019-12-09 20:06:53.750104822 +0100
+++ new/sapnwbootstrap-formula-0.1.8/templates/cluster_resources.j2
2019-12-19 14:28:56.910027998 +0100
@@ -1,4 +1,5 @@
{% set data = pillar.cluster.configure.template.parameters %}
+{% set cloud_provider = grains['cloud_provider'] %}
{% set sid = data.sid.upper() %}
{% set ascs_instance = '{:0>2}'.format(data.ascs_instance) %}
{% set ers_instance = '{:0>2}'.format(data.ers_instance) %}
@@ -27,14 +28,14 @@
AUTOMATIC_RECOVER=false \
meta resource-stickiness=5000 failure-timeout=60 \
migration-threshold=1 priority=10
-{% if data.platform == "azure" %}
+{% if cloud_provider == "microsoft-azure" %}
primitive nc_{{ sid }}_ASCS anything \
params binfile="/usr/bin/socat" cmdline_options="-U TCP-LISTEN:620{{
ascs_instance }},backlog=10,fork,reuseaddr /dev/null" \
op monitor timeout=20s interval=10 depth=0
{% endif %}
group grp_{{ sid }}_ASCS{{ ascs_instance }} \
- rsc_ip_{{ sid }}_ASCS{{ ascs_instance }} rsc_fs_{{ sid }}_ASCS{{
ascs_instance }} rsc_sap_{{ sid }}_ASCS{{ ascs_instance }} {% if data.platform
== "azure" %} nc_{{ sid }}_ASCS {% endif %} \
+ rsc_ip_{{ sid }}_ASCS{{ ascs_instance }} rsc_fs_{{ sid }}_ASCS{{
ascs_instance }} rsc_sap_{{ sid }}_ASCS{{ ascs_instance }} {% if cloud_provider
== "microsoft-azure" %} nc_{{ sid }}_ASCS {% endif %} \
meta resource-stickiness=3000
primitive rsc_fs_{{ sid }}_ERS{{ ers_instance }} Filesystem \
@@ -52,14 +53,14 @@
START_PROFILE="/sapmnt/{{ sid }}/profile/{{ sid }}_ERS{{ ers_instance
}}_{{ ers_virtual_host }}" \
AUTOMATIC_RECOVER=false IS_ERS=true \
meta priority=1000
-{% if data.platform == "azure" %}
+{% if cloud_provider == "microsoft-azure" %}
primitive nc_{{ sid }}_ERS anything \
params binfile="/usr/bin/socat" cmdline_options="-U TCP-LISTEN:621{{
ers_instance }},backlog=10,fork,reuseaddr /dev/null" \
op monitor timeout=20s interval=10 depth=0
{% endif %}
group grp_{{ sid }}_ERS{{ ers_instance }} \
- rsc_ip_{{ sid }}_ERS{{ ers_instance }} rsc_fs_{{ sid }}_ERS{{ ers_instance
}} rsc_sap_{{ sid }}_ERS{{ ers_instance }} {% if data.platform == "azure" %}
nc_{{ sid }}_ERS {% endif %}
+ rsc_ip_{{ sid }}_ERS{{ ers_instance }} rsc_fs_{{ sid }}_ERS{{ ers_instance
}} rsc_sap_{{ sid }}_ERS{{ ers_instance }} {% if cloud_provider ==
"microsoft-azure" %} nc_{{ sid }}_ERS {% endif %}
colocation col_sap_{{ sid }}_no_both -5000: grp_{{ sid }}_ERS{{ ers_instance
}} grp_{{ sid }}_ASCS{{ ascs_instance }}
location loc_sap_{{ sid }}_failover_to_ers rsc_sap_{{ sid }}_ASCS{{
ascs_instance }} \