Skip to content

Commit

Permalink
Updated version of containerservice go sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
pierskarsenbarg committed Apr 29, 2024
1 parent d57559a commit 8e75e07
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/pierskarsenbarg/pulumi-kubeconfig
go 1.22.1

require (
github.com/pulumi/pulumi-azure-native-sdk/containerservice v1.104.0
github.com/pulumi/pulumi-azure-native-sdk/containerservice/v2 v2.38.0
github.com/pulumi/pulumi-go-provider v0.16.0
github.com/pulumi/pulumi/pkg/v3 v3.114.0
github.com/pulumi/pulumi/sdk/v3 v3.114.0
Expand Down Expand Up @@ -146,7 +146,7 @@ require (
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/pulumi/appdash v0.0.0-20231130102222-75f619a67231 // indirect
github.com/pulumi/esc v0.6.2 // indirect
github.com/pulumi/pulumi-azure-native-sdk v1.104.0 // indirect
github.com/pulumi/pulumi-azure-native-sdk/v2 v2.38.0 // indirect
github.com/rivo/uniseg v0.4.4 // indirect
github.com/rogpeppe/go-internal v1.11.0 // indirect
github.com/ryanuber/go-glob v1.0.0 // indirect
Expand Down
8 changes: 4 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1488,10 +1488,10 @@ github.com/pulumi/appdash v0.0.0-20231130102222-75f619a67231 h1:vkHw5I/plNdTr435
github.com/pulumi/appdash v0.0.0-20231130102222-75f619a67231/go.mod h1:murToZ2N9hNJzewjHBgfFdXhZKjY3z5cYC1VXk+lbFE=
github.com/pulumi/esc v0.6.2 h1:+z+l8cuwIauLSwXQS0uoI3rqB+YG4SzsZYtHfNoXBvw=
github.com/pulumi/esc v0.6.2/go.mod h1:jNnYNjzsOgVTjCp0LL24NsCk8ZJxq4IoLQdCT0X7l8k=
github.com/pulumi/pulumi-azure-native-sdk v1.104.0 h1:vyD4PvKSOkwL1z9WTis3ZE9XC73UM/7AyMNek4Vm1+E=
github.com/pulumi/pulumi-azure-native-sdk v1.104.0/go.mod h1:ZfkbJPR8poiJgy4IlNaa2NBjHLW37nsLY2BIbZp3lHc=
github.com/pulumi/pulumi-azure-native-sdk/containerservice v1.104.0 h1:grLVzWH6pS5os8ZfAbEkdEbaF4BFoLMwDai9ZsOINqo=
github.com/pulumi/pulumi-azure-native-sdk/containerservice v1.104.0/go.mod h1:QRMkKXRX3suaDR13VgN9jEkPl66YI/MZOyu0hxZzwuk=
github.com/pulumi/pulumi-azure-native-sdk/containerservice/v2 v2.38.0 h1:l93cC2a0ntGXVpbm9h/36/usFqJ6ETXEbdoCCjAN6Zk=
github.com/pulumi/pulumi-azure-native-sdk/containerservice/v2 v2.38.0/go.mod h1:YqujYm4fdirw1yBb55OQ2TPSNSM2dp7tdNLXC/1TZl4=
github.com/pulumi/pulumi-azure-native-sdk/v2 v2.38.0 h1:XzslLx/yTjbmBAtICF5hnIXrTVDMKX1kGDBM3Lrrtp8=
github.com/pulumi/pulumi-azure-native-sdk/v2 v2.38.0/go.mod h1:APPYNWQ57dDSxHt+PsE9EPHfcNcHIRsGGJDxxo4CAnY=
github.com/pulumi/pulumi-go-provider v0.16.0 h1:vLAiECprIoLdTPd0UFs9Vv/HgSw7l/SBAurRBm3vpSU=
github.com/pulumi/pulumi-go-provider v0.16.0/go.mod h1:2yjjeyMSmsb/o/BRJeWk+kcXrJWF5U2EulJKnN7qVLs=
github.com/pulumi/pulumi/pkg/v3 v3.114.0 h1:+Ru1DfQKKmZcTYF7i+IWTaxvHX+vIWmVPyUXXksM3Uk=
Expand Down
2 changes: 1 addition & 1 deletion pkg/aks.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package pkg
import (
"encoding/base64"

"github.com/pulumi/pulumi-azure-native-sdk/containerservice"
"github.com/pulumi/pulumi-azure-native-sdk/containerservice/v2"
"github.com/pulumi/pulumi-go-provider/infer"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
Expand Down
3 changes: 3 additions & 0 deletions sdk/python/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Pulumi Kubeconfig provider

WIP so no SDKs available yet
3 changes: 1 addition & 2 deletions sdk/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@
# *** Do not edit by hand unless you're certain you know what you are doing! ***

import errno
import os
from setuptools import setup, find_packages
from setuptools.command.install import install
from subprocess import check_call


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

0 comments on commit 8e75e07

Please sign in to comment.