Compare commits

..

No commits in common. 'main' and 'issues/1' have entirely different histories.

@ -1,25 +0,0 @@
kind: pipeline
type: kubernetes
name: default
steps:
- name: standard-version
image: node:19
environment:
GIT_USERNAME:
from_secret: git_username
GIT_TOKEN:
from_secret: git_token
commands:
- git config --global user.email "moravrav@gmail.com"
- git config --global user.name "RaviAnand Mohabir"
- git config --global url."https://$GIT_USERNAME:$GIT_TOKEN@gitea.ravianand.me/".insteadOf "https://gitea.ravianand.me/"
- npm i -g standard-version
- 'standard-version --releaseCommitMessageFormat "chore(release): {{currentTag}} [CI SKIP]"'
- git push --follow-tags origin main
trigger:
branch:
- main
event:
- push

@ -0,0 +1,12 @@
pipeline:
conventional_commits:
image: node:18
commands:
- git config --global user.email "moravrav@gmail.com"
- git config --global user.name "RaviAnand Mohabir"
- git config --global url."https://$GIT_USERNAME:$GIT_TOKEN@gitea.ravianand.me/".insteadOf "https://gitea.ravianand.me/"
- npm i -g standard-version
- standard-version
- git push origin $(git tag | tail -1)
branches: main

@ -2,20 +2,30 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
## 1.1.0 (2023-01-27) ## 1.1.0 (2023-01-23)
### Features ### Features
* :sparkles: add orgs as variable ([0956812](https://gitea.ravianand.me/Dan6erbond/terraform-kubernetes-woodpecker/commit/0956812ebdeeffe56745379e1de3d6a2c5f66325))
* :sparkles: implement Woodpecker Terraform module ([bea1561](https://gitea.ravianand.me/Dan6erbond/terraform-kubernetes-woodpecker/commit/bea1561c7adbbd66c0df56a9088c7b3c067110e2)) * :sparkles: implement Woodpecker Terraform module ([bea1561](https://gitea.ravianand.me/Dan6erbond/terraform-kubernetes-woodpecker/commit/bea1561c7adbbd66c0df56a9088c7b3c067110e2))
## [1.1.0](https://gitea.ravianand.me/Dan6erbond/terraform-kubernetes-woodpecker/compare/v1.0.0...v1.1.0) (2023-01-23) ## 1.1.0 (2023-01-23)
### Features ### Features
* :sparkles: add orgs as variable ([0956812](https://gitea.ravianand.me/Dan6erbond/terraform-kubernetes-woodpecker/commit/0956812ebdeeffe56745379e1de3d6a2c5f66325)) * :sparkles: implement Woodpecker Terraform module ([bea1561](https://gitea.ravianand.me/Dan6erbond/terraform-kubernetes-woodpecker/commit/bea1561c7adbbd66c0df56a9088c7b3c067110e2))
### [1.1.1](https://gitea.ravianand.me/Dan6erbond/terraform-kubernetes-woodpecker/compare/v1.1.0...v1.1.1) (2023-01-23)
## 1.1.0 (2023-01-23)
### Features
* :sparkles: implement Woodpecker Terraform module ([bea1561](https://gitea.ravianand.me/Dan6erbond/terraform-kubernetes-woodpecker/commit/bea1561c7adbbd66c0df56a9088c7b3c067110e2))
### [1.0.1](https://gitea.ravianand.me/Dan6erbond/terraform-kubernetes-woodpecker/compare/v1.0.0...v1.0.1) (2023-01-23)
## 1.0.0 (2023-01-23) ## 1.0.0 (2023-01-23)
@ -23,3 +33,7 @@ All notable changes to this project will be documented in this file. See [standa
### Features ### Features
* :sparkles: implement Woodpecker Terraform module ([bea1561](https://gitea.ravianand.me/Dan6erbond/terraform-kubernetes-woodpecker/commit/bea1561c7adbbd66c0df56a9088c7b3c067110e2)) * :sparkles: implement Woodpecker Terraform module ([bea1561](https://gitea.ravianand.me/Dan6erbond/terraform-kubernetes-woodpecker/commit/bea1561c7adbbd66c0df56a9088c7b3c067110e2))
# Changelog
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

@ -1,9 +1,21 @@
terraform { terraform {
required_providers { required_providers {
authentik = {
source = "goauthentik/authentik"
version = "2022.8.1"
}
kubernetes = { kubernetes = {
source = "hashicorp/kubernetes" source = "hashicorp/kubernetes"
version = "2.13.1" version = "2.13.1"
} }
postgresql = {
source = "cyrilgdn/postgresql"
version = "1.17.1"
}
minio = {
source = "aminueza/minio"
version = "1.10.0"
}
} }
} }
@ -273,7 +285,6 @@ resource "kubernetes_config_map" "woodpecker_server" {
WOODPECKER_ADMIN = var.woodpecker_admin WOODPECKER_ADMIN = var.woodpecker_admin
WOODPECKER_HOST = var.woodpecker_host WOODPECKER_HOST = var.woodpecker_host
WOODPECKER_OPEN = var.woodpecker_open WOODPECKER_OPEN = var.woodpecker_open
WOODPECKER_ORGS = var.woodpecker_orgs
WOODPECKER_GITEA = var.woodpecker_gitea WOODPECKER_GITEA = var.woodpecker_gitea
WOODPECKER_GITEA_URL = var.woodpecker_gitea_url WOODPECKER_GITEA_URL = var.woodpecker_gitea_url
WOODPECKER_GITEA_CLIENT = var.woodpecker_gitea_client WOODPECKER_GITEA_CLIENT = var.woodpecker_gitea_client

@ -74,12 +74,6 @@ variable "woodpecker_open" {
default = true default = true
} }
variable "woodpecker_orgs" {
description = "Comma-delimited list of organizations granted to use Woodpecker"
type = string
default = ""
}
variable "woodpecker_gitea" { variable "woodpecker_gitea" {
description = "Enable Woodpecker Gitea integration" description = "Enable Woodpecker Gitea integration"
type = bool type = bool

Loading…
Cancel
Save