Skip to content

Commit 60dafb8

Browse files
authored
Merge pull request #59 from segmentio/revert-58-BGLRINFRA-1066-api-deprecation-changes
Revert "BGLRINFRA-1066: extensionsv1beta1 to extensionsv1 api deprecation change"
2 parents 2b9d9ca + af49d1d commit 60dafb8

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.circleci/config.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
version: 2
22
jobs:
33
test:
4-
working_directory: /go/src/github.com/segmentio/kubeapply
4+
working_directory: ~/go/src/github.com/segmentio/kubeapply
55
docker:
6-
- image: circleci/golang:1.18
6+
- image: cimg/go:1.18
77
environment:
88
GO111MODULE: "on"
99

@@ -21,11 +21,11 @@ jobs:
2121
mkdir -p deps
2222
cd deps
2323
../scripts/pull-deps.sh
24-
- run:
25-
name: Run tests
26-
command: |
27-
export PATH="$PATH:/go/src/github.com/segmentio/kubeapply/deps"
28-
make test-ci
24+
# - run:
25+
# name: Run tests
26+
# command: |
27+
# export PATH="$PATH:/go/src/github.com/segmentio/kubeapply/deps"
28+
# make test-ci
2929
- run:
3030
name: Run Snyk
3131
environment:
@@ -37,9 +37,9 @@ jobs:
3737
- "/go/pkg/mod"
3838

3939
publish:
40-
working_directory: /go/src/github.com/segmentio/kubeapply
40+
working_directory: ~/go/src/github.com/segmentio/kubeapply
4141
docker:
42-
- image: circleci/golang:1.18
42+
- image: cimg/go:1.18
4343

4444
steps:
4545
- checkout
@@ -50,7 +50,7 @@ jobs:
5050
name: ECR Login
5151
command: |
5252
sudo apt-get update && sudo apt-get install --yes python3 python3-pip
53-
pip3 install awscli==1.16.292
53+
pip3 install awscli==1.25.93
5454
$(aws ecr get-login --no-include-email --region ${AWS_REGION} --registry-ids ${AWS_ACCOUNT_ID})
5555
- run:
5656
name: Build and push main image

Dockerfile.lambda

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ FROM public.ecr.aws/lambda/go:1
2828

2929
RUN yum install -y git
3030

31-
RUN curl -O https://bootstrap.pypa.io/get-pip.py && python3 get-pip.py
31+
RUN curl -O https://bootstrap.pypa.io/pip/3.6/get-pip.py && python3 get-pip.py
3232
RUN pip3 install awscli
3333

3434
COPY --from=builder \

0 commit comments

Comments
 (0)