Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [basyx-dev] Kindly advice, how to create Asset and AssetAdministrationShell from the API's?

Hi Frank,

Good Day!

I went through your provided links to deploy BasyxEclipse image over AKS. I have successfully deployed the image. 
I have concern here, that is, I am unable to access the API out of it. The image is not responding when calling the http://{loadbalancerIP}:{port}

To verify if it is the same case for mcr.microsoft.com/azuredocs/azure-vote-front:v1 or not, I deployed the image over AKS. 
When I checked for azure-vote-front, it worked correctly, and the endpoint found responding.

I concluded, when used Microsoft image over AKS it accesses correctly but when used eclipsebasyx/aas-server:0.1.0-PREVIEW image, it fails for access.

I would like to know, is something specific to have in yml file when deploying  eclipsebasyx image over AKS?

To understand it more clearly, attach here the yml file and steps.


Best Regards,
Adwait

On Wed, 22 Sept 2021 at 13:37, adwait churi <adwaitchuri@xxxxxxxxx> wrote:
Hi Frank,

Thank you for this information.
Best Regards,
Adwait

On Wed, 22 Sept 2021 at 12:58, <Frank.Schnicke@xxxxxxxxxxxxxxxxxx> wrote:

Dear Adwait,

 

for deploying docker images over Azure Kubernetes, please see the public available information, e.g.:

-          https://winsmarts.com/deploy-a-docker-image-to-azure-kubernetes-service-using-azure-cli-11294004877b

-          https://purple.telstra.com/blog/how-to-deploy-docker-images-to-azure-kubernetes-services-aks

 

Best regards,

Frank

 

--

Frank Schnicke

Expert »Industrie 4.0 System Architectures«

Dept. Virtual Engineering

 

Fraunhofer IESE

Fraunhofer-Platz 1 | 67663 Kaiserslautern

+49 631 6800-2259

frank.schnicke@xxxxxxxxxxxxxxxxxx

www.iese.fraunhofer.de

 

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

25 Jahre Fraunhofer IESE  –  Engineering the Digital Future

Reisen Sie mit uns in die Vergangenheit, aber vor allem in die digitale Zukunft!

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

 

Von: basyx-dev <basyx-dev-bounces@xxxxxxxxxxx> Im Auftrag von adwait churi
Gesendet: Dienstag, 21. September 2021 09:31
An: basyx developer discussions <basyx-dev@xxxxxxxxxxx>
Betreff: Re: [basyx-dev] Kindly advice, how to create Asset and AssetAdministrationShell from the API's?

 

Hi Frank,

 

Thanks for this information.

 

Kindly also provide some knowledge on how to deploy docker images over Azure Kubernetes?

Best Regards,

Adwait

 

On Tue, 21 Sept 2021 at 12:04, <Frank.Schnicke@xxxxxxxxxxxxxxxxxx> wrote:

Dear Adwait,

 

in the following wiki page, a multitude of examples are given: https://wiki.eclipse.org/BaSyx_/_Examples

Additionally, you can take a look at the HTTP/REST API provided by the various components of BaSyx: https://app.swaggerhub.com/organizations/BaSyx

Furthermore, the Hello World project (basyx.hello_world) provided in the examples folder of the repository is a good start.

 

Best regards,

Frank

 

--

Frank Schnicke

Expert »Industrie 4.0 System Architectures«

Dept. Virtual Engineering

 

Fraunhofer IESE

Fraunhofer-Platz 1 | 67663 Kaiserslautern

+49 631 6800-2259

frank.schnicke@xxxxxxxxxxxxxxxxxx

www.iese.fraunhofer.de

 

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

25 Jahre Fraunhofer IESE  –  Engineering the Digital Future

Reisen Sie mit uns in die Vergangenheit, aber vor allem in die digitale Zukunft!

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

 

Von: basyx-dev <basyx-dev-bounces@xxxxxxxxxxx> Im Auftrag von adwait churi
Gesendet: Donnerstag, 16. September 2021 16:02
An: basyx-dev@xxxxxxxxxxx
Betreff: [basyx-dev] Kindly advice, how to create Asset and AssetAdministrationShell from the API's?

 

Hi Basyx Dev group,

 

I would like to introduce myself - Adwait Churi,

Working for one of the enterprises which develops Coil. The business is based out of Europe.

 

I went through 

> API's for AssetAdministrationShell and AssetAdministrationShellRepository and Java Introductory Example - https://wiki.eclipse.org/BaSyx_/_Introductory_Examples.

 

I understood the capabilities of the API's for SubModel and SubModelElements.

However, I am also looking for creating Asset and AssetAdministrationShell from the API's.

Kindly advice, how to create Asset and AssetAdministrationShell from the API's?

Any document is already available, then please do share with me.

 

Best Regards,

Adwait Churi

_______________________________________________
basyx-dev mailing list
basyx-dev@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/basyx-dev

_______________________________________________
basyx-dev mailing list
basyx-dev@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/basyx-dev
-- Check Login
az login

-- Without ACR
az aks create --resource-group rg_aks_practice_test --name aksclusterpracticetest --node-count 2 --generate-ssh-keys

az aks get-credentials --resource-group rg_aks_practice_test --name aksclusterpracticetest
successful message - Merged "aksclusterpracticetest" as current context in C:\Users\{User}.kube\config

-- Check the pods from AKS
kubectl get pods

--Upload ACR image to AKS using YML file.
--Refernce to YML file - *.yml
kubectl apply -f “F:\Azure\Subscription\eclipsebasyx.yml”
kubectl apply -f “F:\Azure\Subscription\microsoft_azure-vote-front.yml”

--Check kubernetes services available
kubectl get service --watch

Attachment: eclipsebasyx.yml
Description: Binary data

Attachment: microsoft_azure-vote-front.yml
Description: Binary data


Back to the top