Skip to content

Commit

Permalink
update helm chart version
Browse files Browse the repository at this point in the history
  • Loading branch information
MitchellGerdisch committed Sep 11, 2024
1 parent f3349dd commit 517c34e
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION := 2.0.1
VERSION := 2.0.2

PACK := k8sdatadog
ORG := pulumi-pequod
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ make dist
```

## Publish the Plugins
* Push/merge the code to the repo.
* Create a new github release of this repo using the same version number in the Makefile.
* Upload the files in the `dist` folder as attachments to the release.

Expand Down
30 changes: 30 additions & 0 deletions pequod-mlc-k8sdatadog.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.5.002.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "sdk", "sdk", "{7E99389E-9A2E-4525-B2EA-68E467F64B77}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Pulumi.K8sdatadog", "sdk\dotnet\Pulumi.K8sdatadog.csproj", "{16BB9CC8-ECA9-4AE9-94FC-FFAA9EF75660}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{16BB9CC8-ECA9-4AE9-94FC-FFAA9EF75660}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{16BB9CC8-ECA9-4AE9-94FC-FFAA9EF75660}.Debug|Any CPU.Build.0 = Debug|Any CPU
{16BB9CC8-ECA9-4AE9-94FC-FFAA9EF75660}.Release|Any CPU.ActiveCfg = Release|Any CPU
{16BB9CC8-ECA9-4AE9-94FC-FFAA9EF75660}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{16BB9CC8-ECA9-4AE9-94FC-FFAA9EF75660} = {7E99389E-9A2E-4525-B2EA-68E467F64B77}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {E74F0374-85D6-4B22-877C-7E9F123AF713}
EndGlobalSection
EndGlobal
3 changes: 2 additions & 1 deletion provider/cmd/pulumi-resource-k8sdatadog/k8sMonitor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import * as k8s from "@pulumi/kubernetes";
// Interface for Network
export interface K8sMonitorArgs{
apiKey: Output<string>,
datadogHelmChartVersion?: string,
}

// Creates Network elements (e.g. VPC, etc)
Expand All @@ -22,7 +23,7 @@ export class K8sMonitor extends ComponentResource {
repositoryOpts: {
repo: "https://helm.datadoghq.com",
},
version: "3.49.5",
version: args.datadogHelmChartVersion || "3.70.7",
values: {
datadog: {
apiKey: args.apiKey,
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/bin/pequod_k8sdatadog.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: pequod-k8sdatadog
Version: 2.0.1
Version: 2.0.2
Requires-Python: >=3.7
Description-Content-Type: text/markdown

Expand Down
2 changes: 1 addition & 1 deletion sdk/python/bin/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from subprocess import check_call


VERSION = "2.0.1"
VERSION = "2.0.2"
def readme():
try:
with open('README.md', encoding='utf-8') as f:
Expand Down

0 comments on commit 517c34e

Please sign in to comment.