Skip to content

Commit a5f997e

Browse files
Merge pull request #14 from kate-goldenring/latest-containers
Replace final references of Deis Labs
2 parents 5936fa1 + 769a616 commit a5f997e

File tree

8 files changed

+23
-23
lines changed

8 files changed

+23
-23
lines changed

docs/demos/opc-thermometer-demo.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ Now, we must create some OPC UA Servers to discover. Instead of starting from sc
127127
--set opcua.discovery.enabled=true \
128128
--set opcua.configuration.enabled=true \
129129
--set opcua.configuration.name=akri-opcua-monitoring \
130-
--set opcua.configuration.brokerPod.image.repository="ghcr.io/deislabs/akri/opcua-monitoring-broker" \
130+
--set opcua.configuration.brokerPod.image.repository="ghcr.io/project-akri/akri/opcua-monitoring-broker" \
131131
--set opcua.configuration.brokerProperties.IDENTIFIER='Thermometer_Temperature' \
132132
--set opcua.configuration.brokerProperties.NAMESPACE_INDEX='2' \
133133
--set opcua.configuration.discoveryDetails.discoveryUrls[0]="opc.tcp://<SomeServer0 IP address>:<SomeServer0 port>/Quickstarts/ReferenceServer/" \
@@ -268,7 +268,7 @@ To see how Akri easily scales as nodes are added to the cluster, add another nod
268268
--set opcua.discovery.enabled=true \
269269
--set opcua.configuration.enabled=true \
270270
--set opcua.configuration.name=akri-opcua-monitoring \
271-
--set opcua.configuration.brokerPod.image.repository="ghcr.io/deislabs/akri/opcua-monitoring-broker" \
271+
--set opcua.configuration.brokerPod.image.repository="ghcr.io/project-akri/akri/opcua-monitoring-broker" \
272272
--set opcua.configuration.brokerProperties.IDENTIFIER='Thermometer_Temperature' \
273273
--set opcua.configuration.brokerProperties.NAMESPACE_INDEX='2' \
274274
--set opcua.configuration.discoveryDetails.discoveryUrls[0]="opc.tcp://<SomeServer0 IP address>:<SomeServer0 port>/Quickstarts/ReferenceServer/" \
@@ -321,7 +321,7 @@ helm install akri akri-helm-charts/akri \
321321
--set opcua.discovery.enabled=true \
322322
--set opcua.configuration.enabled=true \
323323
--set opcua.configuration.name=akri-opcua-monitoring \
324-
--set opcua.configuration.brokerPod.image.repository="ghcr.io/deislabs/akri/opcua-monitoring-broker" \
324+
--set opcua.configuration.brokerPod.image.repository="ghcr.io/project-akri/akri/opcua-monitoring-broker" \
325325
--set opcua.configuration.brokerProperties.IDENTIFIER='Thermometer_Temperature' \
326326
--set opcua.configuration.brokerProperties.NAMESPACE_INDEX='2' \
327327
--set opcua.configuration.discoveryDetails.discoveryUrls[0]="opc.tcp://<Windows host IP address>:4840/" \
@@ -350,7 +350,7 @@ helm install akri akri-helm-charts/akri \
350350
--set opcua.discovery.enabled=true \
351351
--set opcua.configuration.enabled=true \
352352
--set opcua.configuration.name=akri-opcua-monitoring \
353-
--set opcua.configuration.brokerPod.image.repository="ghcr.io/deislabs/akri/opcua-monitoring-broker" \
353+
--set opcua.configuration.brokerPod.image.repository="ghcr.io/project-akri/akri/opcua-monitoring-broker" \
354354
--set opcua.configuration.brokerProperties.IDENTIFIER='Thermometer_Temperature' \
355355
--set opcua.configuration.brokerProperties.NAMESPACE_INDEX='2' \
356356
--set opcua.configuration.discoveryDetails.discoveryUrls[0]="opc.tcp://<Windows host IP address>:4840/" \
@@ -369,7 +369,7 @@ helm install akri akri-helm-charts/akri \
369369
--set opcua.discovery.enabled=true \
370370
--set opcua.configuration.enabled=true \
371371
--set opcua.configuration.name=akri-opcua-monitoring \
372-
--set opcua.configuration.brokerPod.image.repository="ghcr.io/deislabs/akri/opcua-monitoring-broker" \
372+
--set opcua.configuration.brokerPod.image.repository="ghcr.io/project-akri/akri/opcua-monitoring-broker" \
373373
--set opcua.configuration.brokerProperties.IDENTIFIER='Thermometer_Temperature' \
374374
--set opcua.configuration.brokerProperties.NAMESPACE_INDEX='2' \
375375
--set opcua.configuration.discoveryDetails.discoveryUrls[0]="opc.tcp://<Windows host IP address>:4840/" \

docs/demos/usb-camera-demo-rpi4.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ In order for the Agent to know how to discover video devices, the udev Discovery
118118
--set udev.configuration.enabled=true \
119119
--set udev.configuration.name=akri-udev-video \
120120
--set udev.configuration.discoveryDetails.udevRules[0]='KERNEL=="video[0-9]*"' \
121-
--set udev.configuration.brokerPod.image.repository="ghcr.io/deislabs/akri/udev-video-broker"
121+
--set udev.configuration.brokerPod.image.repository="ghcr.io/project-akri/akri/udev-video-broker"
122122
```
123123

124124
## Inspecting Akri
@@ -205,7 +205,7 @@ Look at the Configuration and Instances in more detail.
205205
--set udev.configuration.enabled=true \
206206
--set udev.configuration.name=akri-udev-video \
207207
--set udev.configuration.discoveryDetails.udevRules[0]='KERNEL=="video[0-9]*"\, ENV{ID_VENDOR}=="Microsoft"' \
208-
--set udev.configuration.brokerPod.image.repository="ghcr.io/deislabs/akri/udev-video-broker"
208+
--set udev.configuration.brokerPod.image.repository="ghcr.io/project-akri/akri/udev-video-broker"
209209
```
210210

211211
As another example, to make sure that the camera has a capture capability rather than just being a video output device, modify the udev rule as follows:
@@ -217,6 +217,6 @@ Look at the Configuration and Instances in more detail.
217217
--set udev.configuration.enabled=true \
218218
--set udev.configuration.name=akri-udev-video \
219219
--set udev.configuration.discoveryDetails.udevRules[0]='KERNEL=="video[0-9]*"\, ENV{ID_V4L_CAPABILITIES}=="*:capture:*"' \
220-
--set udev.configuration.brokerPod.image.repository="ghcr.io/deislabs/akri/udev-video-broker"
220+
--set udev.configuration.brokerPod.image.repository="ghcr.io/project-akri/akri/udev-video-broker"
221221
```
222222
5. Discover other udev devices by creating a new udev configuration and broker. Learn more about the udev Discovery Handler Configuration [here](../discovery-handlers/udev.md).

docs/demos/usb-camera-demo.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ In order for the Agent to know how to discover video devices, the udev Discovery
115115
--set udev.configuration.enabled=true \
116116
--set udev.configuration.name=akri-udev-video \
117117
--set udev.configuration.discoveryDetails.udevRules[0]='KERNEL=="video[0-9]*"' \
118-
--set udev.configuration.brokerPod.image.repository="ghcr.io/deislabs/akri/udev-video-broker"
118+
--set udev.configuration.brokerPod.image.repository="ghcr.io/project-akri/akri/udev-video-broker"
119119
```
120120
121121
## Inspecting Akri
@@ -267,7 +267,7 @@ After installing Akri, since the /dev/video1 and /dev/video2 devices are running
267267
--set udev.configuration.enabled=true \
268268
--set udev.configuration.name=akri-udev-video \
269269
--set udev.configuration.discoveryDetails.udevRules[0]='KERNEL=="video[0-9]*"\, ENV{ID_VENDOR}=="Microsoft"' \
270-
--set udev.configuration.brokerPod.image.repository="ghcr.io/deislabs/akri/udev-video-broker"
270+
--set udev.configuration.brokerPod.image.repository="ghcr.io/project-akri/akri/udev-video-broker"
271271
```
272272
273273
As another example, to make sure that the camera has a capture capability rather than just being a video output device, modify the udev rule as follows:
@@ -279,7 +279,7 @@ After installing Akri, since the /dev/video1 and /dev/video2 devices are running
279279
--set udev.configuration.enabled=true \
280280
--set udev.configuration.name=akri-udev-video \
281281
--set udev.configuration.discoveryDetails.udevRules[0]='KERNEL=="video[0-9]*"\, ENV{ID_V4L_CAPABILITIES}=="*:capture:*"' \
282-
--set udev.configuration.brokerPod.image.repository="ghcr.io/deislabs/akri/udev-video-broker"
282+
--set udev.configuration.brokerPod.image.repository="ghcr.io/project-akri/akri/udev-video-broker"
283283
```
284284
5. Discover other udev devices by creating a new udev configuration and broker. Learn more about the udev Discovery Handler Configuration [here](../discovery-handlers/udev.md).
285285

docs/development/broker-development.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ The default broker Pod memory and CPU resource request and limits in Akri's Helm
5858
| Discovery Handler | Akri Sample Broker Pod image | Description |
5959
| :--- | :--- | :--- |
6060
| debugEcho | `nginx:stable-alpine` | standard nginx image for testing |
61-
| ONVIF | `ghcr.io/deislabs/akri/onvif-video-broker:latest` | .NET camera frame server |
62-
| OPC UA | `ghcr.io/deislabs/akri/opcua-monitoring-broker:latest` | .Net App subscribes to specific NodeID and serves latest value |
63-
| udev | `ghcr.io/deislabs/akri/udev-video-broker:latest` | Rust camera frame server |
61+
| ONVIF | `ghcr.io/project-akri/akri/onvif-video-broker:latest` | .NET camera frame server |
62+
| OPC UA | `ghcr.io/project-akri/akri/opcua-monitoring-broker:latest` | .Net App subscribes to specific NodeID and serves latest value |
63+
| udev | `ghcr.io/project-akri/akri/udev-video-broker:latest` | Rust camera frame server |
6464

6565
The limit and request bounds were obtained using Kubernetes' [Vertical Pod Autoscaler (VPA)](https://github.com/kubernetes/autoscaler/tree/master/vertical-pod-autoscaler). You should choose bounds appropriate to your broker Pod. [This blog](https://pretired.dazwilkin.com/posts/210305/#vertical-pod-autoscaler-vpa) is a good starting point for learning how to use the VPA to choose bounds.
6666

@@ -76,7 +76,7 @@ You can request that additional environment variables are set in Pods that reque
7676
--set udev.configuration.enabled=true \
7777
--set udev.configuration.name=akri-udev-video \
7878
--set udev.configuration.discoveryDetails.udevRules[0]='KERNEL=="video[0-9]*"' \
79-
--set udev.configuration.brokerPod.image.repository="ghcr.io/deislabs/akri/udev-video-broker" \
79+
--set udev.configuration.brokerPod.image.repository="ghcr.io/project-akri/akri/udev-video-broker" \
8080
--set udev.configuration.brokerProperties.FORMAT='JPEG' \
8181
--set udev.configuration.brokerProperties.RESOLUTION_WIDTH='1000' \
8282
--set udev.configuration.brokerProperties.RESOLUTION_HEIGHT='800'

docs/discovery-handlers/onvif.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Discovery Handlers are passed discovery details that are set in a Configuration
3838

3939
### Broker Pod Settings
4040

41-
If you would like workloads ("broker" Pods) to be deployed automatically to discovered cameras, a broker image should be specified in the Configuration. Alternatively, if it meets your scenario, you could use the Akri frame server broker ("ghcr.io/deislabs/akri/onvif-video-broker"). If you would rather manually deploy pods to utilize the cameras advertized by Akri, don't specify a broker pod and see our documentation on [requesting resources advertized by Akri](../user-guide/requesting-akri-resources.md).
41+
If you would like workloads ("broker" Pods) to be deployed automatically to discovered cameras, a broker image should be specified in the Configuration. Alternatively, if it meets your scenario, you could use the Akri frame server broker ("ghcr.io/project-akri/akri/onvif-video-broker"). If you would rather manually deploy pods to utilize the cameras advertized by Akri, don't specify a broker pod and see our documentation on [requesting resources advertized by Akri](../user-guide/requesting-akri-resources.md).
4242

4343
| Helm Key | Value | Default | Description |
4444
| :--- | :--- | :--- | :--- |
@@ -74,7 +74,7 @@ helm install akri akri-helm-charts/akri \
7474
$AKRI_HELM_CRICTL_CONFIGURATION \
7575
--set onvif.discovery.enabled=true \
7676
--set onvif.configuration.enabled=true \
77-
--set onvif.configuration.brokerPod.image.repository="ghcr.io/deislabs/akri/onvif-video-broker" \
77+
--set onvif.configuration.brokerPod.image.repository="ghcr.io/project-akri/akri/onvif-video-broker" \
7878
--set onvif.configuration.brokerPod.image.tag="latest"
7979
```
8080

@@ -97,7 +97,7 @@ helm install akri akri-helm-charts/akri \
9797
$AKRI_HELM_CRICTL_CONFIGURATION \
9898
--set onvif.discovery.enabled=true \
9999
--set onvif.configuration.enabled=true \
100-
--set onvif.configuration.brokerPod.image.repository="ghcr.io/deislabs/akri/onvif-video-broker" \
100+
--set onvif.configuration.brokerPod.image.repository="ghcr.io/project-akri/akri/onvif-video-broker" \
101101
--set onvif.configuration.discoveryDetails.ipAddresses.action=Exclude \
102102
--set onvif.configuration.discoveryDetails.ipAddresses.items[0]=10.0.0.1
103103
```
@@ -110,7 +110,7 @@ helm install akri akri-helm-charts/akri \
110110
$AKRI_HELM_CRICTL_CONFIGURATION \
111111
--set onvif.discovery.enabled=true \
112112
--set onvif.configuration.enabled=true \
113-
--set onvif.configuration.brokerPod.image.repository="ghcr.io/deislabs/akri/onvif-video-broker" \
113+
--set onvif.configuration.brokerPod.image.repository="ghcr.io/project-akri/akri/onvif-video-broker" \
114114
--set onvif.configuration.discoveryDetails.scopes.action=Include \
115115
--set onvif.configuration.discoveryDetails.scopes.items[0]="onvif://www.onvif.configuration.org/name/GreatONVIFCamera" \
116116
--set onvif.configuration.discoveryDetails.scopes.items[1]="onvif://www.onvif.configuration.org/name/AwesomeONVIFCamera"
@@ -126,7 +126,7 @@ helm install akri akri-helm-charts/akri \
126126
$AKRI_HELM_CRICTL_CONFIGURATION \
127127
--set onvif.discovery.enabled=true \
128128
--set onvif.configuration.enabled=true \
129-
--set onvif.configuration.brokerPod.image.repository="ghcr.io/deislabs/akri/onvif-video-broker" \
129+
--set onvif.configuration.brokerPod.image.repository="ghcr.io/project-akri/akri/onvif-video-broker" \
130130
--set onvif.configuration.discoveryDetails.discoveryTimeoutSeconds=2
131131
```
132132

docs/discovery-handlers/opc-ua.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The generic OPC UA Configuration takes in a list of DiscoveryURLs, whether for L
2828

2929
### Broker Pod Settings
3030

31-
If you would like workloads ("broker" Pods) to be deployed automatically to discovered devices, a broker image should be specified in the Configuration. Alternatively, if it meets your scenario, you could use the Akri frame server broker ("ghcr.io/deislabs/akri/opcua-video-broker"). If you would rather manually deploy pods to utilize the devices advertized by Akri, don't specify a broker pod and see our documentation on [requesting resources advertized by Akri](../user-guide/requesting-akri-resources.md).
31+
If you would like workloads ("broker" Pods) to be deployed automatically to discovered devices, a broker image should be specified in the Configuration. Alternatively, if it meets your scenario, you could use the Akri frame server broker ("ghcr.io/project-akri/akri/opcua-video-broker"). If you would rather manually deploy pods to utilize the devices advertized by Akri, don't specify a broker pod and see our documentation on [requesting resources advertized by Akri](../user-guide/requesting-akri-resources.md).
3232

3333
| Helm Key | Value | Default | Description |
3434
| :--- | :--- | :--- | :--- |

docs/discovery-handlers/udev.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ While udev rules are normally used to both find devices and perform actions on d
3030

3131
### Broker Pod Settings
3232

33-
If you would like workloads ("broker" Pods) to be deployed automatically to discovered cameras, a broker image should be specified in the Configuration. Alternatively, if it meets your scenario, you could use the Akri frame server broker ("ghcr.io/deislabs/akri/udev-video-broker"). If you would rather manually deploy pods to utilize the cameras advertized by Akri, don't specify a broker pod and see our documentation on [requesting resources advertized by Akri](../user-guide/requesting-akri-resources.md).
33+
If you would like workloads ("broker" Pods) to be deployed automatically to discovered cameras, a broker image should be specified in the Configuration. Alternatively, if it meets your scenario, you could use the Akri frame server broker ("ghcr.io/project-akri/akri/udev-video-broker"). If you would rather manually deploy pods to utilize the cameras advertized by Akri, don't specify a broker pod and see our documentation on [requesting resources advertized by Akri](../user-guide/requesting-akri-resources.md).
3434

3535
| Helm Key | Value | Default | Description |
3636
| :--- | :--- | :--- | :--- |

docs/user-guide/monitoring-with-prometheus.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ As an example, an `akri_frame_count` metric has been created in the sample [udev
102102
--set udev.enabled=true \
103103
--set udev.name=akri-udev-video \
104104
--set udev.udevRules[0]='KERNEL=="video[0-9]*"' \
105-
--set udev.brokerPod.image.repository="ghcr.io/deislabs/akri/udev-video-broker"
105+
--set udev.brokerPod.image.repository="ghcr.io/project-akri/akri/udev-video-broker"
106106
```
107107

108108
> **Note**: This instruction assumes you are using vanilla Kubernetes. Be sure to reference the user guide to determine whether the distribution you are using requires crictl path configuration.

0 commit comments

Comments
 (0)