Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Setting up a development environment in a Dev Container #4

Closed
wants to merge 21 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
14bca05
Fix CA generation as non-root user due to .rnd error
dupondje Mar 5, 2024
188290f
Change save/restore nvram data logic
antonios-f Sep 11, 2023
616b8d9
Update SaveVmExternalDataCommand.java
antonios-f Mar 26, 2024
f2a4e18
Added a warning window about clearing NVRAM when changing Bios type a…
B4N4N41C Dec 27, 2023
046bcb6
Rewrite code to correspond with general oVirt style
Feb 9, 2024
c80dbdd
Simplification of conditions
Mar 26, 2024
e66373a
Fix checkstyle violations in VmListModel.java
antonios-f Mar 26, 2024
943a244
Fix comparision in VmListModel.java
antonios-f Mar 26, 2024
7238a37
db: cleanup: Remove crumbs after materialized views deletion
0ffer Apr 12, 2024
0d006fa
Handle situation when empty groups not come from the keycloak (and he…
0ffer Apr 11, 2024
b94007b
engine: add scope 'openid' for compatibility with new versions of the…
0ffer Mar 11, 2024
8b75156
packaging: fix error when enabling KeyCloak
dupondje May 3, 2024
0a1ba82
During VM import from SD, exclude shared disk when iterating over dis…
shubhaOracle Dec 13, 2023
ed023e5
Create VmBackup earlier in HybridBackupCommand
dupondje Apr 19, 2024
80d6b0f
automation: drop el8 after centos stream 8 eol
sandrobonazzola Jun 3, 2024
40a9a01
engine: Fix duplicate VM backup entry error when creating incremental…
BrooklynDewolf Jun 6, 2024
90e688b
Add support for DC/cluster level 4.8
BrooklynDewolf Apr 30, 2024
142d791
Added discard-no-unref support to CL 4.8
BrooklynDewolf Apr 30, 2024
a48bad9
Bump machine type for cluster level 4.8
BrooklynDewolf May 16, 2024
1043c13
engine: Check concrete disk permissions firstly on TransferImageStatu…
0ffer May 23, 2024
32a916f
Included all the essential files to setup a Dev Container with Docker…
BrooklynDewolf Feb 22, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .automation/init-db.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/bash
set -e

# Execute SQL commands
psql -v ON_ERROR_STOP=1 --username "postgres" <<-EOSQL
CREATE USER ovirt PASSWORD 'ovirt';
DROP DATABASE IF EXISTS engine;
CREATE DATABASE engine OWNER ovirt TEMPLATE template0 ENCODING 'UTF8' lc_collate 'en_US.UTF-8' lc_ctype 'en_US.UTF-8';
EOSQL

psql -v ON_ERROR_STOP=1 --username "postgres" -d engine <<-EOSQL
CREATE EXTENSION "uuid-ossp";
EOSQL

echo "oVirt PostgreSQL database has been setup!"
Loading