![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@blitzm/azure-kubernetes
Advanced tools
@blitzm/azure-kubernetes is a typescript library for simplifying the process of creating an AKS cluster with a single managed node groups. It abstracts the complicated configurations to provider a simple input interface for Blitzm developers to deploy res
@blitzm/azure-kubernetes is a typescript library for simplifying the process of creating an AKS cluster with a single managed node groups. It abstracts the complicated configurations to provider a simple input interface for Blitzm developers to deploy resources to the cloud platform with little or no domain knowledge of the provider.
This package can be installed using npm
npm install --save --save-exact @blitzm/azure-kubernetes
import { AzureKubernetes } from '@blitzm/azure-kubernetes';
import * as azure from '@pulumi/azure';
const vnet = new azure.network.VirtualNetwork('vnet', {
name: 'vnet',
resourceGroupName: resourceGroup.name,
addressSpaces: [ '10.13.0.0/16' ]
});
const subnet = new azure.network.Subnet('subnet', {
name: 'subnet',
resourceGroupName: resourceGroup.name,
virtualNetworkName: vnet.name,
addressPrefixes: [ '10.13.0.0/24' ]
});
// a cluster without Firewall
const cluster = new AzureKubernetes('cluster', {
resourceGroup: resourceGroup,
network: {
subnet: clusterSubnet,
vNet: vNet,
},
nodeSize: 'Standard_B2s',
nodeDiskGB: 30,
minNodes: 1
maxNodes:3
});
// a cluster with Firewall to control the egress
const cluster = new AzureKubernetes(
'cluster',
{
resourceGroup: resourceGroup,
minNodes: 1,
maxNodes: 2,
network: {
subnet: clusterSubnet,
vNet: vNet,
},
firewall: {
enable: true,
allowedHttpDomains: [
"*.docker.com",
"*.docker.io",
"*.k8s.io",
"*.pkg.dev",
"*.appspot.com",
"*.gcr.io",
"*.amazonaws.com",
"quay.io",
"*.quay.io",
"letsencrypt.org",
"*.letsencrypt.org",
],
},
nginxIngress: {
enabled: true,
},
certManager: {
enabled: true,
},
maxPods: 60,
kubernetesVersion: "1.29",
}
);
export const cluster = cluster.cluster
export const kubeconfig = cluster.kubeconfig
export const servicePrincipal = cluster.servicePrincipal
export const ingressId = cluster.ingressPublicIP
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
FAQs
@blitzm/azure-kubernetes is a typescript library for simplifying the process of creating an AKS cluster with a single managed node groups. It abstracts the complicated configurations to provider a simple input interface for Blitzm developers to deploy res
The npm package @blitzm/azure-kubernetes receives a total of 50 weekly downloads. As such, @blitzm/azure-kubernetes popularity was classified as not popular.
We found that @blitzm/azure-kubernetes demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.