Skip to content

Latest commit

 

History

History
 
 

service-binding-redis

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Bind your app with Azure Cache for Redis

This sample shows how to run app with Azure Cache for Redis in Azure Spring Apps.

Prerequisite

How to run

  1. Run mvn clean package.
  2. Install Azure CLI extension for Azure Spring Apps by running below command.
    az extension add -y --source https://azureclitemp.blob.core.windows.net/spring-cloud/spring_cloud-0.1.0-py2.py3-none-any.whl
    
  3. Create an instance of Azure Spring Apps.
    az spring-cloud create -n <resource name> -g <resource group name>
    
  4. Create an app with public domain assigned.
    az spring-cloud app create -n <app name> -s <resource name> -g <resource group name> --is-public true 
    
  5. Deploy app with jar
    az spring-cloud app deploy -n <app name> -s <resource name> -g <resource group name> --jar-path ./target/asc-service-binding-redis-sample-0.1.0.jar
    
  6. Add a binding for this app
    az spring-cloud app binding redis add --app <app name> -s <resource name> -g <resource group name> -n redis --resource-id <resource id of your redis>
    
  7. Restart the app
    az spring-cloud app restart -n <app name> -s <resource name> -g <resource group name>
    
  8. Verify app is running. Instances should have status RUNNING and discoveryStatus UP.
    az spring-cloud app show -n <app name> -s <resource name> -g <resource group name>