Skip to content

Commit

Permalink
Merge pull request #30 from humanitec/external-registry
Browse files Browse the repository at this point in the history
feat: support external registries
  • Loading branch information
johanneswuerbach authored Dec 2, 2022
2 parents 591ed2d + 12043e6 commit d8c6bdb
Show file tree
Hide file tree
Showing 7 changed files with 93 additions and 101 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin
- run: npm ci
- run: npm run lint
- run: npm test
Expand Down
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,20 @@ _Optional_ Use `additional-docker-arguments` if you need to provide additional a
additional-docker-arguments: --build-arg env=staging
```

### `external-registry-url`

_Optional_ Push the image to an external container registry. This registry does not need to be [registered with Humanitec](https://docs.humanitec.com/guides/connect-ci-setup/container-registries) and authentication needs to be done before calling this action (e.g. using workload identity).

```yaml
uses: humanitec/build-push-to-humanitec@v1
with:
humanitec-token: ${{ secrets.HUMANITEC_TOKEN }}
organization: awesome-company
external-registry-url: europe-west3-docker.pkg.dev/gcp-project/repository
```

Will push the resulting image to `europe-west3-docker.pkg.dev/gcp-project/repository/{image-name}`.

## Outputs

_None._
Expand Down
26 changes: 26 additions & 0 deletions action.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,4 +132,30 @@ describe('action', () => {
),
);
});

test('supports an external registry', async () => {
repo = 'test-image';
process.env['GITHUB_REPOSITORY'] = repo;

setInput('external-registry-url', 'ghcr.io/humanitec/build-push-to-humanitec');

await runAction();
expect(process.exitCode).toBeFalsy;

const res = await humanitecReq(`orgs/${orgId}/artefact-versions`, {method: 'GET'});
expect(res.status).toBe(200);

const body = await res.json();

expect(body).toEqual(
expect.arrayContaining(
[
expect.objectContaining({
commit: commit,
name: `ghcr.io/humanitec/build-push-to-humanitec/${repo}`,
}),
],
),
);
});
});
39 changes: 23 additions & 16 deletions action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,13 @@ export async function runAction() {
const imageName = core.getInput('image-name') || (process.env.GITHUB_REPOSITORY || '').replace(/.*\//, '');
const context = core.getInput('context') || core.getInput('dockerfile') || '.';
const file = core.getInput('file') || '';
const registryHost = core.getInput('humanitec-registry') || 'registry.humanitec.io';
let registryHost = core.getInput('humanitec-registry') || 'registry.humanitec.io';
const apiHost = core.getInput('humanitec-api') || 'api.humanitec.io';
const tag = core.getInput('tag') || '';
const commit = process.env.GITHUB_SHA || '';
const autoTag = /^\s*(true|1)\s*$/i.test(core.getInput('auto-tag'));
const additionalDockerArguments = core.getInput('additional-docker-arguments') || '';
const externalRegistryUrl = core.getInput('external-registry-url') || '';

const ref = process.env.GITHUB_REF || '';
if (!existsSync(`${process.env.GITHUB_WORKSPACE}/.git`)) {
Expand All @@ -44,20 +45,25 @@ export async function runAction() {

const humanitec = humanitecFactory(token, orgId, apiHost);

let registryCreds;
try {
registryCreds = await humanitec.getRegistryCredentials();
} catch (error) {
core.error('Unable to fetch repository credentials.');
core.error('Did you add the token to your Github Secrets? ' +
if (externalRegistryUrl == '') {
let registryCreds;
try {
registryCreds = await humanitec.getRegistryCredentials();
} catch (error) {
core.error('Unable to fetch repository credentials.');
core.error('Did you add the token to your Github Secrets? ' +
'http:/docs.humanitec.com/connecting-your-ci#github-actions');
core.setFailed('Unable to access Humanitec.');
return;
}
core.setFailed('Unable to access Humanitec.');
return;
}

if (!docker.login(registryCreds.username, registryCreds.password, registryHost)) {
core.setFailed('Unable to connect to the humanitec registry.');
return;
if (!docker.login(registryCreds.username, registryCreds.password, registryHost)) {
core.setFailed('Unable to connect to the humanitec registry.');
return;
}
registryHost = `${registryHost}/${orgId}`;
} else {
registryHost = externalRegistryUrl;
}

process.chdir((process.env.GITHUB_WORKSPACE || ''));
Expand All @@ -70,21 +76,22 @@ export async function runAction() {
} else {
version = commit;
}
const localTag = `${orgId}/${imageName}:${version}`;
const imageWithVersion = `${imageName}:${version}`;
const localTag = `${orgId}/${imageWithVersion}`;
const imageId = await docker.build(localTag, file, additionalDockerArguments, context);
if (!imageId) {
core.setFailed('Unable build image from Dockerfile.');
return;
}

const remoteTag = `${registryHost}/${localTag}`;
const remoteTag = `${registryHost}/${imageWithVersion}`;
if (!docker.push(imageId, remoteTag)) {
core.setFailed('Unable to push image to registry');
return;
}

const payload = {
name: `${registryHost}/${orgId}/${imageName}`,
name: `${registryHost}/${imageName}`,
type: 'container',
version,
ref,
Expand Down
4 changes: 4 additions & 0 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ inputs:
description: 'Allows the default humanitec api to be overidden for testing.'
required: false
default: 'api.humanitec.io'
external-registry-url:
description: 'Push the image to an external container registry. This registry does not need to be [registered with Humanitec](https://docs.humanitec.com/guides/connect-ci-setup/container-registries) and authentication needs to be done by the explicitly (e.g. using workload identity).'
required: false
default: ''
runs:
using: 'node16'
main: 'dist/index.js'
Expand Down
68 changes: 0 additions & 68 deletions chunk.ts

This file was deleted.

42 changes: 25 additions & 17 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7773,12 +7773,13 @@ async function runAction() {
const imageName = core.getInput('image-name') || (process.env.GITHUB_REPOSITORY || '').replace(/.*\//, '');
const context = core.getInput('context') || core.getInput('dockerfile') || '.';
const file = core.getInput('file') || '';
const registryHost = core.getInput('humanitec-registry') || 'registry.humanitec.io';
let registryHost = core.getInput('humanitec-registry') || 'registry.humanitec.io';
const apiHost = core.getInput('humanitec-api') || 'api.humanitec.io';
const tag = core.getInput('tag') || '';
const commit = process.env.GITHUB_SHA || '';
const autoTag = /^\s*(true|1)\s*$/i.test(core.getInput('auto-tag'));
const additionalDockerArguments = core.getInput('additional-docker-arguments') || '';
const externalRegistryUrl = core.getInput('external-registry-url') || '';
const ref = process.env.GITHUB_REF || '';
if (!(0, node_fs_1.existsSync)(`${process.env.GITHUB_WORKSPACE}/.git`)) {
core.error('It does not look like anything was checked out.');
Expand All @@ -7798,20 +7799,26 @@ async function runAction() {
return;
}
const humanitec = (0, humanitec_1.humanitecFactory)(token, orgId, apiHost);
let registryCreds;
try {
registryCreds = await humanitec.getRegistryCredentials();
}
catch (error) {
core.error('Unable to fetch repository credentials.');
core.error('Did you add the token to your Github Secrets? ' +
'http:/docs.humanitec.com/connecting-your-ci#github-actions');
core.setFailed('Unable to access Humanitec.');
return;
if (externalRegistryUrl == '') {
let registryCreds;
try {
registryCreds = await humanitec.getRegistryCredentials();
}
catch (error) {
core.error('Unable to fetch repository credentials.');
core.error('Did you add the token to your Github Secrets? ' +
'http:/docs.humanitec.com/connecting-your-ci#github-actions');
core.setFailed('Unable to access Humanitec.');
return;
}
if (!docker.login(registryCreds.username, registryCreds.password, registryHost)) {
core.setFailed('Unable to connect to the humanitec registry.');
return;
}
registryHost = `${registryHost}/${orgId}`;
}
if (!docker.login(registryCreds.username, registryCreds.password, registryHost)) {
core.setFailed('Unable to connect to the humanitec registry.');
return;
else {
registryHost = externalRegistryUrl;
}
process.chdir((process.env.GITHUB_WORKSPACE || ''));
let version = '';
Expand All @@ -7824,19 +7831,20 @@ async function runAction() {
else {
version = commit;
}
const localTag = `${orgId}/${imageName}:${version}`;
const imageWithVersion = `${imageName}:${version}`;
const localTag = `${orgId}/${imageWithVersion}`;
const imageId = await docker.build(localTag, file, additionalDockerArguments, context);
if (!imageId) {
core.setFailed('Unable build image from Dockerfile.');
return;
}
const remoteTag = `${registryHost}/${localTag}`;
const remoteTag = `${registryHost}/${imageWithVersion}`;
if (!docker.push(imageId, remoteTag)) {
core.setFailed('Unable to push image to registry');
return;
}
const payload = {
name: `${registryHost}/${orgId}/${imageName}`,
name: `${registryHost}/${imageName}`,
type: 'container',
version,
ref,
Expand Down

0 comments on commit d8c6bdb

Please sign in to comment.