Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 0 additions & 52 deletions .github/workflows/docker.yml

This file was deleted.

51 changes: 0 additions & 51 deletions .github/workflows/unstable.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
inputSet:
name: splitd
identifier: splitd
orgIdentifier: PROD
projectIdentifier: Harness_Split
pipeline:
identifier: deploy_qos_v3
stages:
- parallel:
- stage:
identifier: CI
type: CI
spec:
execution:
steps:
- step:
identifier: custom_tag
type: Run
spec:
command: VERSION="$(cat splitio/version.go | grep 'Version =' | awk '{print $4}' | tr -d '"')"
when:
condition: "true"
- step:
identifier: BuildAndPush
type: BuildAndPushDockerRegistry
spec:
repo: splitd/sidecar<+<+matrix.fips_mode>=="enabled"?"-fips":"">
tags:
- <+pipeline.stages.CI<+strategy.identifierPostFix>.spec.execution.steps.custom_tag.output.outputVariables.VERSION>
- latest
dockerfile: infra/sidecar.Dockerfile
context: ""
buildArgs:
FIPS_MODE: <+matrix.fips_mode>
strategy:
matrix:
fips_mode:
- enabled
- disabled
- stage:
identifier: ECR
type: CI
spec:
execution:
steps:
- step:
identifier: custom_tag
type: Run
spec:
command: VERSION="$(cat splitio/version.go | grep 'Version =' | awk '{print $4}' | tr -d '"')"
when:
condition: "true"
- step:
identifier: BuildAndPushECR
type: BuildAndPushECR
spec:
imageName: splitd/sidecar<+<+matrix.fips_mode>=="enabled"?"-fips":"">
tags:
- <+pipeline.stages.ECR<+strategy.identifierPostFix>.spec.execution.steps.custom_tag.output.outputVariables.VERSION>
- latest
dockerfile: infra/sidecar.Dockerfile
context: ""
buildArgs:
FIPS_MODE: <+matrix.fips_mode>
strategy:
matrix:
fips_mode:
- enabled
- disabled
properties:
ci:
codebase:
build:
type: branch
spec:
branch: <+trigger.branch>
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
inputSet:
name: splitd_unstable
identifier: splitd_unstable
orgIdentifier: PROD
projectIdentifier: Harness_Split
pipeline:
identifier: deploy_qos_v3
stages:
- parallel:
- stage:
identifier: CI
type: CI
spec:
execution:
steps:
- step:
identifier: custom_tag
type: Run
spec:
command: VERSION="$(git rev-parse --short HEAD)"
when:
condition: "true"
- step:
identifier: BuildAndPush
type: BuildAndPushDockerRegistry
spec:
repo: splitd/sidecar<+<+matrix.fips_mode>=="enabled"?"-fips":"">
tags:
- <+pipeline.stages.CI<+strategy.identifierPostFix>.spec.execution.steps.custom_tag.output.outputVariables.VERSION>
- latest
dockerfile: infra/sidecar.Dockerfile
context: ""
buildArgs:
FIPS_MODE: <+matrix.fips_mode>
strategy:
matrix:
fips_mode:
- enabled
- disabled
- stage:
identifier: ECR
type: CI
spec:
execution:
steps:
- step:
identifier: custom_tag
type: Run
spec:
command: VERSION="$(git rev-parse --short HEAD)"
when:
condition: "true"
- step:
identifier: BuildAndPushECR
type: BuildAndPushECR
spec:
imageName: splitd/sidecar<+<+matrix.fips_mode>=="enabled"?"-fips":"">
tags:
- <+pipeline.stages.ECR<+strategy.identifierPostFix>.spec.execution.steps.custom_tag.output.outputVariables.VERSION>
- latest
dockerfile: infra/sidecar.Dockerfile
context: ""
buildArgs:
FIPS_MODE: <+matrix.fips_mode>
strategy:
matrix:
fips_mode:
- enabled
- disabled
properties:
ci:
codebase:
build:
type: branch
spec:
branch: <+trigger.branch>
2 changes: 1 addition & 1 deletion splitio/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package splitio

const Version = "1.6.2"
const Version = "1.6.3"