Skip to content

Commit 59e8a08

Browse files
committed
base image docs, remove CI
1 parent 168e2ef commit 59e8a08

File tree

3 files changed

+24
-48
lines changed

3 files changed

+24
-48
lines changed

.github/workflows/k8s-publish-test-base-image.yml

Lines changed: 0 additions & 47 deletions
This file was deleted.

lib/k8s/Makefile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.PHONY: build-base
2+
build:
3+
docker build --platform linux/amd64 -t test-base-image -f Dockerfile.base .
4+
5+
push:
6+
aws ecr get-login-password --region us-west-2 | docker login --username AWS --password-stdin $(registry).dkr.ecr.us-west-2.amazonaws.com
7+
docker tag test-base-image:latest $(registry).dkr.ecr.us-west-2.amazonaws.com/test-base-image:latest
8+
docker push $(registry).dkr.ecr.us-west-2.amazonaws.com/test-base-image:latest

lib/k8s/README.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
11
# K8s Deployment (Deprecated)
22

3-
[![Documentation](https://img.shields.io/badge/Documentation-MDBook-blue?style=for-the-badge)](https://smartcontractkit.github.io/chainlink-testing-framework/lib/k8s/KUBERNETES.html)
3+
[![Documentation](https://img.shields.io/badge/Documentation-MDBook-blue?style=for-the-badge)](https://smartcontractkit.github.io/chainlink-testing-framework/lib/k8s/KUBERNETES.html)
4+
5+
## K8s Framework Sunsetting
6+
7+
We were using this `K8s` framework specifically in `sdlc` cluster but after migration to `main.stage` we use it only on-demand for some legacy tests.
8+
9+
### Building Base Image for K8s Tests
10+
Is rarely required but sometimes we need infrequent updates.
11+
12+
Go to SSO [home](https://sso.smartcontract.com/app/UserHome) and find AWS tile, use creds for `secure-sdlc` account in your terminal, then build and push the image.
13+
14+
```bash
15+
make build
16+
make push registry=795953128386
17+
```
18+

0 commit comments

Comments
 (0)