2021-04-08 09:32:31 +02:00
|
|
|
# Copyright Project Harbor Authors
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
|
|
|
|
*** Settings ***
|
|
|
|
Documentation This resource provides helper functions for docker operations
|
|
|
|
Library OperatingSystem
|
|
|
|
Library Process
|
|
|
|
|
|
|
|
*** Keywords ***
|
2023-05-29 05:55:14 +02:00
|
|
|
Helm Registry Login
|
2021-10-26 11:27:45 +02:00
|
|
|
[Arguments] ${ip} ${user} ${password}
|
2023-05-29 05:55:14 +02:00
|
|
|
Wait Unitl Command Success helm registry login ${ip} -u ${user} -p ${password} --insecure
|
2021-10-26 11:27:45 +02:00
|
|
|
|
2023-05-29 05:55:14 +02:00
|
|
|
Helm Package
|
2021-10-26 11:27:45 +02:00
|
|
|
[Arguments] ${file_path}
|
2023-05-29 05:55:14 +02:00
|
|
|
Wait Unitl Command Success helm package ${file_path}
|
2021-10-26 11:27:45 +02:00
|
|
|
|
2023-05-29 05:55:14 +02:00
|
|
|
Helm Push
|
2021-10-26 11:27:45 +02:00
|
|
|
[Arguments] ${file_path} ${ip} ${repo_name}
|
2023-05-29 05:55:14 +02:00
|
|
|
Wait Unitl Command Success helm push ${file_path} oci://${ip}/${repo_name} --insecure-skip-tls-verify
|
2021-10-26 11:27:45 +02:00
|
|
|
|
2023-05-29 05:55:14 +02:00
|
|
|
Helm Pull
|
2021-10-26 11:27:45 +02:00
|
|
|
[Arguments] ${ip} ${repo_name} ${version}
|
2023-05-29 05:55:14 +02:00
|
|
|
Wait Unitl Command Success helm pull oci://${ip}/${repo_name}/harbor --version ${version} --insecure-skip-tls-verify
|
2021-10-26 11:27:45 +02:00
|
|
|
|
2023-05-29 05:55:14 +02:00
|
|
|
Helm Registry Logout
|
2021-10-26 11:27:45 +02:00
|
|
|
[Arguments] ${ip}
|
2023-05-29 05:55:14 +02:00
|
|
|
Wait Unitl Command Success helm registry logout ${ip}
|