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

[Merged by Bors] - feat: Support podOverrides #256

Closed
wants to merge 19 commits into from
Closed

Conversation

razvan
Copy link
Member

@razvan razvan commented Jul 4, 2023

Description

Blocked by: stackabletech/operator-rs#616

Part of stackabletech/issues#346

Definition of Done Checklist

  • Not all of these items are applicable to all PRs, the author should update this template to only leave the boxes in that are relevant
  • Please make sure all these things are done and tick the boxes

Author

Reviewer

Acceptance

Once the review is done, comment bors r+ (or bors merge) to merge. Further information

rust/crd/src/lib.rs Outdated Show resolved Hide resolved
rust/crd/src/lib.rs Outdated Show resolved Hide resolved
@razvan
Copy link
Member Author

razvan commented Jul 4, 2023

--- FAIL: kuttl (1525.90s)
    --- FAIL: kuttl/harness (0.00s)
        --- PASS: kuttl/harness/spark-examples_openshift-true_spark-3.4.0-stackable0.0.0-dev (84.41s)
        --- PASS: kuttl/harness/spark-ny-public-s3_openshift-true_spark-3.4.0-stackable0.0.0-dev_s3-use-tls-true (184.67s)
        --- PASS: kuttl/harness/pyspark-ny-public-s3-image_openshift-true_spark-3.4.0-stackable0.0.0-dev_ny-tlc-report-0.1.0 (157.66s)
        --- PASS: kuttl/harness/spark-pi-private-s3_openshift-true_spark-3.4.0-stackable0.0.0-dev (115.93s)
        --- PASS: kuttl/harness/spark-pi-public-s3_openshift-true_spark-3.4.0-stackable0.0.0-dev (109.19s)
        --- PASS: kuttl/harness/smoke_openshift-true_spark-3.4.0-stackable0.0.0-dev_s3-use-tls-true (198.39s)
        --- FAIL: kuttl/harness/resources_openshift-true_spark-3.4.0-stackable0.0.0-dev (253.58s)
        --- PASS: kuttl/harness/logging_openshift-true_spark-3.4.0-stackable0.0.0-dev_ny-tlc-report-0.1.0 (433.86s)
        --- FAIL: kuttl/harness/pod_overrides_openshift-true_spark-3.4.0-stackable0.0.0-dev (999.59s)
        --- PASS: kuttl/harness/spark-history-server_openshift-true_spark-3.4.0-stackable0.0.0-dev_s3-use-tls-true (297.28s)
        --- PASS: kuttl/harness/pyspark-ny-public-s3_openshift-true_spark-3.4.0-stackable0.0.0-dev (163.10s)
FAIL

@razvan razvan marked this pull request as ready for review July 5, 2023 12:14
@razvan
Copy link
Member Author

razvan commented Jul 5, 2023

--- PASS: kuttl (1083.06s)
    --- PASS: kuttl/harness (0.00s)
        --- PASS: kuttl/harness/resources_openshift-true_spark-3.4.0-stackable0.0.0-dev (86.05s)
        --- PASS: kuttl/harness/smoke_openshift-true_spark-3.4.0-stackable0.0.0-dev_s3-use-tls-true (216.79s)
        --- PASS: kuttl/harness/pyspark-ny-public-s3_openshift-true_spark-3.4.0-stackable0.0.0-dev (167.66s)
        --- PASS: kuttl/harness/pod_overrides_openshift-true_spark-3.4.0-stackable0.0.0-dev (187.23s)
        --- PASS: kuttl/harness/spark-pi-private-s3_openshift-true_spark-3.4.0-stackable0.0.0-dev (117.71s)
        --- PASS: kuttl/harness/spark-history-server_openshift-true_spark-3.4.0-stackable0.0.0-dev_s3-use-tls-true (306.04s)
        --- PASS: kuttl/harness/spark-examples_openshift-true_spark-3.4.0-stackable0.0.0-dev (84.41s)
        --- PASS: kuttl/harness/spark-pi-public-s3_openshift-true_spark-3.4.0-stackable0.0.0-dev (109.89s)
        --- PASS: kuttl/harness/pyspark-ny-public-s3-image_openshift-true_spark-3.4.0-stackable0.0.0-dev_ny-tlc-report-0.1.0 (148.79s)
        --- PASS: kuttl/harness/spark-ny-public-s3_openshift-true_spark-3.4.0-stackable0.0.0-dev_s3-use-tls-true (184.84s)
        --- PASS: kuttl/harness/logging_openshift-true_spark-3.4.0-stackable0.0.0-dev_ny-tlc-report-0.1.0 (464.95s)
PASS

bors bot pushed a commit to stackabletech/operator-rs that referenced this pull request Jul 6, 2023
Required for: stackabletech/spark-k8s-operator#256

- Make pub_overrides_schema public.
- Make PodTemplateSpec implement Atomic.
- Update CHANGELOG.md


Co-authored-by: Sebastian Bernauer <[email protected]>
Comment on lines 8 to 10
{% if lookup('env', 'VECTOR_AGGREGATOR') %}
vectorAggregatorConfigMapName: vector-aggregator-discovery
{% endif %}
Copy link
Member

Choose a reason for hiding this comment

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

Why did you remove logging to vector? (we try to log to log.t2.stackable.tech vector for all testcases to better debug tests)

Copy link
Member Author

Choose a reason for hiding this comment

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

Ah, I haven't thought of that. I wanted to have cleaner tests.

Copy link
Member

Choose a reason for hiding this comment

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

I would prefer to keep logging to e.g. collect the exceptions that occurred when the test failed

--- PASS: kuttl (102.96s)
    --- PASS: kuttl/harness (0.00s)
        --- PASS: kuttl/harness/resources_openshift-true_spark-3.4.0-stackable0.0.0-dev (90.95s)
PASS
Comment on lines 8 to 10
{% if lookup('env', 'VECTOR_AGGREGATOR') %}
vectorAggregatorConfigMapName: vector-aggregator-discovery
{% endif %}
Copy link
Member

Choose a reason for hiding this comment

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

I would prefer to keep logging to e.g. collect the exceptions that occurred when the test failed

@razvan razvan requested a review from sbernauer July 7, 2023 07:09
@razvan razvan requested a review from sbernauer July 7, 2023 07:41
@razvan razvan requested a review from sbernauer July 7, 2023 08:14
Copy link
Member

@sbernauer sbernauer left a comment

Choose a reason for hiding this comment

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

LGTM when custom test pass

@razvan
Copy link
Member Author

razvan commented Jul 7, 2023

@razvan
Copy link
Member Author

razvan commented Jul 7, 2023

bors merge

bors bot pushed a commit that referenced this pull request Jul 7, 2023
# Description

Blocked by: stackabletech/operator-rs#616

Part of stackabletech/issues#346



Co-authored-by: Sebastian Bernauer <[email protected]>
@bors
Copy link

bors bot commented Jul 7, 2023

Pull request successfully merged into main.

Build succeeded!

The publicly hosted instance of bors-ng is deprecated and will go away soon.

If you want to self-host your own instance, instructions are here.
For more help, visit the forum.

If you want to switch to GitHub's built-in merge queue, visit their help page.

@bors bors bot changed the title feat: Support podOverrides [Merged by Bors] - feat: Support podOverrides Jul 7, 2023
@bors bors bot closed this Jul 7, 2023
@bors bors bot deleted the feat/pod-overrides branch July 7, 2023 13:02
bors bot pushed a commit that referenced this pull request Jul 18, 2023
sbernauer added a commit that referenced this pull request Jul 18, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.

3 participants