diff --git a/.gitignore b/.gitignore index 8274ecc..21a16ef 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,7 @@ *.dll *.so *.dylib +.bin/ bin .bin diff --git a/Makefile b/Makefile index f1cd855..2cb4f96 100644 --- a/Makefile +++ b/Makefile @@ -89,7 +89,8 @@ manifests: controller-gen $(CONTROLLER_GEN) $(CRD_OPTIONS) rbac:roleName=manager-role webhook paths="./..." output:crd:artifacts:config=config/crd/bases # Format the source code -format: node_modules +format: .bin/ory node_modules + .bin/ory dev headers license go fmt ./... npm exec -- prettier --write . @@ -136,6 +137,10 @@ kubebuilder: mv /tmp/kubebuilder_2.3.2_${OS}_${ARCH} ${PWD}/.bin/kubebuilder export PATH=${PATH}:${PWD}/.bin/kubebuilder/bin +.bin/ory: Makefile + curl https://raw.githubusercontent.com/ory/meta/master/install.sh | bash -s -- -b .bin ory v0.1.47 + touch .bin/ory + licenses: .bin/licenses node_modules # checks open-source licenses .bin/licenses diff --git a/api/v1alpha1/groupversion_info.go b/api/v1alpha1/groupversion_info.go index 4765360..f490e6f 100644 --- a/api/v1alpha1/groupversion_info.go +++ b/api/v1alpha1/groupversion_info.go @@ -1,17 +1,5 @@ -/* - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ +// Copyright © 2022 Ory Corp +// SPDX-License-Identifier: Apache-2.0 // Package v1alpha1 contains API Schema definitions for the hydra v1alpha1 API group // +kubebuilder:object:generate=true diff --git a/api/v1alpha1/oauth2client_types.go b/api/v1alpha1/oauth2client_types.go index 8832620..7d0b32f 100644 --- a/api/v1alpha1/oauth2client_types.go +++ b/api/v1alpha1/oauth2client_types.go @@ -1,17 +1,5 @@ -/* - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ +// Copyright © 2022 Ory Corp +// SPDX-License-Identifier: Apache-2.0 package v1alpha1 diff --git a/api/v1alpha1/oauth2client_types_test.go b/api/v1alpha1/oauth2client_types_test.go index dd827b7..c92767b 100644 --- a/api/v1alpha1/oauth2client_types_test.go +++ b/api/v1alpha1/oauth2client_types_test.go @@ -1,17 +1,5 @@ -/* - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ +// Copyright © 2022 Ory Corp +// SPDX-License-Identifier: Apache-2.0 package v1alpha1 diff --git a/api/v1alpha1/zz_generated.deepcopy.go b/api/v1alpha1/zz_generated.deepcopy.go index 5cbc090..7faa0a2 100644 --- a/api/v1alpha1/zz_generated.deepcopy.go +++ b/api/v1alpha1/zz_generated.deepcopy.go @@ -1,21 +1,9 @@ +// Copyright © 2022 Ory Corp +// SPDX-License-Identifier: Apache-2.0 + //go:build !ignore_autogenerated // +build !ignore_autogenerated -/* - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - // Code generated by controller-gen. DO NOT EDIT. package v1alpha1 diff --git a/controllers/mocks/hydra/Client.go b/controllers/mocks/hydra/Client.go index bb17b9c..3ad4f8c 100644 --- a/controllers/mocks/hydra/Client.go +++ b/controllers/mocks/hydra/Client.go @@ -1,3 +1,6 @@ +// Copyright © 2022 Ory Corp +// SPDX-License-Identifier: Apache-2.0 + // Code generated by mockery v1.0.0. DO NOT EDIT. package mocks diff --git a/controllers/oauth2client_controller.go b/controllers/oauth2client_controller.go index a839d39..6cde740 100644 --- a/controllers/oauth2client_controller.go +++ b/controllers/oauth2client_controller.go @@ -1,17 +1,5 @@ -/* - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ +// Copyright © 2022 Ory Corp +// SPDX-License-Identifier: Apache-2.0 package controllers diff --git a/controllers/oauth2client_controller_integration_test.go b/controllers/oauth2client_controller_integration_test.go index 64c77cc..3bacb1d 100644 --- a/controllers/oauth2client_controller_integration_test.go +++ b/controllers/oauth2client_controller_integration_test.go @@ -1,3 +1,6 @@ +// Copyright © 2022 Ory Corp +// SPDX-License-Identifier: Apache-2.0 + package controllers_test import ( diff --git a/controllers/suite_test.go b/controllers/suite_test.go index 4623e6d..aa50f1f 100644 --- a/controllers/suite_test.go +++ b/controllers/suite_test.go @@ -1,17 +1,5 @@ -/* - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ +// Copyright © 2022 Ory Corp +// SPDX-License-Identifier: Apache-2.0 package controllers_test diff --git a/helpers/http_client.go b/helpers/http_client.go index a0bb023..cc1ac72 100644 --- a/helpers/http_client.go +++ b/helpers/http_client.go @@ -1,3 +1,6 @@ +// Copyright © 2022 Ory Corp +// SPDX-License-Identifier: Apache-2.0 + package helpers import ( diff --git a/helpers/http_client_test.go b/helpers/http_client_test.go index 3a65d50..b4e06bf 100644 --- a/helpers/http_client_test.go +++ b/helpers/http_client_test.go @@ -1,3 +1,6 @@ +// Copyright © 2022 Ory Corp +// SPDX-License-Identifier: Apache-2.0 + package helpers_test import ( diff --git a/hydra/client.go b/hydra/client.go index 2bae5ab..8ef684e 100644 --- a/hydra/client.go +++ b/hydra/client.go @@ -1,3 +1,6 @@ +// Copyright © 2022 Ory Corp +// SPDX-License-Identifier: Apache-2.0 + package hydra import ( diff --git a/hydra/client_test.go b/hydra/client_test.go index f33bd2e..ae66050 100644 --- a/hydra/client_test.go +++ b/hydra/client_test.go @@ -1,3 +1,6 @@ +// Copyright © 2022 Ory Corp +// SPDX-License-Identifier: Apache-2.0 + package hydra_test import ( diff --git a/hydra/types.go b/hydra/types.go index b71c4dc..6813905 100644 --- a/hydra/types.go +++ b/hydra/types.go @@ -1,3 +1,6 @@ +// Copyright © 2022 Ory Corp +// SPDX-License-Identifier: Apache-2.0 + package hydra import ( diff --git a/main.go b/main.go index e11ca65..cffd5ac 100644 --- a/main.go +++ b/main.go @@ -1,17 +1,5 @@ -/* - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ +// Copyright © 2022 Ory Corp +// SPDX-License-Identifier: Apache-2.0 package main