Skip to content

Commit

Permalink
fix broken release
Browse files Browse the repository at this point in the history
  • Loading branch information
Clivern committed Apr 3, 2021
1 parent fbfb7af commit a6783ff
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
5 changes: 2 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM golang:1.16.3

ARG BEETLE_VERSION=1.0.1
ARG BEETLE_VERSION=1.0.2

ENV GO111MODULE=on

Expand All @@ -11,10 +11,9 @@ RUN apt-get update

WORKDIR /app

RUN curl -sL https://github.com/Clivern/Beetle/releases/download/v${BEETLE_VERSION}/Beetle_${BEETLE_VERSION}_Linux_x86_64.tar.gz | tar xz
RUN curl -sL https://github.com/Clivern/Beetle/releases/download/v${BEETLE_VERSION}/beetle_${BEETLE_VERSION}_Linux_x86_64.tar.gz | tar xz
RUN rm LICENSE
RUN rm README.md
RUN mv Beetle beetle

COPY ./config.dist.yml /app/configs/

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
<p align="center">
<img src="https://raw.githubusercontent.com/clivern/Beetle/main/assets/img/gopher.png?v=1.0.1" width="180" />
<img src="https://raw.githubusercontent.com/clivern/Beetle/main/assets/img/gopher.png?v=1.0.2" width="180" />
<h3 align="center">Beetle</h3>
<p align="center">Kubernetes multi-cluster deployment automation service</p>
<p align="center">
<a href="https://github.com/Clivern/Beetle/actions"><img src="https://github.com/Clivern/Beetle/workflows/Build/badge.svg"></a>
<a href="https://github.com/Clivern/Beetle/actions"><img src="https://github.com/Clivern/Beetle/workflows/Release/badge.svg"></a>
<a href="https://github.com/Clivern/Beetle/releases"><img src="https://img.shields.io/badge/Version-v1.0.1-red.svg"></a>
<a href="https://goreportcard.com/report/github.com/Clivern/Beetle"><img src="https://goreportcard.com/badge/github.com/clivern/Beetle?v=1.0.1"></a>
<a href="https://github.com/Clivern/Beetle/releases"><img src="https://img.shields.io/badge/Version-v1.0.2-red.svg"></a>
<a href="https://goreportcard.com/report/github.com/Clivern/Beetle"><img src="https://goreportcard.com/badge/github.com/clivern/Beetle?v=1.0.2"></a>
<a href="https://hub.docker.com/r/clivern/beetle"><img src="https://img.shields.io/badge/Docker-Latest-orange"></a>
<a href="https://github.com/Clivern/Beetle/blob/main/LICENSE"><img src="https://img.shields.io/badge/LICENSE-MIT-orange.svg"></a>
</p>
</p>
<br/>
<p align="center">
<img src="https://raw.githubusercontent.com/Clivern/Beetle/main/assets/img/chart.png?v=1.0.1" width="100%" />
<img src="https://raw.githubusercontent.com/Clivern/Beetle/main/assets/img/chart.png?v=1.0.2" width="100%" />
</p>

<h4 align="center">
Expand Down
2 changes: 1 addition & 1 deletion deployment/k8s/incluster/beetle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ spec:
serviceAccountName: beetle-service-account
containers:
-
image: "clivern/beetle:1.0.1"
image: "clivern/beetle:1.0.2"
name: beetle-app
volumeMounts:
-
Expand Down
2 changes: 1 addition & 1 deletion swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ swagger: '2.0'
info:
description: |
Application deployment and management should be automated, auditable, and easy to understand and that\'s what beetle tries to achieve in a simple manner. Beetle automates the deployment and rollback of your applications in a multi-cluster, multi-namespaces kubernetes environments. Easy to integrate with through API endpoints & webhooks to fit a variety of workflows.
version: 1.0.1
version: 1.0.2
title: Beetle
contact:
email: [email protected]
Expand Down

2 comments on commit a6783ff

@Clivern
Copy link
Owner Author

@Clivern Clivern commented on a6783ff Apr 3, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Warnings

serviceaccount/beetle-service-account created
Warning: rbac.authorization.k8s.io/v1beta1 ClusterRole is deprecated in v1.17+, unavailable in v1.22+; use rbac.authorization.k8s.io/v1 ClusterRole
clusterrole.rbac.authorization.k8s.io/beetle-service-account created
Warning: rbac.authorization.k8s.io/v1beta1 ClusterRoleBinding is deprecated in v1.17+, unavailable in v1.22+; use rbac.authorization.k8s.io/v1 ClusterRoleBinding
clusterrolebinding.rbac.authorization.k8s.io/beetle-service-account created
configmap/incluster-beetle-configs created
deployment.apps/beetle-deployment created
service/beetle-svc created
ingress.networking.k8s.io/beetle-ing created

@Clivern
Copy link
Owner Author

@Clivern Clivern commented on a6783ff Apr 3, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

$ ./beetle get apps --api_url "http://example.com/beetle" --api_key "1234" --cluster "production" --namespace "default"

$ ./beetle deploy --api_url "http://example.com/beetle" --api_key "1234" --cluster "production" --namespace "default" -a "toad" -s "recreate" -v "0.2.4" -w

Please sign in to comment.