Skip to content

Commit

Permalink
Add license
Browse files Browse the repository at this point in the history
  • Loading branch information
blampe committed Apr 17, 2024
1 parent eda7300 commit 1a01f15
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
5 changes: 2 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,13 @@ build_dotnet_sdk:: gen_dotnet_sdk
echo "${DOTNET_VERSION}" >version.txt && \
dotnet build /p:Version=${DOTNET_VERSION}

install_dotnet_sdk:: build_dotnet_sdk
install_dotnet_sdk:: # Required by CI
rm -rf ${WORKING_DIR}/nuget
mkdir -p ${WORKING_DIR}/nuget
find . -name '*.nupkg' -print -exec cp -p {} ${WORKING_DIR}/nuget \;

generate_dotnet: gen_dotnet_sdk # Required by CI
build_dotnet: # Required by CI
install_dotnet_sdk:: # Required by CI

# Node.js SDK

Expand All @@ -93,7 +92,7 @@ build_nodejs_sdk:: gen_nodejs_sdk

generate_nodejs: gen_nodejs_sdk # Required by CI
build_nodejs: build_nodejs_sdk # Required by CI
install_nodejs_sdk:: build_nodejs_sdk # Required by CI
install_nodejs_sdk:: # Required by CI
yarn unlink ${PACK} || true
yarn link --cwd ${WORKING_DIR}/sdk/nodejs/bin

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
"kind/component",
"category/infrastructure"
],
"homepage": "https://pulumi.io",
"license": "Apache-2.0",
"publisher": "Pulumi",
"resources": {
"kubernetes-cert-manager:index:CertManager": {
Expand Down Expand Up @@ -886,7 +888,7 @@
},
"packageReferences": {
"Pulumi": "3.*",
"Pulumi.Kubernetes": "3.*"
"Pulumi.Kubernetes": "4.*"
}
},
"go": {
Expand Down
6 changes: 3 additions & 3 deletions sdk/dotnet/Pulumi.KubernetesCertManager.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<Authors>Pulumi</Authors>
<Company>Pulumi</Company>
<Description>Strongly-typed Cert Manager installation</Description>
<PackageLicenseExpression></PackageLicenseExpression>
<PackageProjectUrl></PackageProjectUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://pulumi.io</PackageProjectUrl>
<RepositoryUrl>https://github.com/pulumi/pulumi-kubernetes-cert-manager</RepositoryUrl>
<PackageIcon>logo.png</PackageIcon>

Expand Down Expand Up @@ -45,7 +45,7 @@

<ItemGroup>
<PackageReference Include="Pulumi" Version="3.*" />
<PackageReference Include="Pulumi.Kubernetes" Version="3.*" ExcludeAssets="contentFiles" />
<PackageReference Include="Pulumi.Kubernetes" Version="4.*" ExcludeAssets="contentFiles" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 2 additions & 0 deletions sdk/nodejs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
"kind/component",
"category/infrastructure"
],
"homepage": "https://pulumi.io",
"repository": "https://github.com/pulumi/pulumi-kubernetes-cert-manager",
"license": "Apache-2.0",
"scripts": {
"build": "tsc"
},
Expand Down
2 changes: 2 additions & 0 deletions sdk/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,11 @@ def readme():
long_description=readme(),
long_description_content_type='text/markdown',
keywords='pulumi kubernetes cert-manager kind/component category/infrastructure',
url='https://pulumi.io',
project_urls={
'Repository': 'https://github.com/pulumi/pulumi-kubernetes-cert-manager'
},
license='Apache-2.0',
packages=find_packages(),
package_data={
'pulumi_kubernetes_cert_manager': [
Expand Down

0 comments on commit 1a01f15

Please sign in to comment.