@blitzm/azure-container-registry
v0.3.0
Published
@blitzm/azure-container-registry is a typescript library for creating a docker registry in Azure with access control to the service principal.
Downloads
64
Keywords
Readme
Blitzm Cloud - Azure Container Registry
@blitzm/azure-container-registry is a typescript library for creating a docker registry in Azure with access control to the service principal.
Installation
This package can be installed using npm
npm install --save --save-exact @blitzm/azure-container-registry
Usage
import { AzureContainerRegistry } from '@blitzm/azure-container-registry';
const acr = new AzureContainerRegistry('docker-registry', {
resourceGroup: resourceGroup,
// the cluster needs to pull images from the registry
pullAccess: [cluster.servicePrincipal],
sku: 'Standard',
});
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.