Drop Travis CI support
Fixes: PROD-25037 (PROD:25037)
Change-Id: I294221f61bbd0cd515393f52b82f3a1c065c4aea
diff --git a/.kitchen.yml b/.kitchen.yml
index cb243b1..34e288b 100644
--- a/.kitchen.yml
+++ b/.kitchen.yml
@@ -8,7 +8,7 @@
name: salt_solo
salt_install: bootstrap
salt_bootstrap_url: https://bootstrap.saltstack.com
- salt_version: <%=ENV['SALT_VERSION'] || 'latest'%>
+ salt_version: latest
require_chef: false
log_level: error
formula: horizon
@@ -17,7 +17,7 @@
dependencies:
- name: apache
repo: git
- source: https://github.com/salt-formulas/salt-formula-apache
+ source: https://gerrit.mcp.mirantis.com/salt-formulas/apache
state_top:
base:
"*":
@@ -33,16 +33,24 @@
name: inspec
sudo: true
+docker_images:
+ - &xenial-20177 <%=ENV['IMAGE_XENIAL_20177'] || 'docker-dev-local.docker.mirantis.net/epcim/salt/saltstack-ubuntu-xenial-salt-2017.7/salt:2018_11_19'%>
+ - &xenial-stable <%=ENV['IMAGE_XENIAL_STABLE'] || 'docker-dev-local.docker.mirantis.net/epcim/salt/saltstack-ubuntu-xenial-salt-stable/salt:2018_11_19'%>
+
platforms:
- - name: <%=ENV['PLATFORM'] || 'saltstack-ubuntu-xenial-salt-stable' %>
+ - name: xenial-2017.7
driver_config:
- image: <%=ENV['PLATFORM'] || 'docker-dev-local.docker.mirantis.net/epcim/salt/saltstack-ubuntu-xenial-salt-stable/salt:2018_11_19'%>
+ image: *xenial-20177
+ platform: ubuntu
+
+ - name: xenial-stable
+ driver_config:
+ image: *xenial-stable
platform: ubuntu
# - name: centos-7.1
suites:
-
- name: cluster
provisioner:
pillars-from-files:
@@ -54,4 +62,5 @@
pillars-from-files:
apache_single.sls: tests/pillar/apache_single.sls
horizon.sls: tests/pillar/single.sls
+
# vim: ft=yaml sw=2 ts=2 sts=2 tw=125