Skip to content
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

Update git workflows and module statuses #8235

Merged
merged 2 commits into from
Jun 12, 2024
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
1 change: 1 addition & 0 deletions .github/workflows/merge-v5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ jobs:
- name: Copy the distribution content to be used in docker copy command
run: |
cp -f container.application.properties ./open-metadata-distribution/omag-server-platform/build/unpacked/egeria-platform-${{ env.VERSION }}-distribution.tar.gz/assembly/platform/application.properties
mkdir -p ./open-metadata-distribution/omag-server-platform/build/unpacked/egeria-platform-5.0-distribution.tar.gz/assembly/platform/data/servers
cp -r ./open-metadata-distribution/omag-server-platform/build/unpacked/egeria-platform-${{ env.VERSION }}-distribution.tar.gz/assembly/opt/sample-configs/*-* ./open-metadata-distribution/omag-server-platform/build/unpacked/egeria-platform-${{ env.VERSION }}-distribution.tar.gz/assembly/platform/data/servers
- name: Build and push(egeria) to quay.io and docker.io (tag latest only for main!)
if: ${{ github.ref == 'refs/heads/main'}}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release-v5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ jobs:
- name: Copy the distribution content to be used in docker copy command
run: |
cp -f container.application.properties ./open-metadata-distribution/omag-server-platform/build/unpacked/egeria-platform-${{ env.VERSION }}-distribution.tar.gz/assembly/platform/application.properties
mkdir -p ./open-metadata-distribution/omag-server-platform/build/unpacked/egeria-platform-5.0-distribution.tar.gz/assembly/platform/data/servers
cp -r ./open-metadata-distribution/omag-server-platform/build/unpacked/egeria-platform-${{ env.VERSION }}-distribution.tar.gz/assembly/opt/sample-configs/*-* ./open-metadata-distribution/omag-server-platform/build/unpacked/egeria-platform-${{ env.VERSION }}-distribution.tar.gz/assembly/platform/data/servers
- name: Build and push(egeria) to quay.io and docker.io
uses: docker/build-push-action@v5
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public enum AccessServiceDescription implements Serializable
* Publish asset lineage.
*/
ASSET_LINEAGE_OMAS (203,
ComponentDevelopmentStatus.IN_DEVELOPMENT,
ComponentDevelopmentStatus.TECHNICAL_PREVIEW,
"Asset Lineage",
"Asset Lineage OMAS",
"asset-lineage",
Expand Down Expand Up @@ -106,7 +106,7 @@ public enum AccessServiceDescription implements Serializable
* Exchange process models and lineage with a data engine.
*/
DATA_ENGINE_OMAS (209,
ComponentDevelopmentStatus.IN_DEVELOPMENT,
ComponentDevelopmentStatus.DEPRECATED,
"Data Engine",
"Data Engine OMAS",
"data-engine",
Expand Down Expand Up @@ -158,7 +158,7 @@ public enum AccessServiceDescription implements Serializable
* Design of the digital services for an organization.
*/
DIGITAL_ARCHITECTURE_OMAS (215,
ComponentDevelopmentStatus.TECHNICAL_PREVIEW,
ComponentDevelopmentStatus.STABLE,
"Digital Architecture",
"Digital Architecture OMAS",
"digital-architecture",
Expand Down Expand Up @@ -223,7 +223,7 @@ public enum AccessServiceDescription implements Serializable
* Manage the governance program.
*/
GOVERNANCE_PROGRAM_OMAS (220,
ComponentDevelopmentStatus.TECHNICAL_PREVIEW,
ComponentDevelopmentStatus.STABLE,
"Governance Program",
"Governance Program OMAS",
"governance-program",
Expand All @@ -236,7 +236,7 @@ public enum AccessServiceDescription implements Serializable
* Manage governance related projects.
*/
PROJECT_MANAGEMENT_OMAS (221,
ComponentDevelopmentStatus.IN_DEVELOPMENT,
ComponentDevelopmentStatus.TECHNICAL_PREVIEW,
"Project Management",
"Project Management OMAS",
"project-management",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public enum GovernanceServicesDescription
* Store and query asset lineage.
*/
LINEAGE_WAREHOUSE_SERVICES(190,
ComponentDevelopmentStatus.IN_DEVELOPMENT,
ComponentDevelopmentStatus.TECHNICAL_PREVIEW,
"Lineage Warehouse Services",
"lineage-warehouse",
"Store and query asset lineage",
Expand All @@ -39,7 +39,7 @@ public enum GovernanceServicesDescription
* Integrate Data Engines that are not self-capable of integrating directly with the Data Engine OMAS.
*/
DATA_ENGINE_PROXY_SERVICES (192,
ComponentDevelopmentStatus.IN_DEVELOPMENT,
ComponentDevelopmentStatus.DEPRECATED,
"Data Engine Proxy Services",
"data-engine-proxy",
"Integrate Data Engines that are not self-capable of integrating directly with the Data Engine OMAS.",
Expand Down
Loading