Skip to content

Commit

Permalink
Add license to pkg files
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
  • Loading branch information
alexellis committed Mar 9, 2020
1 parent c192886 commit 1d497d6
Show file tree
Hide file tree
Showing 14 changed files with 48 additions and 3 deletions.
3 changes: 3 additions & 0 deletions cmd/apps/chart_app.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) arkade author(s) 2020. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

package apps

import (
Expand Down
3 changes: 3 additions & 0 deletions cmd/apps/istio_app.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) arkade author(s) 2020. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

package apps

import (
Expand Down
3 changes: 3 additions & 0 deletions cmd/apps/kafkaconnector_app.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) arkade author(s) 2020. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

package apps

import (
Expand Down
3 changes: 3 additions & 0 deletions cmd/apps/kubernetes_dashboard_app.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) arkade author(s) 2020. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

package apps

import (
Expand Down
3 changes: 3 additions & 0 deletions cmd/apps/kubernetes_exec.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) arkade author(s) 2020. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

package apps

import (
Expand Down
3 changes: 3 additions & 0 deletions cmd/apps/metricsserver_app.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) arkade author(s) 2020. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

package apps

import (
Expand Down
3 changes: 3 additions & 0 deletions cmd/apps/openfaas_app_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) arkade author(s) 2020. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

package apps

import (
Expand Down
3 changes: 3 additions & 0 deletions cmd/apps/openfaas_ingress_app.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) arkade author(s) 2020. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

package apps

import (
Expand Down
3 changes: 3 additions & 0 deletions cmd/apps/openfaas_ingress_app_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) arkade author(s) 2020. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

package apps

import (
Expand Down
11 changes: 8 additions & 3 deletions cmd/apps/registry_ingress_app.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) arkade author(s) 2020. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

package apps

import (
Expand All @@ -23,9 +26,11 @@ type RegInputData struct {

func MakeInstallRegistryIngress() *cobra.Command {
var registryIngress = &cobra.Command{
Use: "docker-registry-ingress",
Short: "Install registry ingress with TLS",
Long: `Install registry ingress. Requires cert-manager 0.11.0 or higher installation in the cluster. Please set --domain to your custom domain and set --email to your email - this email is used by letsencrypt for domain expiry etc.`,
Use: "docker-registry-ingress",
Short: "Install registry ingress with TLS",
Long: `Install registry ingress. Requires cert-manager 0.11.0 or higher installation
in the cluster. Please set --domain to your custom domain and set --email
to your email - this email is used by letsencrypt for domain expiry etc.`,
Example: ` arkade install registry-ingress --domain registry.example.com --email [email protected]`,
SilenceUsage: true,
}
Expand Down
3 changes: 3 additions & 0 deletions pkg/config/config.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) arkade author(s) 2020. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

package config

import (
Expand Down
3 changes: 3 additions & 0 deletions pkg/env/env.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) arkade author(s) 2020. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

package env

import (
Expand Down
3 changes: 3 additions & 0 deletions pkg/helm/helm.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) arkade author(s) 2020. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

package helm

import (
Expand Down
4 changes: 4 additions & 0 deletions pkg/thanks.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright (c) arkade author(s) 2020. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

package pkg

// ThanksForUsing message is printed after installing apps
const ThanksForUsing = `Thanks for using arkade!`

0 comments on commit 1d497d6

Please sign in to comment.