Skip to content

Commit b472f4f

Browse files
authored
rename project to fybrik (#94)
* rename project to fybrik Signed-off-by: Doron Chen <[email protected]> * fix fybrik.io -> fybrik Signed-off-by: Doron Chen <[email protected]> * fix Revital's comments Signed-off-by: Doron Chen <[email protected]>
1 parent 6c5cd37 commit b472f4f

File tree

6 files changed

+24
-24
lines changed

6 files changed

+24
-24
lines changed

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
blank_issues_enabled: true
22
contact_links:
33
- name: Ask a Question
4-
url: https://github.com/mesh-for-data/the-mesh-for-data-flight-module/discussions/new?category=q-a
4+
url: https://github.com/fybrik/arrow-flight-module/discussions/new?category=q-a
55
about: Ask the community for help
66
- name: Feature Request
7-
url: https://github.com/mesh-for-data/the-mesh-for-data-flight-module/discussions/new?category=ideas
7+
url: https://github.com/fybrik/arrow-flight-module/discussions/new?category=ideas
88
about: Share ideas for new features
99
- name: Bug Report
10-
url: https://github.com/mesh-for-data/the-mesh-for-data-flight-module/issues/new
10+
url: https://github.com/fybrik/arrow-flight-module/issues/new
1111
about: Report a reproducable bug

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ jobs:
3232
pip install pipenv
3333
3434
- name: Build docker image
35-
run: export REPOSITORY=ghcr.io/mesh-for-data/arrow-flight-module && make build
35+
run: export REPOSITORY=ghcr.io/fybrik/arrow-flight-module && make build
3636
- name: Docker login
3737
if: ${{ github.event_name != 'pull_request' }}
38-
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login -u "mesh-for-data" --password-stdin "${{ env.DOCKER_HOSTNAME }}"
38+
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login -u "fybrik" --password-stdin "${{ env.DOCKER_HOSTNAME }}"
3939
- name: Docker push
4040
if: ${{ (github.event_name != 'pull_request') && !contains(github.ref, 'tags') }}
41-
run: export REPOSITORY=ghcr.io/mesh-for-data/arrow-flight-module && make push
41+
run: export REPOSITORY=ghcr.io/fybrik/arrow-flight-module && make push
4242
- id: version
4343
name: Infer version
4444
run: echo ::set-output name=version::${GITHUB_REF#refs/*/}
@@ -48,4 +48,4 @@ jobs:
4848
run: export HELM_EXPERIMENTAL_OCI=1 && echo "${{ secrets.GITHUB_TOKEN }}" | helm registry login -u "${{ github.actor }}" --password-stdin "${{ env.DOCKER_HOSTNAME }}"
4949
- name: Helm chart push
5050
if: ${{ (github.event_name != 'pull_request') && !contains(github.ref, 'tags') }}
51-
run: export HELM_REPOSITORY=ghcr.io/mesh-for-data/arrow-flight-module-chart && make chart-push
51+
run: export HELM_REPOSITORY=ghcr.io/fybrik/arrow-flight-module-chart && make chart-push

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
1-
[![GitHub Actions Build](https://github.com/mesh-for-data/the-mesh-for-data-flight-module/actions/workflows/build.yml/badge.svg)](https://github.com/mesh-for-data/the-mesh-for-data-flight-module/actions/workflows/build.yml)
1+
[![GitHub Actions Build](https://github.com/fybrik/arrow-flight-module/actions/workflows/build.yml/badge.svg)](https://github.com/fybrik/arrow-flight-module/actions/workflows/build.yml)
22
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
33

44
# arrow-flight-module
55

6-
The arrow-flight-module (AFM) for [The Mesh for Data](https://github.com/IBM/the-mesh-for-data) brings enforcement of data governance policies to the world of [Apache Arrow](https://arrow.apache.org/)
6+
The arrow-flight-module (AFM) for [Fybrik](https://github.com/fybrik/fybrik) brings enforcement of data governance policies to the world of [Apache Arrow](https://arrow.apache.org/)
77
[Flight](https://arrow.apache.org/docs/format/Flight.html).
88

99
## What is it?
1010

1111
AFM is a flight server Flight server that enables applications to consume tabular data from data sources. More importantly, the AFM is also a Policy Enforcement Point (PEP) capable of performing enforcement actions dictated by a Policy Decision Point.
1212
Such enforcement actions include blocking unauthorized requests, validating and transforming data payloads.
1313

14-
## Register as a Mesh for Data module
14+
## Register as a Fybrik module
1515

16-
To register AFM as a Mesh for Data module apply `module.yaml` to the m4d-system namespace of your cluster.
16+
To register AFM as a Fybrik module apply `module.yaml` to the fybrik-system namespace of your cluster.
1717

1818
To install the latest release run:
1919

2020
```bash
21-
kubectl apply -f https://github.com/mesh-for-data/arrow-flight-module/releases/latest/download/module.yaml -n m4d-system
21+
kubectl apply -f https://github.com/fybrik/arrow-flight-module/releases/latest/download/module.yaml -n fybrik-system
2222
```
2323

2424
### Version compatbility matrix
2525

26-
| Mesh for Data | AFM | Command
26+
| Fybrik | AFM | Command
2727
| --- | --- | ---
28-
| 0.1.x | 0.1.x | `https://github.com/mesh-for-data/arrow-flight-module/releases/download/v0.1.0/module.yaml`
29-
| 0.2.x | 0.2.x | `https://github.com/mesh-for-data/arrow-flight-module/releases/download/v0.2.0/module.yaml`
30-
| master | master | `https://raw.githubusercontent.com/mesh-for-data/arrow-flight-module/master/module.yaml`
28+
| 0.1.x | 0.1.x | `https://github.com/fybrik/arrow-flight-module/releases/download/v0.1.0/module.yaml`
29+
| 0.2.x | 0.2.x | `https://github.com/fybrik/arrow-flight-module/releases/download/v0.2.0/module.yaml`
30+
| master | master | `https://raw.githubusercontent.com/fybrik/arrow-flight-module/master/module.yaml`
3131

3232

3333
## Build and deploy to Kubernetes
@@ -66,7 +66,7 @@ For example, to use `sample/sample.yaml` as configuration run:
6666
helm upgrade --reuse-values --set-file config_override=sample/sample.yaml afm ./helm/afm
6767
```
6868

69-
It is also possible to specify specific configuration values following the modules specification of The Mesh for Data. Generally, you would want The Mesh for Data to do that for you and not deal with it directly.
69+
It is also possible to specify specific configuration values following the modules specification of Fybrik. Generally, you would want Fybrik to do that for you and not deal with it directly.
7070

7171
## Usage
7272

helm/afm/values.sample.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ read:
99
connection:
1010
name: s3
1111
s3:
12-
bucket: m4d-test-bucket
12+
bucket: fybrik-test-bucket
1313
endpoint: s3.eu-gb.cloud-object-storage.appdomain.cloud
1414
object_key: test1.parquet
1515
type: 2
@@ -29,7 +29,7 @@ read:
2929
connection:
3030
name: s3
3131
s3:
32-
bucket: m4d-test-bucket
32+
bucket: fybrik-test-bucket
3333
endpoint: s3.eu-gb.cloud-object-storage.appdomain.cloud
3434
object_key: test2.parquet
3535
type: 2

helm/afm/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
replicaCount: 1
66

77
image:
8-
repository: ghcr.io/mesh-for-data/arrow-flight-module
8+
repository: ghcr.io/fybrik/arrow-flight-module
99
tag: latest
1010
pullPolicy: null
1111
pullSecret: null

module.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
apiVersion: app.m4d.ibm.com/v1alpha1
2-
kind: M4DModule
1+
apiVersion: app.fybrik.io/v1alpha1
2+
kind: FybrikModule
33
metadata:
44
name: arrow-flight-module
55
labels:
66
name: arrow-flight-module
77
version: latest # semantic version
88
spec:
99
chart:
10-
name: ghcr.io/mesh-for-data/arrow-flight-module-chart:latest
10+
name: ghcr.io/fybrik/arrow-flight-module-chart:latest
1111
values:
1212
image.tag: latest
1313
flows:
@@ -17,7 +17,7 @@ spec:
1717
endpoint:
1818
port: 80
1919
scheme: grpc
20-
protocol: m4d-arrow-flight
20+
protocol: fybrik-arrow-flight
2121
dataformat: arrow
2222
supportedInterfaces:
2323
- flow: read

0 commit comments

Comments
 (0)