#HelmCharts
Explore tagged Tumblr posts
akhil-1 · 1 year ago
Text
Tumblr media
Azure DevOps Training Online New Batch
Join Now Team ID: 479 864 819 691
Password: pxxffv
Attend New Online Batch On Azure DevSecOps by Mr. Sudheer.
Batch on: 12th October @ 7:00 AM (IST).
Contact us: 099899 71070
Visit:https://www.visualpath.in/Microsoft-Azure-DevOps-online-Training.html
0 notes
opsmxspinnaker · 3 years ago
Link
Learn how to deploy Spinnaker in local Kubernetes cluster (Minikube) using Helm Chart
0 notes
computingpostcom · 2 years ago
Text
Netdata is an opensource solution for monitoring and troubleshooting systems. It can be used to monitor a kubernetes cluster and display information about your cluster including node memory usage, CPU, network and many more. Netdata dashboard gives you a broad view of your Kubernetes cluster including the services and pods running on each node. In this post, we shall cover how to deploy Netdata on a Kubernetes cluster using Helm chart. This kind of installation deploys one parent pod on the master and child pods on each worker node. The child pods collects metrics from the nodes they run on, kube-proxy, kubelet and cgroup metrics from the nodes. The child nodes also use a generic prometheus collector and service discovery to deliver the metrics. Pre-requisites Before we can install Netdata on our cluster, you need to meet the following conditions: A fully functional Kubernetes cluster, v1.9 and above. Kubectl command-line tool Helm package manager, version 3.0.0 and above. Install Netdata on Kubernetes using Helm Use the steps below to install Netdata in your Kubernetes Cluster using Helm chart. Step 1 – Install Helm on Linux | macOS These are the steps you’ll use to install Helm on a Linux | macOS system. Download Helm package from this link Extract the package using tar -xvzf Move the binary file to usr/local/bin/helm We will use installation script which automates above steps. curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 chmod 700 get_helm.sh sudo ./get_helm.sh macOS users can also use brew package management tool. $ brew install helm Once installed confirm by checking the current version: $ helm version version.BuildInfoVersion:"v3.9.0", GitCommit:"7ceeda6c585217a19a1131663d8cd1f7d641b2a7", GitTreeState:"clean", GoVersion:"go1.17.5" Add helm chart repository then update helm $ helm repo add stable https://charts.helm.sh/stable $ helm repo update Hang tight while we grab the latest from your chart repositories... ...Successfully got an update from the "stable" chart repository Update Complete. ⎈Happy Helming!⎈ Step 2 – Install Netdata using Helm chart You can install Helm chart using two methods: Install from Netdata’s Helm repository Clone Netdata Git repository. We shall explore both methods Option 1: Install from Helm repository Add Netdata’s Helm repository then install Helm chart helm repo add netdata https://netdata.github.io/helmchart/ helm install netdata netdata/netdata Check the list of configurable parameters of the netdata chart and their default values. In below example we’re setting StorageClass name: $ kubectl get sc NAME PROVISIONER RECLAIMPOLICY VOLUMEBINDINGMODE ALLOWVOLUMEEXPANSION AGE rook-ceph-block rook-ceph.rbd.csi.ceph.com Delete Immediate true 227d rook-cephfs rook-ceph.cephfs.csi.ceph.com Delete Immediate true 227d #Deploy Netdata while using rook-cephfs $ helm install netdata netdata/netdata \ --set parent.database.storageclass="rook-cephfs" \ --set parent.alarms.storageclass="rook-cephfs" #Give it sometime then check PVCs created $ kubectl get pvc NAME STATUS VOLUME CAPACITY ACCESS MODES STORAGECLASS AGE netdata-parent-alarms Bound pvc-14b6b1ec-128c-4c73-a9ac-84e2019faed7 1Gi RWO rook-cephfs 37s netdata-parent-database Bound pvc-1faa198f-b8e1-4361-a1af-bbb20a38c8f2 2Gi RWO rook-cephfs 37s To uninstall/delete netdata deployment, run: helm delete netdata Option 2: Clone Github repository You can also clone repo from Github and install helm chart. But first, make sure you have git installed to your system Clone git repository locally git clone https://github.com/netdata/helmchart.git netdata-helmchart
Install the chart helm install netdata ./netdata-helmchart/charts/netdata You can now see the helm deployments by: $ helm list NAME NAMESPACE REVISION UPDATED STATUS CHART APP VERSION netdata wikijs 1 2022-06-02 17:14:57.522097888 +0300 EAT deployed netdata-3.7.18 v1.34.1 To check if the parent pod and the child pods have been successfully deployed: $ kubectl get pods NAME READY STATUS RESTARTS AGE netdata-child-fgh5c 2/2 Running 0 16h netdata-child-qzhjp 2/2 Running 0 16h netdata-child-ssmhp 2/2 Running 0 16h netdata-parent-55d88fc784-x66ss 1/1 Running 0 16h Step 3: Expose Netdata-parent with NodePort In this guide, we will expose the netdata deployment using NodePort Netdata is configured to run on port 19999 by default. To expose the port, use the command below: kubectl expose deployment netdata-parent --type="NodePort" --port 19999 You can now check the port that service has been exposed use the kubectl get service command: $ kubectl get service NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE kubernetes ClusterIP 10.96.0.1 443/TCP 21h netdata ClusterIP 10.99.202.135 19999/TCP 17h netdata-parent NodePort 10.97.24.181 19999:30939/TCP 16h In our deployment, netdata-parent service has been exposed to port 30939. You can now access the netdata dashboard in your browser by http://:NodePort e.g http://172.16.1.4:30939 is the url for our dashboard. You can check the metrics of all the nodes which are listed on the left pane as in the screenshot below. Then you can choose any node to check the stats: Conclusion We have successfully installed Netdata on our Kubernetes cluster using Helm command-line tool.
0 notes
releaseteam · 5 years ago
Link
via Twitter https://twitter.com/releaseteam
0 notes
deployhub-blog · 5 years ago
Text
Working with Helm and MicroservicesIntegrate Helm Into Your DeployHub Release
Helm helps with the process of creating your container image. It is an agentless solution that can be called via a DeployHub ‘Custom Action.’ Helm provides a broad set of pre-defined Helm “Charts.” A Helm Chart is a reusable script that simplifies the creation of your container image. When DeployHub executes the release process, it will call the Helm Chart you have defined as your Custom Action. What DeployHub offers is the versioning around what was released, including the version of the Helm Chart. DeployHub tracks all of the configuration of your release and tracks all changes to the configuration, including Helm.
Helm is called by DeployHub using ”Custom Action.” A Custom Action can replace the usual DeployHub deployment engine processing by calling an external script that performs its own deployment activities. Custom Actions can be used when you want an external tool to perform the delivery step of the deployment process. This will be the case for Helm.
Importing the DeployHub Helm Procedures
To use Helm, you will need to import the most current DeployHub Helm Procedures from GitHub. There will be two:
• WriteEnv2Toml.re — This Procedure takes all the attributes from DeployHub Environments, Applications, Endpoints and Components and writes them to a file readable by the Helm Procedure. • HelmUpgrade.re — This Procedure performs a Helm upgrade/install of the Helm Chart.
Download them from: https://github.com/DeployHubProject/DeployHub-Pro/tree/master/procedures
Once downloaded, you will need to import them into DeployHub as Procedures. To import these Procedures first login into DeployHub and select the Flows menu. Navigate to the Function & Procedures tab. Select your Domain, such as ‘Global Domain,’ and right click for the Menu. Choose “Import a Function or Procedure into this Domain”. Upload the two Procedures one at a time into the DeployHub database.
Creating a Custom Action for Helm
Once you have imported your Helm Procedures, you can define your Custom Action. Change to the Workflow tab on the right pane. Select your Domain and right click. This will give you the option to create a “New Action in this Domain.”
Name the new Action “HelmChart” (no spaces).
Now we are going to customize this Action. Go to the Workflow tab. You will see the ‘Activity Hub’ on the Right hand side of your screen. Navigate to your Domain to find the two Procedures. Drag them onto the area under Start. This will bring up the Dialog box to enter the parameters. No fields are required for WriteEnv2Toml.
Repeat the process for the HelmUpgrade Procedure and fill in the fields as follows:
Title: Not Required Summary: Not Required RspFile: $RspFile (The results from the WriteEnv2Toml.re Procedure) Chart: $(Chart) (The Helm Chart to be used during the deployment) Release Name: $(component.name) (The name of the Component)
At this point the Action is ready to be used by anyone with access (based on Domain and security options). Each Component that uses the Action will need to define specific values. Because this new Action is reusable, no Component variables are defined.
Assign the HelmChart Action to a Docker Component
For each Docker Component, you will need to define the variable values. Values are specified when you create a new Docker Component. These values will override those defined at the Application or Environment level. The values from DeployHub will be passed along to Helm’s values.yml file at execution time.
Docker component items have the following attributes, none of which are required:
BuildIdThe build ID from the build system such as Quay or DockerHubBuildUrlBuild URL for the build systemChartHelm chart for the componentChart VersionVersion of the Helm chartChart Name SpaceNamespace for the Helm chart to deploy toOperatorKubernetes OperatorDockerBuildDateTimestamp for the Docker BuildDockerShaSHA for the Docker ImageDockerRepoURL for the Docker RegistryGitCommitGit Commit that triggered the BuildGitRepoGit Repo NameGitTagGit Tag such as ‘Master’ or ‘v1.5.0’GitUrlURL to the Git RepositoryBuildNumberBuild Job Number for CI/CDBuild JobBuild Job name for CI/CDComponentTypeName of the Component TypeChangeRequestDSName of the Change Request DatasourceCategoryName of the Components CategoryAlwaysDeployY/NDeploySequentiallyY/NBaseDirectoryBase Directory for the ComponentPreActionName of the Pre-ActionPostActionName of the Post-ActionCustomActionName of the Custom-ActionSummaryComponent Summary or Description
0 notes
billmanning · 7 years ago
Text
Hey #Kubernetes folks!! @jfrog has #HelmChart support in #Artifactory now. Here are 7 beset practices for #Helm @DevOps #LiquidSoftware #ReleaseFastOrDie https://t.co/4G1FGfncyR
Hey #Kubernetes folks!! @jfrog has #HelmChart support in #Artifactory now. Here are 7 beset practices for #Helm @DevOps #LiquidSoftware #ReleaseFastOrDie https://t.co/4G1FGfncyR
— William Manning (@williammanning) January 19, 2018
via Twitter https://twitter.com/williammanning January 19, 2018 at 08:45AM
0 notes