blob: b4137ddce95136e04f2d341829c24229801e2749 [file] [log] [blame]
Ivan Berezovskiyc46e7c02018-10-29 18:22:09 +04001#!/bin/bash -xe
2
3FORMULA_VERSION=${FORMULA_VERSION:-2018.3.1}
4APT_MIRANTIS_SALT_REPO=${APT_MIRANTIS_SALT_REPO:-"http://apt.mirantis.com/xenial/ $FORMULA_VERSION salt"}
5SALT_OPTS="-t 10 --retcode-passthrough --no-color"
6
7echo "deb [arch=amd64] ${APT_MIRANTIS_SALT_REPO}" > /etc/apt/sources.list.d/mcp_salt.list
8apt-get update
9apt-get install salt-formula* -y
10
11# Basic states
12salt-call saltutil.clear_cache
13salt-call saltutil.refresh_pillar
14salt-call saltutil.sync_all
15salt-call ${SALT_OPTS} reclass.validate_pillar
16
17salt-call ${SALT_OPTS} state.sls linux.system.repo,linux.system.package,linux.system.user,linux.system.directory,linux.system.config
18salt-call ${SALT_OPTS} state.sls linux.network
19salt-call ${SALT_OPTS} state.sls salt.minion.ca
20
21salt-call ${SALT_OPTS} state.sls salt
22salt-call ${SALT_OPTS} state.sls docker.host
23salt-call ${SALT_OPTS} saltutil.sync_all
24
Ivan Berezovskiy23035a22018-11-14 13:25:51 +040025docker pull "docker-prod-local.artifactory.mirantis.com/mirantis/cicd/mysql:${MCP_VERSION}"
26docker pull "docker-prod-local.artifactory.mirantis.com/mirantis/cicd/gerrit:${MCP_VERSION}"
27docker pull "docker-prod-local.artifactory.mirantis.com/mirantis/cicd/jenkins:${MCP_VERSION}"
28docker pull "docker-prod-local.artifactory.mirantis.com/mirantis/cicd/jnlp-slave:${MCP_VERSION}"
29docker pull "docker-prod-local.artifactory.mirantis.com/mirantis/cicd/phpldapadmin:${MCP_VERSION}"
30docker pull "docker-prod-local.artifactory.mirantis.com/mirantis/model-generator/operations-api:${MCP_VERSION}"
31docker pull "docker-prod-local.artifactory.mirantis.com/mirantis/model-generator/operations-ui:${MCP_VERSION}"
32# Mirror images below into artifactory
Ivan Berezovskiyc46e7c02018-10-29 18:22:09 +040033docker pull jboss/keycloak:4.5.0.Final
34docker pull jboss/keycloak-proxy:3.4.2.Final
Ivan Berezovskiy23035a22018-11-14 13:25:51 +040035docker pull cockroachdb/cockroach:v2.1.0
36# FIXME: setup build for images below with proper versions and publish to artifactory
37docker pull atengler/cockroach-init:latest
Ivan Berezovskiyc46e7c02018-10-29 18:22:09 +040038echo "---------------------"
39docker images
40echo "---------------------"