وب سایت تخصصی شرکت فرین
دسته بندی دوره ها

Practical Helm Charts For Beginners

سرفصل های دوره

Leverage the power of the Kubernetes package manager Helm with hands-on chart writing exercises and essential commands


1 - Introduction
  • 1 - Introduction
  • 1 - Introduction to Containers.txt
  • 1 - Introduction to Kubernetes.txt
  • 2 - The Problem With Kubernetes
  • 3 - Life of a Helm Chart
  • 4 - Example Helm Installation
  • 5 - Course Overview
  • 6 - Navigating the Course.html

  • 2 - Installation
  • 7 - Installation Overview
  • 8 - Docker Desktop URL.txt
  • 8 - macOS Docker Desktop Installation
  • 9 - Docker Desktop URL.txt
  • 9 - Windows WSL 2 Docker Desktop Installation
  • 10 - Docker Desktop URL.txt
  • 10 - Windows HyperV Docker Desktop Installation
  • 11 - All OS Enable Kubernetes
  • 12 - Commands.txt
  • 12 - Homebrew Homepage.txt
  • 12 - macOS Helm CLI Installation
  • 13 - Chocolatey Homepage.txt
  • 13 - Commands.txt
  • 13 - Windows Helm CLI Installation
  • 14 - All OS Download Git Repository
  • 14 - Commands.txt
  • 14 - Getting Started with Git.txt
  • 14 - Helm Labs Repository.txt
  • 15 - All OS Install helmunittest
  • 15 - Commands.txt
  • 15 - Helm Unit Test GitHub Page.txt
  • 16 - Commands.txt
  • 16 - Watchexec GitHub.txt
  • 16 - macOS Install watchexec
  • 17 - Commands.txt
  • 17 - Watchexec GitHub.txt
  • 17 - Windows Install watchexec

  • 3 - Introduction to Helm Charts
  • 18 - Anatomy of a Helm Chart
  • 19 - Helm Template Site.txt
  • 19 - Helm Template YAML Files
  • 20 - Kubernetes Resource Introduction.txt
  • 20 - What are Kubernetes Manifests
  • 21 - Introduction to YAML
  • 21 - YAML Spec.txt
  • 22 - Go Templates
  • 22 - Go Template Package Documentation.txt
  • 23 - Further Values Documentation.txt
  • 23 - The Helm Chart Values System
  • 24 - Overriding Values at Runtime
  • 25 - Overriding Values Using Files
  • 26 - Chartyaml documentation.txt
  • 26 - Understanding Chartyaml
  • 27 - Charts Directory
  • 28 - NOTEStxt
  • 28 - NOTEStxt Guide.txt
  • 29 - helmignore
  • 29 - helmignore documentation.txt

  • 4 - Essential CLI Commands
  • 30 - Helm CLI Intro
  • 30 - Official Documentation.txt
  • 31 - Commands.txt
  • 31 - helm template
  • 32 - CLI Value Overrides
  • 32 - Commands.txt
  • 33 - Commands.txt
  • 33 - helm install
  • 34 - Commands.txt
  • 34 - kubectl get
  • 35 - Commands.txt
  • 35 - helm list
  • 36 - Commands.txt
  • 36 - helm status
  • 37 - Commands.txt
  • 37 - helm upgrade
  • 38 - Commands.txt
  • 38 - helm get all
  • 39 - Commands.txt
  • 39 - helm uninstall
  • 40 - Commands.txt
  • 40 - helm upgrade install
  • 41 - Commands.txt
  • 41 - helm rollback
  • 42 - Commands.txt
  • 42 - The Secrets of Helm
  • 43 - Conclusion and Resources
  • 43 - Official Documentation.txt

  • 5 - Intro to the Helm Template Language
  • 2 - Helm Template Language Quiz.html
  • 44 - Parts of a Helm Template
  • 44 - Template Guide.txt
  • 45 - Helm Action Syntax
  • 46 - Official Type Documentation.txt
  • 46 - Types in Helm Templates
  • 47 - Helm Function Syntax
  • 48 - BuiltIn Functions
  • 48 - Functions List.txt
  • 49 - Official Documentation.txt
  • 49 - Understanding Helm Pipelines
  • 50 - Accessing Helm Data
  • 50 - Builtin Objects.txt

  • 6 - Working With Helm Strings
  • 51 - Introduction to Strings
  • 51 - Strings Functions.txt
  • 52 - How to Combine Strings
  • 53 - Using Helm Formatted Strings
  • 53 - printf Documentation.txt
  • 54 - Checking String Contents
  • 55 - How to Trim Strings
  • 56 - Working with Indentation
  • 57 - Quoting Strings
  • 58 - Getting Substrings
  • 59 - Working with Casing Functions
  • 60 - Matching with Regular Expressions
  • 60 - Regex Library.txt
  • 61 - Split Strings with Regular Expressions
  • 62 - Other String Functions
  • 63 - Lab Intro Unit Tests
  • 64 - Lab Intro Starting the Test Runner
  • 65 - Lab Intro Fixing the First Test
  • 66 - Lab Intro Debugging Tips
  • 67 - Strings Lab.html
  • 68 - Lab Walkthrough

  • 7 - Numbers
  • 69 - Introduction to Helm Numbers
  • 69 - Number Functions.txt
  • 70 - Helm Math Basics
  • 71 - Helm Float Math
  • 72 - How to Round Numbers
  • 73 - How to Compare Numbers
  • 74 - How to do the Modulo Operation
  • 75 - Numbers Lab.html
  • 76 - Lab Walkthrough

  • 8 - Control Flow in Helm
  • 77 - Introduction to If Statements
  • 77 - Official Documentation.txt
  • 78 - Helm Variables
  • 79 - Using with
  • 80 - with else
  • 81 - Helm Data Inside with Blocks
  • 82 - Handling Whitespace
  • 83 - Ternary Functions
  • 84 - Control Flow Lab.html
  • 85 - Lab Walkthrough

  • 9 - Working with Lists
  • 86 - Lists in YAML vs Helm
  • 86 - List Functions.txt
  • 87 - How to Create Lists
  • 88 - How to Iterate Through Lists
  • 89 - Variable Names for range
  • 90 - Index Variables for range
  • 91 - How to Get List Items at an Index
  • 92 - How to Get the Length of a List
  • 93 - How to Check an Elements Presence
  • 94 - How to Handle first and nil
  • 95 - How to Remove Duplicates
  • 96 - How to Get Part of a List
  • 97 - How to Add to a List
  • 98 - How to Join Lists Together
  • 99 - How to Remove List Elements
  • 100 - How to Print a List
  • 101 - How to Check List Equality
  • 102 - How to Sort Lists of Strings
  • 103 - Lists Lab.html
  • 104 - Lab Walkthrough

  • 10 - Working with Dictionaries
  • 105 - Dictionary Functions.txt
  • 105 - How to Create Dictionaries
  • 106 - How to Print Dictionaries
  • 107 - How to Get a Dictionary Item
  • 108 - How to Handle Lookup Failures
  • 109 - How to Add a Dictionary Item
  • 110 - How to Copy Dictionaries
  • 111 - How to Remove From a Dictionary
  • 112 - How to Check Dictionary Equality
  • 113 - Removing Items With omit
  • 114 - How to Get Dictionary Keys
  • 115 - How to Get Dictionary Values
  • 116 - Working with the String split Function
  • 117 - Dictionaries Lab.html
  • 118 - Lab Walkthrough

  • 11 - BuiltIn Objects
  • 3 - BuiltIn Objects Quiz.html
  • 119 - Documentation.txt
  • 119 - Introduction
  • 120 - How to Print BuiltIn Objects
  • 121 - The Release Object
  • 122 - The Chart Object
  • 123 - The Files Object
  • 124 - The Template Object
  • 125 - The Capabilities Object

  • 12 - Types and Reflection
  • 4 - Helm Types and Reflection Quiz.html
  • 126 - Introduction
  • 127 - How to Get a Variables Type
  • 128 - typeIs and kindIs
  • 129 - Helm Type Conversions
  • 130 - How to Coerce a Value to String
  • 131 - How to Coerce a Value to Number
  • 132 - How to Handle Coercion Failure
  • 133 - How to Coerce a Value from a String

  • 13 - Named Templates
  • 5 - Named Templates Quiz.html
  • 134 - Introduction
  • 134 - Named Templates.txt
  • 135 - How to Define a Named Template
  • 136 - Helm Commenting Conventions
  • 137 - How to Run Named Templates
  • 138 - include vs template
  • 139 - Named Template Arguments
  • 140 - Multiple Template Arguments
  • 141 - tpl Files

  • 14 - Subcharts and Dependencies
  • 6 - Dependencies Quiz.html
  • 142 - Chartyaml documentation.txt
  • 142 - Dependencies in Chartyaml
  • 143 - Building Helm Dependencies
  • 144 - Example Dependency Build
  • 145 - How to List Chart Dependencies
  • 146 - Working with Subchart Values
  • 147 - Working with Global Values
  • 148 - Working with Chart Locks
  • 149 - Upgrading Helm Chart Dependencies

  • 15 - Unit Testing
  • 150 - Helm Unit Test.txt
  • 150 - Introduction
  • 151 - Unit Test Anatomy
  • 151 - Unit Test Assertion List.txt
  • 152 - Basic Unit Test Assertions
  • 153 - Regular Expression Assertions
  • 154 - Testing for Null
  • 155 - Testing Multiple Documents
  • 156 - Document Assertions
  • 157 - The not Property
  • 157 - Unit Test Assertion List.txt
  • 158 - Unit Tests Lab.html
  • 45,900 تومان
    بیش از یک محصول به صورت دانلودی میخواهید؟ محصول را به سبد خرید اضافه کنید.
    خرید دانلودی فوری

    در این روش نیاز به افزودن محصول به سبد خرید و تکمیل اطلاعات نیست و شما پس از وارد کردن ایمیل خود و طی کردن مراحل پرداخت لینک های دریافت محصولات را در ایمیل خود دریافت خواهید کرد.

    ایمیل شما:
    تولید کننده:
    مدرس:
    شناسه: 16000
    حجم: 1377 مگابایت
    مدت زمان: 316 دقیقه
    تاریخ انتشار: 15 تیر 1402
    دیگر آموزش های این مدرس
    طراحی سایت و خدمات سئو

    45,900 تومان
    افزودن به سبد خرید