Skip to content

Commit 67f249a

Browse files
Merge pull request #53 from splitio/CLI-51541
Move to deploy_qos_v3 pipeline
2 parents b165b03 + 69b5570 commit 67f249a

File tree

5 files changed

+153
-104
lines changed

5 files changed

+153
-104
lines changed

.github/workflows/docker.yml

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

.github/workflows/unstable.yml

Lines changed: 0 additions & 51 deletions
This file was deleted.
Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
inputSet:
2+
name: splitd
3+
identifier: splitd
4+
orgIdentifier: PROD
5+
projectIdentifier: Harness_Split
6+
pipeline:
7+
identifier: deploy_qos_v3
8+
stages:
9+
- parallel:
10+
- stage:
11+
identifier: CI
12+
type: CI
13+
spec:
14+
execution:
15+
steps:
16+
- step:
17+
identifier: custom_tag
18+
type: Run
19+
spec:
20+
command: VERSION="$(cat splitio/version.go | grep 'Version =' | awk '{print $4}' | tr -d '"')"
21+
when:
22+
condition: "true"
23+
- step:
24+
identifier: BuildAndPush
25+
type: BuildAndPushDockerRegistry
26+
spec:
27+
repo: splitd/sidecar<+<+matrix.fips_mode>=="enabled"?"-fips":"">
28+
tags:
29+
- <+pipeline.stages.CI<+strategy.identifierPostFix>.spec.execution.steps.custom_tag.output.outputVariables.VERSION>
30+
- latest
31+
dockerfile: infra/sidecar.Dockerfile
32+
context: ""
33+
buildArgs:
34+
FIPS_MODE: <+matrix.fips_mode>
35+
strategy:
36+
matrix:
37+
fips_mode:
38+
- enabled
39+
- disabled
40+
- stage:
41+
identifier: ECR
42+
type: CI
43+
spec:
44+
execution:
45+
steps:
46+
- step:
47+
identifier: custom_tag
48+
type: Run
49+
spec:
50+
command: VERSION="$(cat splitio/version.go | grep 'Version =' | awk '{print $4}' | tr -d '"')"
51+
when:
52+
condition: "true"
53+
- step:
54+
identifier: BuildAndPushECR
55+
type: BuildAndPushECR
56+
spec:
57+
imageName: splitd/sidecar<+<+matrix.fips_mode>=="enabled"?"-fips":"">
58+
tags:
59+
- <+pipeline.stages.ECR<+strategy.identifierPostFix>.spec.execution.steps.custom_tag.output.outputVariables.VERSION>
60+
- latest
61+
dockerfile: infra/sidecar.Dockerfile
62+
context: ""
63+
buildArgs:
64+
FIPS_MODE: <+matrix.fips_mode>
65+
strategy:
66+
matrix:
67+
fips_mode:
68+
- enabled
69+
- disabled
70+
properties:
71+
ci:
72+
codebase:
73+
build:
74+
type: branch
75+
spec:
76+
branch: <+trigger.branch>
Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
inputSet:
2+
name: splitd_unstable
3+
identifier: splitd_unstable
4+
orgIdentifier: PROD
5+
projectIdentifier: Harness_Split
6+
pipeline:
7+
identifier: deploy_qos_v3
8+
stages:
9+
- parallel:
10+
- stage:
11+
identifier: CI
12+
type: CI
13+
spec:
14+
execution:
15+
steps:
16+
- step:
17+
identifier: custom_tag
18+
type: Run
19+
spec:
20+
command: VERSION="$(git rev-parse --short HEAD)"
21+
when:
22+
condition: "true"
23+
- step:
24+
identifier: BuildAndPush
25+
type: BuildAndPushDockerRegistry
26+
spec:
27+
repo: splitd/sidecar<+<+matrix.fips_mode>=="enabled"?"-fips":"">
28+
tags:
29+
- <+pipeline.stages.CI<+strategy.identifierPostFix>.spec.execution.steps.custom_tag.output.outputVariables.VERSION>
30+
- latest
31+
dockerfile: infra/sidecar.Dockerfile
32+
context: ""
33+
buildArgs:
34+
FIPS_MODE: <+matrix.fips_mode>
35+
strategy:
36+
matrix:
37+
fips_mode:
38+
- enabled
39+
- disabled
40+
- stage:
41+
identifier: ECR
42+
type: CI
43+
spec:
44+
execution:
45+
steps:
46+
- step:
47+
identifier: custom_tag
48+
type: Run
49+
spec:
50+
command: VERSION="$(git rev-parse --short HEAD)"
51+
when:
52+
condition: "true"
53+
- step:
54+
identifier: BuildAndPushECR
55+
type: BuildAndPushECR
56+
spec:
57+
imageName: splitd/sidecar<+<+matrix.fips_mode>=="enabled"?"-fips":"">
58+
tags:
59+
- <+pipeline.stages.ECR<+strategy.identifierPostFix>.spec.execution.steps.custom_tag.output.outputVariables.VERSION>
60+
- latest
61+
dockerfile: infra/sidecar.Dockerfile
62+
context: ""
63+
buildArgs:
64+
FIPS_MODE: <+matrix.fips_mode>
65+
strategy:
66+
matrix:
67+
fips_mode:
68+
- enabled
69+
- disabled
70+
properties:
71+
ci:
72+
codebase:
73+
build:
74+
type: branch
75+
spec:
76+
branch: <+trigger.branch>

splitio/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package splitio
22

3-
const Version = "1.6.2"
3+
const Version = "1.6.3"

0 commit comments

Comments
 (0)