- Basketball or Boxing
- Deadlifts: 4 sets of 6-8 reps (Focus on maintaining a neutral spine and engaging your core)
- Lat Pulldowns: 3 sets of 10-12 reps (Control the movement, especially on the way up to fully engage the lats)
| --- | |
| title: Node autoprovisioning (preview) | |
| description: Learn about Azure Kubernetes Service (AKS) node autoprovisioning (preview). | |
| ms.topic: how-to | |
| ms.custom: devx-track-azurecli | |
| ms.date: 06/13/2024 | |
| ms.author: schaffererin | |
| author: schaffererin | |
| #Customer intent: As a cluster operator or developer, how to scale my cluster based on workload requirements and right size my nodes automatically | |
| --- |
| #!/bin/bash | |
| # AKS Custom Networking Setup Script - Approach B (Scoped Subnet Permissions) | |
| # This script creates an AKS cluster with custom VNet and subnets for Karpenter | |
| set -e # Exit on any error | |
| # Color codes for output | |
| RED='\033[0;31m' | |
| GREEN='\033[0;32m' |
| #!/bin/bash | |
| # AKS Custom Networking Setup Script - Approach A (Broad VNet Permissions) | |
| # This script creates an AKS cluster with custom VNet and subnets for Karpenter | |
| set -e # Exit on any error | |
| # Color codes for output | |
| RED='\033[0;31m' | |
| GREEN='\033[0;32m' |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Heart Curves</title> | |
| <style> | |
| body { | |
| font-family: Arial, sans-serif; | |
| text-align: center; |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <title>Happy Lunar New Year</title> | |
| <style> | |
| /* Page defaults */ | |
| html, body { | |
| margin: 0; | |
| padding: 0; |
| ############################################################################### | |
| # 1. Minecraft Java Server Deployment | |
| ############################################################################### | |
| apiVersion: apps/v1 | |
| kind: Deployment | |
| metadata: | |
| name: minecraft-java | |
| labels: | |
| app: minecraft-java | |
| spec: |
| package utilization | |
| import ( | |
| "context" | |
| "fmt" | |
| "log" | |
| "time" | |
| appsv1 "k8s.io/api/apps/v1" | |
| metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" |
| # This example NodePool will provision general purpose instances | |
| --- | |
| apiVersion: karpenter.sh/v1beta1 | |
| kind: NodePool | |
| metadata: | |
| name: azlinux | |
| annotations: | |
| kubernetes.io/description: "General purpose NodePool for generic workloads" | |
| spec: | |
| disruption: |