Skip to content

Commit

Permalink
Revert "Use distribution lite instead of production (#146809)"
Browse files Browse the repository at this point in the history
This reverts commit 0bf250a.
  • Loading branch information
jbudz committed Dec 6, 2022
1 parent 9afda2e commit e25dece
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import pRetry from 'p-retry';
const BEFORE_SETUP_TIMEOUT = 30 * 60 * 1000; // 30 minutes;

const DOCKER_START_TIMEOUT = 5 * 60 * 1000; // 5 minutes
const DOCKER_IMAGE = `docker.elastic.co/package-registry/distribution:lite`;
const DOCKER_IMAGE = `docker.elastic.co/package-registry/distribution:production`;

function firstWithTimeout(source$: Rx.Observable<any>, errorMsg: string, ms = 30 * 1000) {
return Rx.race(
Expand Down
2 changes: 1 addition & 1 deletion x-pack/test/fleet_api_integration/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const getFullPath = (relativePath: string) => path.join(path.dirname(__filename)
// This hash comes from the latest successful build of the Production Distribution of the Package Registry, for
// example: https://internal-ci.elastic.co/blue/organizations/jenkins/package_storage%2Findexing-job/detail/main/1884/pipeline/147.
// It should be updated any time there is a new package published.
export const dockerImage = 'docker.elastic.co/package-registry/distribution:lite';
export const dockerImage = 'docker.elastic.co/package-registry/distribution:production';

export const BUNDLED_PACKAGE_DIR = '/tmp/fleet_bundled_packages';

Expand Down
2 changes: 1 addition & 1 deletion x-pack/test/functional/config.base.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { pageObjects } from './page_objects';
// This hash comes from the latest successful build of the Production Distribution of the Package Registry, for
// example: https://internal-ci.elastic.co/blue/organizations/jenkins/package_storage%2Findexing-job/detail/main/1884/pipeline/147.
// It should be updated any time there is a new package published.
export const dockerImage = 'docker.elastic.co/package-registry/distribution:lite';
export const dockerImage = 'docker.elastic.co/package-registry/distribution:production';

// the default export of config files must be a config provider
// that returns an object with the projects config values
Expand Down

0 comments on commit e25dece

Please sign in to comment.