Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
33 changes: 33 additions & 0 deletions .harness/newPipeline.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
pipeline:
name: newPipeline
identifier: newPipeline
projectIdentifier: Test
orgIdentifier: default
tags: {}
stages:
- stage:
name: Build
identifier: Build
description: ""
type: CI
spec:
cloneCodebase: false
infrastructure:
type: KubernetesDirect
spec:
connectorRef: ShobhitK8
namespace: harness-delegate-ng
automountServiceAccountToken: true
nodeSelector: {}
os: Linux
execution:
steps:
- step:
type: Run
name: Run_1
identifier: Run_1
spec:
connectorRef: account.harnessImage
image: alpine
shell: Sh
command: echo hello
33 changes: 33 additions & 0 deletions .harness/newRemote.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
pipeline:
name: newRemote
identifier: newRemote
projectIdentifier: Test
orgIdentifier: default
tags: {}
stages:
- stage:
name: build
identifier: build
description: ""
type: CI
spec:
cloneCodebase: false
infrastructure:
type: KubernetesDirect
spec:
connectorRef: ShobhitK8
namespace: harness-delegate-ng
automountServiceAccountToken: true
nodeSelector: {}
os: Linux
execution:
steps:
- step:
type: Run
name: Run_1
identifier: Run_1
spec:
connectorRef: account.harnessImage
image: alpine
shell: Sh
command: echo hello
33 changes: 33 additions & 0 deletions .harness/remotePipeline.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
pipeline:
name: remotePipeline
identifier: remotePipeline
projectIdentifier: Test
orgIdentifier: default
tags: {}
stages:
- stage:
name: build
identifier: build
description: ""
type: CI
spec:
cloneCodebase: false
infrastructure:
type: KubernetesDirect
spec:
connectorRef: ShobhitK8
namespace: harness-ng-delegate
automountServiceAccountToken: true
nodeSelector: {}
os: Linux
execution:
steps:
- step:
type: Run
name: Run_1
identifier: Run_1
spec:
connectorRef: account.harnessImage
image: alpine
shell: Sh
command: echo hello
3 changes: 3 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions .idea/codeStyles/codeStyleConfig.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@
* that can be found in the licenses directory at the root of this repository, also available at
* https://polyformproject.org/wp-content/uploads/2020/06/PolyForm-Shield-1.0.0.txt.
*/

package software.wings.beans;

import static io.harness.annotations.dev.HarnessTeam.CDP;

import io.harness.annotations.dev.OwnedBy;
Expand All @@ -26,6 +24,7 @@ public abstract class InfraMappingYaml extends BaseEntityYaml {
private String serviceName;
private String infraMappingType;
private String deploymentType;
//private Map<String, Object> blueprints;
private Map<String, Object> blueprints;

public InfraMappingYaml(String type, String harnessApiVersion, String serviceName, String infraMappingType,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ public enum FileBucket {
* Instantiates a new file bucket.
*/
FileBucket() {
//this(1000 * 1000);
this(1000 * 1000);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

import java.util.List;
import lombok.AllArgsConstructor;
// import lombok.Getter;
import lombok.Getter;

@Getter
Expand Down