-
Notifications
You must be signed in to change notification settings - Fork 110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat:New Enterprise version #2656
base: enterprise/next
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approved! We had a discussion with Rahul about is it should be a enterprise
branch in repo or just a copy-paste enterprise folder. As I understand the next enterprise release would have a completely another approach and architecture.
47c4584
to
7db1def
Compare
7db1def
to
e09d95a
Compare
.github/workflows/cd-ghcr.io.yaml
Outdated
@@ -34,7 +34,7 @@ jobs: | |||
strategy: | |||
max-parallel: 1 | |||
matrix: | |||
container: [container3, container3lite] | |||
container: [container3, container3lite , enterprise] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Due to:
on:
push:
branches-ignore:
- "**"
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
cd-ghcr.io
will only run on the main type of tags, like v3.34.1
, and we should separate enterprise tags
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed
.github/workflows/cd-ghcr.io.yaml
Outdated
@@ -34,7 +34,7 @@ jobs: | |||
strategy: | |||
max-parallel: 1 | |||
matrix: | |||
container: [container3, container3lite] | |||
container: [container3, container3lite , enterprise] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When we do the release, semver will create the tag, for example v3.34.0
and push the tag. Then cd-ghcr.io
will deploy three images:
container3:v3.34.0
container3lite:v3.34.0
enterprise:v3.34.0
shouldn't it be just enterprise:v3.34.0
? Else enterprise releases will overwrite regular releases unless we keep tags separated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed
.github/workflows/ci-enterprise.yaml
Outdated
- "enterprise/*" | ||
pull_request: | ||
branches: | ||
- "main" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we need ci-enterprise
for every PR to main? build action
will build and push enterprise/pr-xx
images for every PR to main
@@ -0,0 +1,26 @@ | |||
# SC4S Enterprise |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need the doc team review
@mstopa-splunk @rjha-splunk if we will have different versions for regular and enterprise, what we will do with helm chart? Helm chart version the same that we have in docker image |
Enterprise version Initial Draft