Skip to content

Commit cf93272

Browse files
authored
Unify copyright statement formats and text (#133)
* unified copyright statement formats and text * removed all rights reserved * Removed the word corporation from the copyright statement * fixed license URL for 22 files to HTTPS instead of HTTP
1 parent ed9cfef commit cf93272

File tree

139 files changed

+209
-218
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

139 files changed

+209
-218
lines changed

CONTRIBUTING.md

+2-2

LICENSE

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
Copyright (c) 2017, 2019, Oracle Corporation and/or its affiliates. All rights reserved.
1+
Copyright (c) 2017, 2020, Oracle and/or its affiliates.
22

3-
Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
3+
Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
44

55
Subject to the condition set forth below, permission is hereby granted to any person obtaining
66
a copy of this software, associated documentation and/or data (collectively the "Software"),

build-helper-mojo/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
3-
Copyright (c) 2019, Oracle Corporation and/or its affiliates. All rights reserved.
4-
Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
3+
Copyright (c) 2019, Oracle and/or its affiliates.
4+
Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
55
-->
66
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
77
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">

build-helper-mojo/src/main/java/com/oracle/wls/buildhelper/BuildHelperMojo.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2020, Oracle Corporation and/or its affiliates.
1+
// Copyright (c) 2020, Oracle and/or its affiliates.
22
// Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
package com.oracle.wls.buildhelper;

build-helper-mojo/src/main/java/com/oracle/wls/buildhelper/CopyExecutor.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2020, Oracle Corporation and/or its affiliates.
1+
// Copyright (c) 2020, Oracle and/or its affiliates.
22
// Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
package com.oracle.wls.buildhelper;

build-helper-mojo/src/main/java/com/oracle/wls/buildhelper/CopyExecutorImpl.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2020, Oracle Corporation and/or its affiliates.
1+
// Copyright (c) 2020, Oracle and/or its affiliates.
22
// Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
package com.oracle.wls.buildhelper;

build-helper-mojo/src/test/java/com/oracle/wls/buildhelper/BuildHelperMojoTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2020, Oracle Corporation and/or its affiliates.
1+
// Copyright (c) 2020, Oracle and/or its affiliates.
22
// Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
package com.oracle.wls.buildhelper;

build-helper-mojo/src/test/java/com/oracle/wls/buildhelper/MojoTestSupport.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2020, Oracle Corporation and/or its affiliates.
1+
// Copyright (c) 2020, Oracle and/or its affiliates.
22
// Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
package com.oracle.wls.buildhelper;

config_coordinator/COPYRIGHT

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Copyright (c) 2017, 2019, Oracle Corporation and/or its affiliates. All rights reserved.
2-
Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
1+
Copyright (c) 2017, 2020, Oracle and/or its affiliates.
2+
Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
Permission is hereby granted, free of charge, to any person obtaining
55
a copy of this software and associated documentation files (the

config_coordinator/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Copyright 2019, Oracle Corporation and/or its affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
1+
# Copyright 2019, Oracle and/or its affiliates.
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
# Start from a Debian image with the desired version of Go installed
55
# and a workspace (GOPATH) configured at /go.

config_coordinator/README.md

+2-1

config_coordinator/config_coordinator.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package main
22
/*
3-
* Copyright (c) 2017, 2019, Oracle Corporation and/or its affiliates. All rights reserved.
3+
* Copyright (c) 2017, 2020, Oracle and/or its affiliates.
44
*
5-
* Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
5+
* Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
66
*/
77

88
import (

config_coordinator/config_coordinator_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package main
22
/*
3-
* Copyright (c) 2017, 2019, Oracle Corporation and/or its affiliates. All rights reserved.
3+
* Copyright (c) 2017, 2020, Oracle and/or its affiliates.
44
*
5-
* Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
5+
* Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
66
*/
77

88
import (

pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
2-
Copyright (c) 2019, 2020, Oracle Corporation and/or its affiliates.
3-
Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
2+
Copyright (c) 2019, 2020, Oracle and/or its affiliates.
3+
Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
44
-->
55
<project xmlns="http://maven.apache.org/POM/4.0.0"
66
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
@@ -26,7 +26,7 @@
2626
<licenses>
2727
<license>
2828
<name>Oracle Universal Permissive License, Version 1.0</name>
29-
<url>http://oss.oracle.com/licenses/upl</url>
29+
<url>https://oss.oracle.com/licenses/upl</url>
3030
</license>
3131
</licenses>
3232

samples/configurations/healthState.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Copyright 2020, Oracle Corporation and/or its affiliates.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
1+
# Copyright 2020, Oracle and/or its affiliates.
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
---
55
metricsNameSnakeCase: true

samples/configurations/jvm.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Copyright 2019, Oracle Corporation and/or its affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
1+
# Copyright 2019, Oracle and/or its affiliates.
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
metricsNameSnakeCase: true
55
queries:

samples/configurations/qualified.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Copyright 2019, Oracle Corporation and/or its affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
1+
# Copyright 2019, Oracle and/or its affiliates.
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
metricsNameSnakeCase: true
55
domainQualifier: true

samples/configurations/query_sync.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Copyright 2019, Oracle Corporation and/or its affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
1+
# Copyright 2019, Oracle and/or its affiliates.
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
query_sync:
55
url: http://coordinator:8999/

samples/configurations/servlets.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Copyright 2019, Oracle Corporation and/or its affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
1+
# Copyright 2019, Oracle and/or its affiliates.
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
---
55
metricsNameSnakeCase: true

samples/configurations/threadpool.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Copyright 2019, Oracle Corporation and/or its affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
1+
# Copyright 2019, Oracle and/or its affiliates.
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
metricsNameSnakeCase: true
55
queries:

samples/configurations/workmanagers.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Copyright 2019, Oracle Corporation and/or its affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
1+
# Copyright 2019, Oracle and/or its affiliates.
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
metricsNameSnakeCase: true
55
queries:

samples/kubernetes/deployments/alertmanager-deployment.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Copyright 2019, Oracle Corporation and/or its affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
1+
# Copyright 2019, Oracle and/or its affiliates.
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
apiVersion: apps/v1beta1
55
kind: Deployment

samples/kubernetes/deployments/crossnsrbac.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Copyright 2019, Oracle Corporation and/or its affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
1+
# Copyright 2019, Oracle and/or its affiliates.
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
---
55
kind: ClusterRole

samples/kubernetes/deployments/grafana-deployment.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Copyright 2019, Oracle Corporation and/or its affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
1+
# Copyright 2019, Oracle and/or its affiliates.
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
apiVersion: extensions/v1beta1
55
kind: Deployment

samples/kubernetes/deployments/monitoring-namespace.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Copyright 2019, Oracle Corporation and/or its affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
1+
# Copyright 2019, Oracle and/or its affiliates.
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
---
55
apiVersion: v1

samples/kubernetes/deployments/prometheus-deployment.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Copyright 2019, Oracle Corporation and/or its affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
1+
# Copyright 2019, Oracle and/or its affiliates.
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
apiVersion: rbac.authorization.k8s.io/v1beta1
55
kind: ClusterRole

samples/kubernetes/deployments/prometheus-withalertmanager-deployment.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Copyright 2019, Oracle Corporation and/or its affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
1+
# Copyright 2019, Oracle and/or its affiliates.
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
apiVersion: rbac.authorization.k8s.io/v1beta1
55
kind: ClusterRole

samples/kubernetes/end2end/dashboard/exporter-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Copyright 2019, Oracle Corporation and/or its affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
1+
# Copyright 2019, Oracle and/or its affiliates.
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
host: localhost
55
port: 7001

samples/kubernetes/end2end/demo-domains/domain1.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Copyright 2017, 2019, Oracle Corporation and/or its affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
1+
# Copyright 2017, 2019, Oracle and/or its affiliates.
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33
#
44
# This is an sample domain resource which has domainHome in image.
55
#

samples/kubernetes/end2end/demo-domains/domainBuilder/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Copyright 2019, Oracle Corporation and/or its affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
1+
# Copyright 2019, Oracle and/or its affiliates.
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
FROM container-registry.oracle.com/middleware/weblogic:12.2.1.3
55

samples/kubernetes/end2end/demo-domains/domainBuilder/build.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
2-
# Copyright 2019, Oracle Corporation and/or its affiliates. All rights reserved.
3-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
2+
# Copyright 2019, Oracle and/or its affiliates. All rights reserved.
3+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
44

55
set -e # Exit immediately if a command exits with a non-zero status.
66

samples/kubernetes/end2end/demo-domains/domainBuilder/scripts/create-domain.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
2-
# Copyright 2019, Oracle Corporation and/or its affiliates. All rights reserved.
3-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
2+
# Copyright 2019, Oracle and/or its affiliates. All rights reserved.
3+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
44

55
set -exu
66

samples/kubernetes/end2end/demo-domains/domainBuilder/scripts/simple-topology.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Copyright 2019, Oracle Corporation and/or its affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
1+
# Copyright 2019, Oracle and/or its affiliates.
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33
domainInfo:
44
AdminUserName: '@@PROP:ADMIN_USER@@'
55
AdminPassword: '@@PROP:ADMIN_PWD@@'

samples/kubernetes/end2end/demo-domains/domainBuilder/test-webapp/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
2-
Copyright (c) 2019, Oracle Corporation and/or its affiliates. All rights reserved.
3-
Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
2+
Copyright (c) 2019, Oracle and/or its affiliates.
3+
Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
44
-->
55

66
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

samples/kubernetes/end2end/grafana/persistence.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Copyright 2019, Oracle Corporation and/or its affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
1+
# Copyright 2019, Oracle and/or its affiliates.
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
apiVersion: v1
55
kind: PersistentVolume

samples/kubernetes/end2end/grafana/values.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Copyright 2019, Oracle Corporation and/or its affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
1+
# Copyright 2019, Oracle and/or its affiliates.
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
persistence:
55
enabled: true

samples/kubernetes/end2end/mysql/mysql.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Copyright 2019, Oracle Corporation and/or its affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
1+
# Copyright 2019, Oracle and/or its affiliates.
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
apiVersion: apps/v1
55
kind: Deployment

samples/kubernetes/end2end/mysql/persistence.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Copyright 2019, Oracle Corporation and/or its affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
1+
# Copyright 2019, Oracle and/or its affiliates.
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
kind: PersistentVolume
55
apiVersion: v1

samples/kubernetes/end2end/prometheus/alert-persistence.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Copyright 2019, Oracle Corporation and/or its affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
1+
# Copyright 2019, Oracle and/or its affiliates.
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
apiVersion: v1
55
kind: PersistentVolume

samples/kubernetes/end2end/prometheus/persistence.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Copyright 2019, Oracle Corporation and/or its affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
1+
# Copyright 2019, Oracle and/or its affiliates.
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
apiVersion: v1
55
kind: PersistentVolume

samples/kubernetes/end2end/prometheus/values.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Copyright 2019, Oracle Corporation and/or its affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
1+
# Copyright 2019, Oracle and/or its affiliates.
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
serviceAccounts:
55
pushgateway:
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
# Copyright 2019, Oracle Corporation and/or its affiliates. All rights reserved.
3-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
2+
# Copyright 2019, Oracle and/or its affiliates.
3+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
44

55
rm -rf /tt/monitoring

samples/kubernetes/end2end/util/curl.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Copyright 2019, Oracle Corporation and/or its affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
1+
# Copyright 2019, Oracle and/or its affiliates.
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
apiVersion: v1
55
kind: Pod

samples/kubernetes/end2end/webhook/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Copyright 2019, Oracle Corporation and/or its affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
1+
# Copyright 2019, Oracle and/or its affiliates.
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
FROM python:3.7
55

samples/kubernetes/end2end/webhook/scripts/server.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Copyright 2019, Oracle Corporation and/or its affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
1+
# Copyright 2019, Oracle and/or its affiliates.
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
import json
55
from http.server import BaseHTTPRequestHandler

samples/kubernetes/end2end/webhook/server.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Copyright 2017, 2019, Oracle Corporation and/or its affiliates. All rights reserved.
2-
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
1+
# Copyright 2017, 2019, Oracle and/or its affiliates.
2+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
apiVersion: apps/v1
55
kind: Deployment

src/main/notices/META-INF/COPYRIGHT

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Copyright (c) 2017, 2019, Oracle Corporation and/or its affiliates. All rights reserved.
2-
Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
1+
Copyright (c) 2017, 2020, Oracle and/or its affiliates.
2+
Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
Permission is hereby granted, free of charge, to any person obtaining
55
a copy of this software and associated documentation files (the

src/main/notices/META-INF/LICENSE

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Copyright (c) 2017, 2019, Oracle Corporation and/or its affiliates. All rights reserved.
2-
Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
1+
Copyright (c) 2017, 2019, Oracle and/or its affiliates.
2+
Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
Subject to the condition set forth below, permission is hereby granted to any person obtaining
55
a copy of this software, associated documentation and/or data (collectively the "Software"),

0 commit comments

Comments
 (0)