Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Informatica Secure Agent
Manage
Activity
Members
Labels
Plan
Issues
30
Issue boards
Milestones
Iterations
Requirements
Jira
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
interop
iics
Informatica Secure Agent
Merge requests
!57
Python Addition
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Python Addition
SAM.CARPENTER-master-patch-52953
into
master
Overview
0
Commits
18
Pipelines
0
Changes
2
Merged
SAM CARPENTER
requested to merge
SAM.CARPENTER-master-patch-52953
into
master
8 months ago
Overview
0
Commits
18
Pipelines
0
Changes
2
Expand
adds python to the SA docker process.
👍
0
👎
0
Merge request reports
Compare
master
version 16
ea676bbd
8 months ago
version 15
71fe57fd
8 months ago
version 14
12fe6d49
8 months ago
version 13
553c307d
8 months ago
version 12
919d76cc
8 months ago
version 11
568c4487
8 months ago
version 10
6de51518
8 months ago
version 9
5ccde190
8 months ago
version 8
ac6bbda9
8 months ago
version 7
768b709b
8 months ago
version 6
e834f050
8 months ago
version 5
610b3b86
8 months ago
version 4
37e4b509
8 months ago
version 3
313d43ce
8 months ago
version 2
c80da5c7
8 months ago
version 1
4a8bb14f
8 months ago
master (base)
and
latest version
latest version
9adf6dfb
18 commits,
8 months ago
version 16
ea676bbd
17 commits,
8 months ago
version 15
71fe57fd
16 commits,
8 months ago
version 14
12fe6d49
15 commits,
8 months ago
version 13
553c307d
14 commits,
8 months ago
version 12
919d76cc
13 commits,
8 months ago
version 11
568c4487
12 commits,
8 months ago
version 10
6de51518
11 commits,
8 months ago
version 9
5ccde190
10 commits,
8 months ago
version 8
ac6bbda9
9 commits,
8 months ago
version 7
768b709b
7 commits,
8 months ago
version 6
e834f050
6 commits,
8 months ago
version 5
610b3b86
5 commits,
8 months ago
version 4
37e4b509
4 commits,
8 months ago
version 3
313d43ce
3 commits,
8 months ago
version 2
c80da5c7
2 commits,
8 months ago
version 1
4a8bb14f
1 commit,
8 months ago
2 files
+
9
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
.gitlab-ci.yml
+
4
−
3
Options
@@ -4,13 +4,14 @@ stages:
variables
:
ECR_IMAGE_TAG
:
"
${AWS_ACCOUNT_ID}.dkr.ecr.us-east-1.amazonaws.com/enterprise-integrations/iics_secure_agent:${CI_COMMIT_REF_SLUG}-${CI_COMMIT_SHORT_SHA}"
ECR_LOGIN_REGISTRY
:
"
${AWS_ACCOUNT_ID}.dkr.ecr.us-east-1.amazonaws.com"
DOIT_REGISTRY_IMAGE_TAG
:
$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG-$CI_COMMIT_SHORT_SHA
before_script
:
-
apk update && apk add groff less && apk add py3-pip
-
pip3 install awscli
-
$(aws ecr get-login --no-include-email --region us-east-1)
-
apk update && apk add groff less
-
apk add aws-cli
-
docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
-
aws ecr get-login-password --region us-east-1 | docker login --username AWS --password-stdin ${ECR_LOGIN_REGISTRY}
after_script
:
-
docker logout "$AWS_ACCOUNT_ID".dkr.ecr.us-east-1.amazonaws.com
Loading