-
Notifications
You must be signed in to change notification settings - Fork 260
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into secret_manager
- Loading branch information
Showing
1,243 changed files
with
42,640 additions
and
5,130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# | ||
# https://help.github.com/articles/dealing-with-line-endings/ | ||
# | ||
# These are explicitly windows files and should use crlf | ||
*.bat text eol=crlf | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[run] | ||
omit = feathr_project/feathr/registry/_feature_registry_purview.py | ||
feathr_project/feathr/spark_provider/_synapse_submission.py | ||
feathr_project/feathr/spark_provider/_localspark_submission.py | ||
[report] | ||
exclude_lines = | ||
pragma: no cover | ||
@abstract |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[run] | ||
omit = feathr_project/feathr/registry/_feature_registry_purview.py | ||
feathr_project/feathr/spark_provider/_databricks_submission.py | ||
feathr_project/feathr/spark_provider/_synapse_submission.py | ||
[report] | ||
exclude_lines = | ||
pragma: no cover | ||
@abstract |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[run] | ||
omit = feathr_project/feathr/registry/_feature_registry_purview.py | ||
feathr_project/feathr/spark_provider/_databricks_submission.py | ||
feathr_project/feathr/spark_provider/_localspark_submission.py | ||
[report] | ||
exclude_lines = | ||
pragma: no cover | ||
@abstract |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# This workflow builds the docker container and publishes to dockerhub with appropriate tag | ||
# It has two triggers, | ||
# It has two triggers, | ||
# 1. daily i.e. runs everyday at specific time. | ||
# 2. Anytime a new branch is created under releases | ||
|
||
|
@@ -15,27 +15,26 @@ on: | |
branches: | ||
- 'releases/**' | ||
|
||
|
||
jobs: | ||
build_and_push_image_to_registry: | ||
name: Push Docker image to Docker Hub | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out the repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Log in to Docker Hub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
|
||
- name: Extract metadata (tags, labels) for Docker | ||
id: meta | ||
uses: docker/metadata-action@v4 | ||
with: | ||
images: feathrfeaturestore/feathr-registry | ||
|
||
- name: Build and push Docker image | ||
uses: docker/build-push-action@v3 | ||
with: | ||
|
@@ -45,34 +44,32 @@ jobs: | |
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
|
||
# Deploy the docker container to the three test environments for feathr | ||
# Trigger Azure Web App webhooks to pull the latest nightly image | ||
deploy: | ||
runs-on: ubuntu-latest | ||
needs: build_and_push_image_to_registry | ||
|
||
|
||
|
||
steps: | ||
- name: Deploy to Feathr SQL Registry Azure Web App | ||
id: deploy-to-sql-webapp | ||
uses: azure/webapps-deploy@v2 | ||
with: | ||
app-name: 'feathr-sql-registry' | ||
publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE_FEATHR_SQL_REGISTRY }} | ||
images: 'feathrfeaturestore/feathr-registry:nightly' | ||
|
||
- name: Deploy to Feathr Purview Registry Azure Web App | ||
id: deploy-to-purview-webapp | ||
uses: azure/webapps-deploy@v2 | ||
with: | ||
app-name: 'feathr-purview-registry' | ||
publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE_FEATHR_PURVIEW_REGISTRY }} | ||
images: 'feathrfeaturestore/feathr-registry:nightly' | ||
- name: Deploy to Azure Web App feathr-registry-purview | ||
id: deploy-to-feathr-registry-purview | ||
uses: distributhor/[email protected] | ||
env: | ||
webhook_url: ${{ secrets.AZURE_WEBAPP_FEATHR_REGISTRY_PURVIEW_WEBHOOK }} | ||
|
||
- name: Deploy to Feathr RBAC Registry Azure Web App | ||
id: deploy-to-rbac-webapp | ||
uses: azure/webapps-deploy@v2 | ||
with: | ||
app-name: 'feathr-rbac-registry' | ||
publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE_FEATHR_RBAC_REGISTRY }} | ||
images: 'feathrfeaturestore/feathr-registry:nightly' | ||
- name: Deploy to Azure Web App feathr-registry-purview-rbac | ||
id: deploy-to-feathr-registry-purview-rbac | ||
uses: distributhor/[email protected] | ||
env: | ||
webhook_url: ${{ secrets.AZURE_WEBAPP_FEATHR_REGISTRY_PURVIEW_RBAC_WEBHOOK }} | ||
|
||
- name: Deploy to Azure Web App feathr-registry-sql | ||
id: deploy-to-feathr-registry-sql | ||
uses: distributhor/[email protected] | ||
env: | ||
webhook_url: ${{ secrets.AZURE_WEBAPP_FEATHR_REGISTRY_SQL_WEBHOOK }} | ||
|
||
- name: Deploy to Azure Web App feathr-registry-sql-rbac | ||
id: deploy-to-feathr-registry-sql-rbac | ||
uses: distributhor/[email protected] | ||
env: | ||
webhook_url: ${{ secrets.AZURE_WEBAPP_FEATHR_REGISTRY_SQL_RBAC_WEBHOOK }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.