blob: d9968a9b95a1c724a301c94aff9c89677969b9b6 [file] [log] [blame]
#!/bin/sh
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You 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.
location=$(dirname $0)
rootdir=$location/..
unset GOPATH
GO111MODULE=on
echo "Generating Go client code..."
go run k8s.io/code-generator/cmd/client-gen \
--input=camel/v1 \
--go-header-file=$rootdir/script/headers/default.txt \
--clientset-name "versioned" \
--input-base=github.com/apache/camel-k/pkg/apis \
--output-base=$rootdir \
--output-package=github.com/apache/camel-k/pkg/client/camel/clientset
go run k8s.io/code-generator/cmd/lister-gen \
--input-dirs=github.com/apache/camel-k/pkg/apis/camel/v1 \
--go-header-file=$rootdir/script/headers/default.txt \
--output-base=$rootdir \
--output-package=github.com/apache/camel-k/pkg/client/camel/listers
go run k8s.io/code-generator/cmd/informer-gen \
--versioned-clientset-package=github.com/apache/camel-k/pkg/client/camel/clientset/versioned \
--listers-package=github.com/apache/camel-k/pkg/client/camel/listers \
--input-dirs=github.com/apache/camel-k/pkg/apis/camel/v1 \
--go-header-file=$rootdir/script/headers/default.txt \
--output-base=$rootdir \
--output-package=github.com/apache/camel-k/pkg/client/camel/informers
# hack to fix non go-module compliance
cp -R $rootdir/github.com/apache/camel-k/pkg/ $rootdir
rm -rf $rootdir/github.com