-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure-gitea.yml
225 lines (205 loc) · 7.16 KB
/
configure-gitea.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
- name: Deploy Gitea
hosts: localhost
become: true
vars:
gitea_user: svc-gitea
gitea_admin: admin
gitea_password: genreated
endpoint: 127.0.0.1
tasks:
- name: Enable linger
command: loginctl enable-linger "{{ gitea_user }}"
changed_when: false
- name: Create Gitea data directory
file:
path: "/home/{{ gitea_user }}/gitea"
state: directory
owner: "{{ gitea_user }}"
group: "{{ gitea_user }}"
mode: '0755'
become: false
- name: Setting permissions on data folder
ansible.builtin.command: setfacl -m u:26:-wx /home/{{ gitea_user }}/gitea
- name: Start Gitea
containers.podman.podman_container:
name: gitea
image: gitea/gitea:1.16.9
volume:
- "/home/{{ gitea_user }}/gitea:/data:Z"
ports:
- "3000:3000"
- "10022:22"
env:
APP_NAME: "Openshift Virtualization Gitea"
GITEA__DEFAULT__RUN_MODE: prod
GITEA__server__DOMAIN: "{{ endpoint}}"
GITEA__server__SSH_DOMAIN: "{{ endpoint}}"
GITEA__server__ROOT_URL: "http://{{ endpoint}}:3000"
GITEA__server__OFFLINE_MODE: true
GITEA__database__PATH: /data/gitea/gitea.db
GITEA__database__DB_TYPE: sqlite3
GITEA__picture__DISABLE_GRAVATAR: true
GITEA__service__DISABLE_REGISTRATION: true
GITEA__service__REQUIRE_SIGNIN_VIEW: true
GITEA__security__INSTALL_LOCK: true
become: false
- name: Create Gitea admin user
command: "podman exec -u git gitea /usr/local/bin/gitea admin user create --admin --username {{ gitea_admin }} --password {{ gitea_password }} --email root@localhost"
register: create_user
changed_when:
- create_user.rc != 1
- '"already exists" not in create_user.stdout'
failed_when:
- create_user.rc != 0
- '"already exists" not in create_user.stdout'
become: false
- name: Creating a file with content
copy:
dest: "/tmp/file.json"
content: |
{"name":"test"}
- name: Pause for 60 seconds for Gitea to be ready
ansible.builtin.pause:
seconds: 60
- name: Get API Key
uri:
headers:
Content-Type: application/json
user: "{{ gitea_user }}"
password: "{{ gitea_password }}"
method: POST
force_basic_auth: true
url: "http://{{ endpoint}}:3000/api/v1/users/svc-gitea/tokens"
return_content: yes
body_format: json
status_code: 201
src: /tmp/file.json
register: gitea_api_key
- name: Debug API Key
ansible.builtin.debug:
msg: "{{ gitea_api_key |community.general.json_query('*.sha1') }}"
- name: Set the API Key fact
ansible.builtin.set_fact:
api_key: "{{ gitea_api_key |community.general.json_query('*.sha1') }}"
- name: Get API Key
ansible.builtin.debug:
var: api_key
- name: Creating empty repo
copy:
dest: "/tmp/file-repo.json"
content: |
{"name": "openshift-virtualization-gitops"}
- name: Empty Repository
uri:
headers:
Content-Type: application/json
Authorization: "Bearer {{ api_key }}"
user: "{{ gitea_user }}"
password: "{{ gitea_password }}"
method: POST
force_basic_auth: true
url: "http://{{ endpoint}}:3000/api/v1/user/repos"
return_content: yes
body_format: json
status_code: 201
src: /tmp/file-repo.json
register: gitea_api_key
- name: Migrate Repository
copy:
dest: "/tmp/file-repo-migration.json"
content: |
{
"clone_addr": "https://github.com/Red-Hat-SE-RTO/gitops-catalog",
"repo_name": "gitops-catalog",
"auth_password": "",
"auth_username": "",
"html_url": "http://{{ endpoint}}:3000",
"clone_url": "http://{{ endpoint}}:3000/svc-gitea/gitops-catalog.git",
"mirror": False,
"private": False,
"repo_owner": "svc-gitea",
"service": "git",
"uid": 0,
"wiki": True
}
- name: Migrate Red Hat GitOps Repository
uri:
headers:
Content-Type: application/json
Authorization: "Bearer {{ api_key }}"
user: "{{ gitea_user }}"
password: "{{ gitea_password }}"
method: POST
force_basic_auth: true
url: "http://{{ endpoint}}:3000/api/v1/repos/migrate"
return_content: yes
body_format: json
status_code: 201
src: /tmp/file-repo-migration.json
register: gitea_api_key
- name: Migrate Repository OpenShift Post Installation with Red Hat Advanced Cluster Management for Kubernetes
copy:
dest: "/tmp/rhacm-configuration.json"
content: |
{
"clone_addr": "https://github.com/Red-Hat-SE-RTO/rhacm-configuration",
"repo_name": "rhacm-configuration",
"auth_password": "",
"auth_username": "",
"html_url": "http://{{ endpoint}}:3000",
"clone_url": "http://{{ endpoint}}:3000/svc-gitea/rhacm-configuration.git",
"mirror": False,
"private": False,
"repo_owner": "svc-gitea",
"service": "git",
"uid": 0,
"wiki": True
}
- name: Migrate OpenShift Post Installation with Red Hat Advanced Cluster Management for Kubernetes
uri:
headers:
Content-Type: application/json
Authorization: "Bearer {{ api_key }}"
user: "{{ gitea_user }}"
password: "{{ gitea_password }}"
method: POST
force_basic_auth: true
url: "http://{{ endpoint}}:3000/api/v1/repos/migrate"
return_content: yes
body_format: json
status_code: 201
src: /tmp/rhacm-configuration.json
register: gitea_api_key
- name: Migrate Repository OpenShift Post Installation with Red Hat Advanced Cluster Management for Kubernetes
copy:
dest: "/tmp/applications.json"
content: |
{
"clone_addr": "https://github.com/Red-Hat-SE-RTO/applications",
"repo_name": "applications",
"auth_password": "",
"auth_username": "",
"html_url": "http://{{ endpoint}}:3000",
"clone_url": "http://{{ endpoint}}:3000/svc-gitea/applications.git",
"mirror": False,
"private": False,
"repo_owner": "svc-gitea",
"service": "git",
"uid": 0,
"wiki": True
}
- name: Migrate OpenShift Post Installation with Red Hat Advanced Cluster Management for Kubernetes
uri:
headers:
Content-Type: application/json
Authorization: "Bearer {{ api_key }}"
user: "{{ gitea_user }}"
password: "{{ gitea_password }}"
method: POST
force_basic_auth: true
url: "http://{{ endpoint}}:3000/api/v1/repos/migrate"
return_content: yes
body_format: json
status_code: 201
src: /tmp/applications.json
register: gitea_api_key